Guest User

Untitled

a guest
Apr 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.71 KB | None | 0 0
  1. IRCCMD:cmds(botid, channel[], user[], host[], params[])
  2. {
  3.     if(!IRC_IsOp(botid, channel, user))
  4.     {
  5.         IRC_ReplyCTCP(botid, user, "!say (message) - Text will appear IN-GAME");
  6.     }
  7.     else
  8.     {
  9.         IRC_ReplyCTCP(botid, user, "!say (message) - Text will appear IN-GAME");
  10.         IRC_ReplyCTCP(botid, user, "!unban (name)");
  11.         IRC_ReplyCTCP(botid, user, "!ban (targetid | name) (reason)");
  12.         IRC_ReplyCTCP(botid, user, "!mute (targetid | name) (reason)");
  13.         IRC_ReplyCTCP(botid, user, "!unmute (targetid | name) (reason)");
  14.         IRC_ReplyCTCP(botid, user, "!muted");
  15.         IRC_ReplyCTCP(botid, user, "!players");
  16.         IRC_ReplyCTCP(botid, user, "!setadmin (targetid | name) (level)");
  17.     }
  18.     return true;
  19. }
Add Comment
Please, Sign In to add comment