This will be posted in public as a tutorial, so be as informative as you can. I want to create my own module, preferably python. I want someone who knows how, to explain to me each step of the way how this module is written: Theres three bases. At the beginning of a game, I want to send out an arena message saying "Next game will begin in a moment" "Which base do you want to use? Vote 1, 2, or 3 (in public chat)" Then it needs to read public chat and see which number was said the most, one vote per person, and if they change their vote, the module will consider their latest vote and ignore the previous votes from that player. Once the module determines which base to use, it will close the other two doors on the map, closing off the other two base. Then warp everyone to center and start the game. Off the top of my head I suppose I need the 'interface' "chat" to record what players vote, and I need the 'interface' "game" to control doors and warp players. Is that correct? And do I need more? import ASSS
chat = ASSS.getInterface(!@#$%^&*s.I_CHAT)
game = ASSS.getInterface(!@#$%^&*s.I_GAME) Now what? I'm a noob.