Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. if (channelle[client] == 1)
  2. {
  3. if (GetClientTeam(client) == 2)
  4. {
  5. CPrintToChatAll("{red}[%s]{gray} %N {default}: %s", JobName, client, Arg);
  6. return Plugin_Handled;
  7. }
  8. else if (GetClientTeam(client) == 3)
  9. {
  10. CPrintToChatAll("{blue}[%s]{gray} %N {default}: %s", JobName, client, Arg);
  11. return Plugin_Handled;
  12. }
  13. else if (GetClientTeam(client) == 3 && GetUserFlagBits(client) & ADMFLAG_CUSTOM5)
  14. {
  15. CPrintToChatAll("<Admin> {blue}[%s]{gray} %N {default}: %s", JobName, client, Arg);
  16. return Plugin_Handled;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement