Guest User

Untitled

a guest
Jan 21st, 2018
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. 1::SwitchToStaff()
  2. 2::SwitchToSword()
  3. !2::SwitchToShield()
  4. 3::SwitchToBow()
  5.  
  6.  
  7. F12::Suspend
  8.  
  9. SwitchToStaff()
  10. {
  11. global
  12. current_weap := "staff"
  13. Send, +{]}
  14. Sleep, 100
  15. }
  16.  
  17. SwitchToSword()
  18. {
  19. global
  20. current_weap := "greatsword"
  21. Send, +{[}
  22. Sleep, 100
  23. }
  24.  
  25. SwitchToShield()
  26. {
  27. global
  28. current_weap := "shield"
  29. Send, +o
  30. Sleep, 1000
  31. Send, +i
  32. Sleep, 200
  33. }
  34.  
  35. SwitchToBow()
  36. {
  37. global
  38. current_weap := "bow"
  39. Send, +p
  40. Sleep, 100
  41. }
Add Comment
Please, Sign In to add comment