Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. new szArgs[192];
  2. read_args(szArgs, 191);
  3. remove_quotes(szArgs);
  4.  
  5. if(contain(szArgs, "!klan ") != -1)
  6. {
  7. replace(szArgs, 191, "!klan ", "");
  8.  
  9. ColorChat(id, RED, "->^x04%s:^x01 %s", Member_Name[id], szArgs);
  10.  
  11. for(new i=1; i <= 32; i++)
  12. {
  13. if(!is_user_valid(i) || i == id){
  14. continue;
  15. }
  16.  
  17. if(klan_ids[id] == klan_ids[i])
  18. {
  19. ColorChat(i, RED, "->^x04%s:^x01 %s", Member_Name[id], szArgs);
  20. }
  21. }
  22. return PLUGIN_HANDLED;
  23. }
  24. return PLUGIN_CONTINUE;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement