Guest User

Untitled

a guest
Jul 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.52 KB | None | 0 0
  1. if (Server.chatmod && !this.voice) { this.SendMessage("Chat moderation is on, you cannot speak."); return; }
  2.                 if (muted) { this.SendMessage("You are muted."); return; }  //Muted: Only allow commands
  3.                 if ((Server.voting && text == "1") && !this.voted) { this.SendMessage("Thanks for voting!"); Server.map1votes++; this.voted = true; return; }
  4.                 if ((Server.voting && text == "2") && !this.voted) { this.SendMessage("Thanks for voting!"); Server.map2votes++; this.voted = true; return; }
Add Comment
Please, Sign In to add comment