Advertisement
Guest User

Untitled

a guest
Jul 10th, 2012
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | None | 0 0
  1.  
  2. if (! (strstr $mapstartalways tkchk)) [add2alias mapstartalways [sleep 1000 [tkchk]]] []
  3.  
  4.  
  5. alias srymsgpre ["Sorry " "I'm sorry " "Oops sorry, " "Sorry about that " "My mistake, "]
  6. alias iaoytmsgpre ["WTF are you doing, " "Come on, " "What was that, " "Stop that " "OMG, "]
  7.  
  8. alias srymsgpost [", I really did not want to do that." ", that was an accident." ", it was unintentional." ", it won't happen again." ", my bad."]
  9. alias iaoytmsgpost [", I am on your team!" ", that was my favourite camping place!" ", you behave like a rookie" ", don't do that again!" ", stop teamkilling!"]
  10.  
  11. tkchk = [
  12.  
  13. if (! (strcmp (at $conline 0) " 3you")) [] [ // Workaround for stupid people who use "you" in their nicks
  14. if (strstr $conline "you fragged teammate ") [alias plrname (at $conline 3);sleep 500 [voicecom sorry (concatword (at $srymsgpre (rnd 5)) $plrname (at $srymsgpost (rnd 5)))]; conline [ ]] []
  15. if (strstr $conline "you gibbed teammate ") [alias plrname (at $conline 3);sleep 500 [voicecom sorry (concatword (at $srymsgpre (rnd 5)) $plrname (at $srymsgpost (rnd 5)))]; conline [ ]] []
  16. if (strstr $conline "you splattered teammate ") [alias plrname (at $conline 3);sleep 500 [voicecom sorry (concatword (at $srymsgpre (rnd 5)) $plrname (at $srymsgpost (rnd 5)))]; conline [ ]] []
  17. if (strstr $conline "you slashed teammate ") [alias plrname (at $conline 3);sleep 500 [voicecom sorry (concatword (at $srymsgpre (rnd 5)) $plrname (at $srymsgpost (rnd 5)))]; conline [ ]] []
  18. if (strstr $conline "you headshot teammate ") [alias plrname (at $conline 3);sleep 500 [voicecom sorry (concatword (at $srymsgpre (rnd 5)) $plrname (at $srymsgpost (rnd 5)))]; conline [ ]] []
  19.  
  20.  
  21.  
  22. if (strstr $conline "you were fragged by teammate ") [alias plrname (at $conline 5);sleep 500 [voicecom imonyourteamman (concatword (at $iaoytmsgpre (rnd 5)) $plrname (at $iaoytmsgpost (rnd 5)))]; conline [ ]] []
  23. if (strstr $conline "you were gibbed by teammate ") [alias plrname (at $conline 5);sleep 500 [voicecom imonyourteamman (concatword (at $iaoytmsgpre (rnd 5)) $plrname (at $iaoytmsgpost (rnd 5)))]; conline [ ]] []
  24. if (strstr $conline "you were slashed by teammate ") [alias plrname (at $conline 5);sleep 500 [voicecom imonyourteamman (concatword (at $iaoytmsgpre (rnd 5)) $plrname (at $iaoytmsgpost (rnd 5)))]; conline [ ]] []
  25. if (strstr $conline "you were splattered by teammate ") [alias plrname (at $conline 5);sleep 500 [voicecom imonyourteamman (concatword (at $iaoytmsgpre (rnd 5)) $plrname (at $iaoytmsgpost (rnd 5)))]; conline [ ]] []
  26. if (strstr $conline "you were headshot by teammate ") [alias plrname (at $conline 5);sleep 500 [voicecom imonyourteamman (concatword (at $iaoytmsgpre (rnd 5)) $plrname (at $iaoytmsgpost (rnd 5)))]; conline [ ]] []
  27.  
  28. ]
  29. sleep 1 [tkchk]
  30. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement