Advertisement
Yarukinasu

shitscript.cfg

Aug 3rd, 2011
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.41 KB | None | 0 0
  1. // randomfrag will spam; uncomment if necessary
  2. // randomfrag = [ "EAT LEAD!" "TAKE THAT!" "Come on, is that all you got?" "My grandma can play better than that!" "OH! Watch me now!" "Oh Snap! There it is!" ]
  3. randomhs = [ "Headshot!" "POW! Right in the kisser!" "That's skill right there." "Not fast enough mate!" ]
  4. randomgib = [ "Naded!" "Sky high!" "Smells like bar-b-que" ]
  5. randomslash = [ "Taste steel!" "Slashy-Slashy" "Un-guard!" ]
  6.  
  7. add2conloop [
  8.   // if_conline_has "you fragged " but_not " teammate " [
  9.     // say (at $randomfrag (rnd (listlen $randomfrag)))
  10.   // ]
  11.   if_conline_has $curname "and_also" "noob" [
  12.     if (! (strstr (at $conline) $curname)) [
  13.       say "stfu! :P"
  14.     ]
  15.   ] [ ]
  16.   if_conline_has "you headshot " "but_not" " teammate " [
  17.     say (at $randomhs (rnd (listlen $randomhs)))
  18.   ] [ ]
  19.   if_conline_has "you gibbed " "but_not" " teammate " [
  20.     say (at $randomgib (rnd (listlen $randomgib)))
  21.   ] [ ]
  22.   if_conline_has "you slashed " "but_not" " teammate " [
  23.    say (at $randomslash (rnd (listlen $randomslash)))
  24.   ] [ ]
  25. ]
  26.  
  27. bind BACKSLASH [ say "You'll never take me alive!"; onrelease suicide ]
  28.  
  29. randomis = [ "angry" "happy" "a villain" "sad" "confuddled" "perplexed" "king of the world" "picking flowers" "shooting people" "a master sniper!" "teabagging the enemy" "saying random stuff!" "blank. . ." "feeling lucky" "bored" ]
  30. bind J [ me is (at $randomis (rnd (listlen $randomis))) ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement