Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. ----
  2. TRIGGER
  3. ^A concussion bomb blows up in (\w+)\'s hands\!$
  4.  
  5. if autofire==true then
  6. expandAlias(Autofire)
  7. end
  8. ----
  9. ALIAS
  10.  
  11. ^autofire$
  12.  
  13. svo.doadd("get axe|envenom axe with kalmia|throw axe at "..target)
  14. svo.doadd("get axe|envenom axe with gecko|throw axe at "..target)
  15. svo.doadd("get axe|envenom axe with slike|throw axe at "..target)
  16. svo.doadd("wield {"..target.."} |puppet paralyse")
  17. autofire=false
  18.  
  19. -----
  20. KEYBIND
  21.  
  22. key binding: Shift+C
  23.  
  24. if autofire==nil then
  25. echo("Autofire initialized as DISABLED")
  26. autofire=false
  27. end
  28. if autofire==true then
  29. echo("Autofire Disabled\n")
  30. autofire=false
  31. else
  32. autofire=true
  33. echo("Autofire Enabled\n")
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement