431 @verb #9545:"message" any any any rxdo #9545 @program #9545:"message" any any any "Copied from BlitzBoy (#4680):message May 24 19:31:15 2002" if (verb == "message") if (player.is_message == 1) player:tell("They already know your '" + argstr + "'.") elseif (this.brb == 1) player:tell("You were to BRB but now you'll '" + argstr + "'.") player.location:announce_all_but({player}, player:title() + " was to BRB now " + this:sub("s", player) + "'ll '" + argstr + "'.") player.is_message = 1 player.brb = 0 player.afk = 0 elseif (this.afk == 1) player:tell("You were AFK but now you'll '" + argstr + "'.") player.location:announce_all_but({player}, player:title() + " was AFK now " + this:sub("s", player) + "'ll '" + argstr + "'.") player.is_message = 1 player.brb = 0 player.afk = 0 else player.location:announce_all_but({player}, player:title() + " will '" + argstr + "'.") player:tell("You'll '" + argstr + "'.") player.is_message = 1 player.the_message = argstr endif endif . 0