Advertisement
Guest User

beg to enter

a guest
Aug 10th, 2014
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. on !*:JOIN:#:{
  2. if ($islower($left($regsubex($nick,/(^([^a-z]+))/ig,),1)) == $true) {
  3. set $+(%,subtoenter1.,$nick) $nick
  4. set $+(%,room1.,$nick) $chan
  5. .timerbeg $+ $nick 1 300 failtobeg $nick $chan
  6.  
  7. }
  8. }
  9.  
  10. on $*:TEXT:/enter|come|return|join|arrive|pass/i:#: {
  11. if ($($+(%,subtoenter1.,$nick),2) == $nick) {
  12. .timerbeg $+ $nick off
  13. unset $+(%,subtoenter1.,$nick)
  14. unset $+(%,room1.,$nick)
  15. msg $chan Come on in $nick $+ ! Strip and describe yourself, slut!
  16. }
  17. }
  18.  
  19. on $*:ACTION:/enter|come|return|join|arrive|pass|entry/i:#: {
  20. if ($($+(%,subtoenter1.,$nick),2) == $nick) {
  21. .timerbeg $+ $nick off
  22. unset $+(%,subtoenter1.,$nick)
  23. unset $+(%,room1.,$nick)
  24. msg $chan Come on in $nick $+ ! Strip and describe yourself, slut!
  25. }
  26. }
  27.  
  28. on *:PART:#:{
  29. if ($($+(%,subtoenter1.,$nick),2) == $nick) {
  30. .timerbeg $+ $nick off
  31. unset $+(%,subtoenter1.,$nick)
  32. unset $+(%,room1.,$nick)
  33. }
  34. }
  35.  
  36.  
  37. alias failtobeg {
  38. var %chan $2
  39. var %nick $1
  40. ban -u5 %chan %nick
  41. kick %chan %nick Slaves must beg to enter.
  42. unset $+(%,room1.,%nick)
  43. unset $+(%,subtoenter1.,%nick)
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement