Advertisement
Guest User

Bukz

a guest
Aug 13th, 2010
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. kickorbanreason = [
  2.     kobr = "dummy"
  3.         if (strcmp $arg1 n) [kobr = "Being a noob."] [
  4.         if (strcmp $arg1 m) [kobr = "Modified map."] [
  5.         if (strcmp $arg1 c) [kobr = "Cheating."] [
  6.         if (strcmp $arg1 i) [kobr = "Inappropriate name."] [
  7.         if (strcmp $arg1 s) [kobr = "Spamming."] [
  8.         if (strcmp $arg1 v) [kobr = "Vote abuse."] [
  9.         if (strcmp $arg1 t) [kobr = "Team killing."] []]]]]]]
  10. ]
  11.  
  12. k = [
  13.     kickorbanreason $arg2
  14.         if (strcmp $kobr dummy) [] [kick $arg1 $kobr]
  15. ]
  16.  
  17. b = [
  18.     kickorbanreason $arg2
  19.         if (strcmp $kobr dummy) [] [ban $arg1 $kobr]
  20. ]
  21.  
  22. docsection [Misc]
  23.  
  24. docident [k] [Shorthand version of /kick.]
  25. docargument [C] [Client number of the player you wish to kick.]
  26. docargument [T] [Type of kick: c = cheating, i = inappropriate name, m = modified map, n = noob, t = team killing, v = vote abuse]
  27. docremark [Kicks the specified player using a predetermined reason based on the argument given.]
  28.  
  29. docident [b] [Shorthand version of /ban.]
  30. docargument [C] [Client number of the player you wish to ban.]
  31. docargument [T] [Type of ban: c = cheating, i = inappropriate name, m = modified map, n = noob, t = team killing, v = vote abuse]
  32. docremark [Bans the specified player using a predetermined reason based on the argument given.]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement