Adventurers and Adventures (a custom chat game!)
IAmRalseiCreated:
Are you ready to enter the middle ages in ADVENTURERS AND ADVENTURES (a custom chat game!)
Here's the code! put it in chatJS!
so that's it
Use /AANDARULES to learn how to play Adventurers and Adventures!
also if you don't read the story, the class list is /AANDACLASSES
edit:As you may have guessed, development has shut down for this awful idea of a game. Although the last update was nearly 2 years before, the game wasn't officially cancelled until December 23rd, 2019. This post remains as an archive of the final ever completed update (1.2.1) and the last ever released beta for 1.3, (not sure if it's the only ever released beta for 1.3 or not) Maniacally Laughing Squid
Code
Full Release (1.2.1)
//Adventurers and Adventures commands.push(new Command("AANDA", function () { sendMessage("Anyone want to play adventurers and adventures?"); })); commands.push(new Command("AANDASTART", function () { sendMessage("Now starting a game of adventurers and adventures"); })); commands.push(new Command("AANDARULES", function () { systemMessage("Thank you for installing Adventurers and adventures by ToadIsTheBest AKA Toad AKA DSM AKA DaSonicMario. RULES:You can do anything in the game, but there are a few limitations:"); systemMessage("Rule No.1 only the host (the person who started the game) can choose who can be the evil bad guy"); systemMessage("Rule No.2 you need at least one guest (person who joined who didn't start the game)"); systemMessage("Rule No.3 You can only have a maximum of three guests"); systemMessage("Rule No.4 The host cannot leave midgame"); systemMessage("That's it. Four simple rules for a simple game with five simple commands (chat commands)"); systemMessage("you should probably read the story with /AANDASTORY before you play, tho"); systemMessage("oh and to start, find a party with /AANDA then start the game with /AANDASTART"); })); commands.push(new Command("AANDASTORY", function () { systemMessage("Long, long ago,"); systemMessage("the evil bad guy took over Toadopia and kidnapped the princess, Lily!"); systemMessage("none would dare to save Lily except a small group of warriors (1-3 warriors) lead by the host (the person who started the game)"); systemMessage("the small group of warriors were captured and put inside the dungeon of the evil bad guy!"); systemMessage("They must find a way to escape. the story is up to you now."); systemMessage("Uhh before you go, you should probably choose a class. list all classes with /AANDACLASSES"); })); commands.push(new Command("AANDACLASSES", function () { systemMessage("Classes list"); systemMessage("Class 1 Warrior (swordsman)"); systemMessage("Class 2 Mage (Magic user)"); systemMessage("Class 3 Archer (Bow user)"); systemMessage("Class 4 Scribblenaut (Magical notebook that can make anything appear out of thin air user (Weapons break in this class after the Durability hits 0 (it is a low amount) (to find out how much durability you have on weapons, do this math equation:your level * 20 - 15 (Please remember this is not algebra) ) ) )"); }));
Beta (Maniacally Laughing Squid)
//Adventurers and Adventures BETA BUILD commands.push(new Command("AANDA", function () { sendMessage("Anyone want to play adventurers and adventures?"); })); commands.push(new Command("AANDASTART", function () { sendMessage("Now starting a game of adventurers and adventures"); })); commands.push(new Command("AANDARULES", function () { systemMessage("Thank you for installing Adventurers and adventures by ToadIsTheBest AKA Toad AKA DSM AKA DaSonicMario. RULES:You can do anything in the game, but there are a few limitations:"); systemMessage("Rule No.1 only the host (the person who started the game) can choose who can be the evil bad guy"); systemMessage("Rule No.2 you need at least one guest (person who joined who didn't start the game)"); systemMessage("Rule No.3 You can only have a maximum of three guests"); systemMessage("Rule No.4 The host cannot leave midgame"); systemMessage("That's it. Four simple rules for a simple game with six simple commands (chat commands)"); systemMessage("you should probably read the story with /AANDASTORY before you play, tho"); systemMessage("maybe read the spells you can use with /AANDASPELLS"); systemMessage("oh and to start, find a party with /AANDA then start the game with /AANDASTART"); })); commands.push(new Command("AANDASTORY", function () { systemMessage("Long, long ago,"); systemMessage("the evil bad guy took over Toadopia and kidnapped the princess, Lily!"); systemMessage("none would dare to save Lily except a small group of warriors (1-3 warriors) lead by the host (the person who started the game)"); systemMessage("the small group of warriors were captured and put inside the dungeon of the evil bad guy!"); systemMessage("They must find a way to escape. the story is up to you now."); systemMessage("Uhh before you go, you should probably choose a class. list all classes with /AANDACLASSES"); })); commands.push(new Command("AANDACLASSES", function () { systemMessage("Classes list"); systemMessage("Class 1 Warrior (swordsman)"); systemMessage("Class 2 Mage (Magic user)"); systemMessage("Class 3 Archer (Bow user)"); systemMessage("Class 4 Scribblenaut (Magical notebook that can make anything appear out of thin air user (Weapons break in this class after the Durability hits 0 (it is a low amount) (to find out how much durability you have on weapons, do this math equation:your level * 20 - 15 (Please remember this is not algebra) ) ) )"); })); commands.push(new Command("AANDASPELLS", function () { systemMessage("Spells list"); systemMessage("Use MP to use spells (Your MP is 8 + (Your level * 2). for example, if you were level 2, your max MP would have 8 + (2 * 2) which is 12)"); systemMessage("Lightning spell (weak) (Properties:Blast any enemy with lightning, Can be used by any class, uses 2 MP, No minimum level)"); systemMessage("Flight Spell (Properties:makes you fly (obviously), can only be used by a mage, uses 10 MP, minimum level:2"); systemMessage("Lightning spell (strong) (Properties:Blast any enemy with lightning, can only be used by a mage, uses 12 MP, minimum level:3"); }));[