Advertisement
Koelion

Evil Laugh

May 12th, 2013
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function OnLoad()
  2.  
  3. ELConfig = scriptConfig("Evil Laugh", "Evil Laugh")
  4. ELConfig:addParam("laugh", "Spam Evil Laugh", SCRIPT_PARAM_ONKEYDOWN, false, 84)
  5. ELConfig:addParam("move", "Move to mouse", SCRIPT_PARAM_ONOFF, true)
  6. PrintChat("Evil Laugh Loaded")
  7.  
  8. end
  9.  
  10. function OnTick()
  11.  
  12. if ELConfig.laugh then
  13.  
  14. SendChat("/l")
  15.  
  16. if ELConfig.move then
  17. myHero:MoveTo(mousePos.x, mousePos.z)
  18. end
  19.  
  20. end
  21.  
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement