Advertisement
Guest User

Untitled

a guest
Aug 8th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.94 KB | None | 0 0
  1. begin WelfareSword
  2.  
  3. if ( MenuMode == 1 )
  4. Return
  5. endif
  6.  
  7. if ( OnActivate == 0 )
  8. Return
  9. endif
  10.  
  11. if ( OnActivate == 1 )
  12.  
  13. ;Check to see if the player is actually a starter character.
  14. if ( Player->GetReputation > 1 )
  15. MessageBox "Your journey has already begun."
  16. Return
  17. endif
  18. if ( Player->GetLevel > 1 )
  19. MessageBox "Your journey has already begun."
  20. Return
  21. endif
  22.  
  23. PlaySound "ThunderClap"
  24. MessageBox, "Setting Stats for testing, giving gold, etc."
  25.  
  26. ;Items are given based on skills.
  27. if ( Player->GetArmorer >24)
  28. player->additem "repair_master_01" 4
  29. endif
  30. if ( Player->GetAxe >24)
  31. player->additem "steel axe" 1
  32. player->additem "steel battle axe" 1
  33. endif
  34. if ( Player->GetBlock >24)
  35. player->additem "chitin_towershield" 1
  36. endif
  37. if ( Player->GetBluntWeapon >24)
  38. player->additem "steel mace" 1
  39. player->additem "steel warhammer" 1
  40. player->additem "wooden staff" 1
  41. endif
  42. if ( Player->GetHeavyArmor >24)
  43. player->additem "steel_cuirass" 1
  44. player->additem "steel_greaves" 1
  45. player->additem "steel_boots" 1
  46. player->additem "steel_pauldron_left" 1
  47. player->additem "steel_pauldron_right" 1
  48. player->additem "steel_gauntlet_left" 1
  49. player->additem "steel_gauntlet_right" 1
  50. endif
  51. if ( Player->GetLongBlade >24)
  52. player->additem "steel broadsword" 1
  53. player->additem "steel claymore" 1
  54. endif
  55. if ( Player->GetMediumArmor >24)
  56. player->additem "bonemold_cuirass" 1
  57. player->additem "bonemold greaves" 1
  58. player->additem "bonemold_boots" 1
  59. endif
  60. if ( Player->GetSpear >24)
  61. player->additem "steel spear" 1
  62. player->additem "steel halberd" 1
  63. endif
  64. if ( Player->GetAlchemy >24)
  65. player->additem "apparatus_j_mortar_01" 1
  66. endif
  67. if ( Player->GetLightArmor >24)
  68. player->additem "netch_leather_greaves" 1
  69. player->additem "netch_leather_boots" 1
  70. player->additem "netch_leather_boiled_cuirass" 1
  71. player->additem "netch_leather_pauldron_left" 1
  72. player->additem "netch_leather_pauldron_right" 1
  73. player->additem "netch_leather_gauntlet_left" 1
  74. player->additem "netch_leather_gauntlet_right" 1
  75. endif
  76. if ( Player->GetMarksman >24)
  77. player->additem "steel throwing knife" 40
  78. endif
  79. if ( Player->GetMercantile >24)
  80. player->additem "gold_001" 600
  81. endif
  82. if ( Player->GetSecurity >24)
  83. player->additem "pick_journeyman_01" 3
  84. player->additem "probe_journeyman_01" 3
  85. endif
  86. if ( Player->GetShortBlade >24)
  87. player->additem "steel shortsword" 1
  88. player->additem "silver dagger" 1
  89. endif
  90. if ( Player->GetSneak >24)
  91. player->additem "thief_ring" 1
  92. endif
  93. if ( Player->GetSpeechcraft >24)
  94. player->additem "belt of charisma" 1
  95. endif
  96. if ( Player->GetEnchant >24)
  97. player->additem "flameeater robe" 1
  98. endif
  99. if ( Player->GetHandToHand >24)
  100. player->additem "left gauntlet of the horny fist" 1
  101. player->additem "right gauntlet of the horny fist" 1
  102. endif
  103. if ( Player->GetIllusion >24)
  104. player->additem "ring of aversion" 1
  105. player->additem "light amulet" 1
  106. endif
  107. if ( Player->GetMysticism >24)
  108. player->additem "amulet of mark" 1
  109. player->additem "amulet of recall" 1
  110. endif
  111. if ( Player->GetRestoration >24)
  112. player->additem "mother's ring" 1
  113. player->additem "amulet of balyna's antidote" 1
  114. endif
  115. if ( Player->GetUnarmored >24)
  116. player->additem "amulet of water walking" 1
  117. player->additem "watcher's belt" 1
  118. endif
  119. if ( Player->GetDestruction >24)
  120. player->additem "dire flamebolt ring" 1
  121. player->additem "firestone" 1
  122. endif
  123. if ( Player->GetConjuration >24)
  124. player->additem "ancestor's ring" 1
  125. player->additem "bone guard belt" 1
  126. endif
  127. if ( Player->GetAlteration >24)
  128. player->additem "amulet of opening" 1
  129. player->additem "third barrier belt" 1
  130. endif
  131. if ( Player->GetAcrobatics >24)
  132. player->additem "hoptoad ring" 1
  133. player->additem "amulet of slowfalling" 1
  134. endif
  135. if ( Player->GetAthletics >24)
  136. player->additem "belt of feet of notorgo" 1
  137. player->additem "amulet of stamina" 1
  138. endif
  139.  
  140. endif
  141.  
  142. End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement