This is the first officially created d33 Roguelike Half scenario. It is appropriate for a beginner level hero and followers, or 2 heroes.
- Game Master: Unneeded
- Player Ct: 1 - 2
- Play Time: 10 - 15 min
- For levels: 10 - 15
- For all ages
This is the first officially created d33 Roguelike Half scenario. It is appropriate for a beginner level hero and followers, or 2 heroes.
By: Sugimoto=Yohane
Editor: Shion Neko
| # # # # # # # # # # # # # # | |
| # | |
| # Shinobigami Dice Bot | |
| # | |
| # commands: !h[elp], !r[oll], !v[elocity] | |
| # | |
| # How to use: | |
| # 1. Login to Discord's developer home (https://discord.com/developers/applications) | |
| # 2. Select New Application and fill in your bot's name, description etc. as desired | |
| # 3. Copy the Public Key into "discord_bot_key.txt" in the same folder as this script |
| #!/opt/homebrew/bin/python3 | |
| # # # # # # # # # # # # # # | |
| # | |
| # Sword World 1.0/2.5 dice bot | |
| # | |
| # commands: !h[elp], !r[oll], !c[rit], !s[trike], !d[efense], !n[ew] | |
| # | |
| # How to use: | |
| # 1. Login to Discord's developer home (https://discord.com/developers/applications) | |
| # 2. Select New Application and fill in your bot's name, description etc. as desired |
For some reason, it is surprisingly hard to create a bootable Windows USB using macOS. These are my steps for doing so, which have worked for me in macOS Monterey (12.6.1) for Windows 10 and 11. After following these steps, you should have a bootable Windows USB drive.
You can download Windows 10 or Windows 11 directly from Microsoft.
After plugging the drive to your machine, identify the name of the USB device using diskutil list, which should return an output like the one below. In my case, the correct disk name is disk2.
| #!/bin/bash | |
| # This script is enabling (uncommenting) the Japanese locale and regenerates them | |
| sudo steamos-readonly disable | |
| sudo pacman-key --init | |
| sudo pacman-key --populate archlinux | |
| sudo pacman -S glibc | |
| sudo sed -i "s%#ja_JP.UTF-8 UTF-8%ja_JP.UTF-8 UTF-8%" /etc/locale.gen | |
| sudo locale-gen |
| // | |
| // @reference https://faithandbrave.hateblo.jp/entry/20100318/1268896477 | |
| // @memo | |
| // on CentOS: | |
| // yum install libicu libicu-devel | |
| // g++ -std=c++14 -o cvt convert.cpp `pkg-config --libs --cflags icu-uc icu-io` | |
| // | |
| #include <iostream> | |
| #include <vector> |
| #!/usr/bin/env lua | |
| --------------------------------------------------------------------------------------------------------------------------------------- | |
| -- Display list of globals used by your Lua script | |
| --------------------------------------------------------------------------------------------------------------------------------------- | |
| -- Version: 2019-03-28 | |
| -- License: MIT (see at the end of this file) | |
| -- | |
| -- Reads your Lua script from STDIN | |
| -- Writes list of globals to STDOUT (if the script is syntactically correct) | |
| -- Writes parsing error to STDERR (if the script is not syntactically correct) |