DeadlySoldier!! Posted August 26, 2003 Report Posted August 26, 2003 Hey.. I need some help with this bot im making.. I have it so it counts down to 0 and says GO!.. but when it says go i need it to open the door too.. Anyone wanna help?? Heres the code.. (i know, its -*BAD WORD*-a messy, just a small bot so it doesnt really matter to me..) countdown: if (countdown[0] == 3) { sendPublic("*arena Starting in 3.."); } if (countdown[0] == 2) { sendPublic("*arena 2.."); } if (countdown[0] == 1) { sendPublic("*arena 1.."); } if (countdown[0] == 0) { sendPublic("*arena GO"); } and the !start command.. if (c->check("start")) { sendPublic("*arena Get ready! Duel starting in 5 seconds.."); countdown[0] = 6; }
Mr Ekted Posted August 26, 2003 Report Posted August 26, 2003 To open all doors, the command is ?set Door:DoorMode=0
DeadlySoldier!! Posted August 26, 2003 Author Report Posted August 26, 2003 can i just use sendPublic("?set Door:DoorMode=0"); ???
Mr Ekted Posted August 26, 2003 Report Posted August 26, 2003 I believe that is how you would do it in MERV, yes.
Recommended Posts