Advertisement
AyeeKiingLions

Untitled

Jan 25th, 2016
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. ; /penis - A script by Katlyn Caswel (aka Dominic Quentin) [katlyn@swiftirc.net]
  2. ; To use, type /penis
  3. ; Sample output: <Katlyn> 8==========D
  4. ; For bugs or comments, please e-mail me at the above address
  5. ; xoxo Katlyn ;]
  6.  
  7. alias penis {
  8. var %penis = $rand(1,32)
  9. var %shaftlength = $rand(1,15)
  10. var %jizzlength = $rand(1,10)
  11. var %constructlength = 1
  12. var %shaftconstructlength = 1
  13. var %jizzylength = 1
  14. unset %jizzy
  15. unset %shaftconstruct
  16. unset %construct
  17. while (%shaftconstructlength < %shaftlength) {
  18. %shaftconstruct = %shaftconstruct $+ =
  19. inc %shaftconstructlength
  20. }
  21. while (%constructlength < %penis) {
  22. var %construct = %construct $+ $chr(160)
  23. inc %constructlength
  24. }
  25. while (%jizzylength < %jizzlength) {
  26. var %jizz = %jizz $+ ~
  27. inc %jizzylength
  28. }
  29. msg $active %construct $+ 8 $+ %shaftconstruct $+ D $+ %jizz
  30. }
  31.  
  32. ; /hands - A script by Katlyn Caswel (aka Dominic Quentin) [katlyn@swiftirc.net]
  33. ; To use, type /hands [person-here] (If no person specified, will message entire channel or
  34. ; person you're PMing)
  35. ; Sample output: <Katlyn> \\o Throw yo \o/ hands \o/ up in the sky, Sephiroth o//
  36. ; For bugs or comments, please e-mail me at the above address
  37. ; xoxo Katlyn ;]
  38.  
  39. alias hands {
  40. var %x = 1
  41. if ($1 != $null) {
  42. say \\o Throw ya \o/ hands \o/ up in the sky, $1 o//
  43. return
  44. }
  45. elseif ($chan == $null) && ($1 == $null) {
  46. say \\o Throw ya \o/ hands \o/ up in the sky, $active o//
  47. }
  48. while ($nick($chan,%x)) {
  49. msg $chan \\o Throw ya \o/ hands \o/ up in the sky, $ifmatch o//
  50. inc %x
  51. }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement