Advertisement
Carolyn40

lastword script

Mar 5th, 2022
2,445
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.72 KB | None | 0 0
  1. alias lastword {
  2.   if (mibbit isin $address($$1,5)) {
  3.     guser -a lastword $$1 11
  4.   }
  5.   elseif (undernet isin $address($$1,5)) {
  6.     guser -a lastword $$1 2
  7.   }
  8.   else {
  9.     guser -a lastword $$1 3
  10.   }
  11. }
  12.  
  13. #lastword_response on
  14.  
  15. on lastword:text:*:?: {
  16.   .timer 1 $rand(5,10) msg $nick $read(lastword.txt)
  17.   .disable #lastword_response
  18.   .timer 1 5 .enable #lastword_response
  19. }
  20.  
  21. on lastword:notice:*:?: {
  22.   .timer 1 $rand(5,10) msg $nick $read(lastword.txt)
  23.   .disable #lastword_response
  24.   .timer 1 5 .enable #lastword_response
  25. }
  26.  
  27. on lastword:action:*:?: {
  28.   .timer 1 $rand(5,10) msg $nick $read(lastword.txt)
  29.   .disable #lastword_response
  30.   .timer 1 5 .enable #lastword_response
  31. }
  32.  
  33. #lastword_response end
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement