Guest User

Untitled

a guest
Jun 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. ;==================================
  2. ; Script Name: MRTZeroVisibility
  3. ; Author: MRT
  4. ; Version: 2.01
  5. ; Client Tested with: 4.0.1b
  6. ; EUO version tested with: 1.42.0098
  7. ; Shard OSI / FS: FS
  8. ; Revision Date: 6/21/2005
  9. ; Public Release: 4/30/2004
  10. ; Global Variables Used: None
  11. ; Purpose: Easily train Hiding from 0 to GM and Stealth from 0 to GM. For shards with non-movement based Hiding & Stealth.
  12. ;==================================
  13. ;Make sure you are wearing the proper equipment for your stealth gains:
  14. ;0 - 30 - Purchase
  15. ;30 - 65 - Normal Clothes
  16. ;65 - 95 - Full Studded Suit
  17. ;95 - 100 - Full Studded Suit + Close Helm
  18. ;==================================
  19. SET %UseHidingAndStealth #TRUE
  20. ;==================================
  21. MAINLOOP:
  22. GOSUB HIDE
  23. GOSUB STEALTH
  24. GOTO MAINLOOP
  25.  
  26. SUB HIDE
  27. CHOOSESKILL HIDI
  28. IF #SKILL = #SKILLCAP
  29. {
  30. CHOOSESKILL STLT
  31. IF #SKILL = #SKILLCAP
  32. {
  33. DISPLAY OK You have GM'ed Hiding & Stealth.
  34. }
  35. }
  36.  
  37. HIDINGLOOP:
  38. IF H <> #CHARSTATUS
  39. {
  40. EVENT MACRO 13 21 ;USESKILL HIDING
  41. WAIT 11s
  42. RETURN
  43. }
  44.  
  45. CHOOSESKILL HIDI
  46. IF #SKILL < 800
  47. {
  48. EVENT MACRO 13 21 ;USESKILL HIDING
  49. WAIT 11s
  50. RETURN
  51. }
  52. IF H IN #CHARSTATUS
  53. {
  54. RETURN
  55. }
  56. GOTO HIDINGLOOP
  57. RETURN
  58.  
  59. SUB STEALTH
  60. CHOOSESKILL STLT
  61. IF #SKILL = #SKILLCAP
  62. {
  63. RETURN
  64. }
  65. IF %UseHidingAndStealth
  66. {
  67. IF H IN #CHARSTATUS
  68. {
  69. CHOOSESKILL HIDI
  70. IF #SKILL > 800
  71. {
  72. EVENT MACRO 13 47 ;USESKILL STEALTH
  73. WAIT 11s
  74. }
  75. }
  76. }
  77. RETURN
  78. HALT
Add Comment
Please, Sign In to add comment