Advertisement
Guest User

Untitled

a guest
Nov 27th, 2015
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. [ITEMDEF i_order_Chest]
  2. NAME=Order Chest
  3. ID=i_platemail_Chest
  4. WEIGHT=0.1
  5. TYPE=t_armor
  6. DYE=0
  7. ARMOR=50
  8. VALUE=30
  9.  
  10. ON=@CREATE
  11. HITPOINTS=50000
  12. COLOR=09f6
  13.  
  14. ON=@EQUIP
  15. serv.newitem=I_order_leggings
  16. new.bounce
  17. new.equip
  18. serv.newitem=I_order_gloves
  19. new.bounce
  20. new.equip
  21. serv.newitem=I_order_arms
  22. new.bounce
  23. new.equip
  24. serv.newitem=I_order_gorget
  25. new.bounce
  26. new.equip
  27. serv.newitem=I_order_shield
  28. new.bounce
  29. new.equip
  30. serv.newitem=I_order_helm
  31. new.bounce
  32. new.equip
  33.  
  34.  
  35. ON=@UNEQUIP
  36. if <src.findlayer.4.baseid> == i_order_leggings
  37. src.findlayer.4.remove
  38. if <src.findlayer.7.baseid> == i_order_gloves
  39. src.findlayer.7.remove
  40. if <src.findlayer.6.baseid> == i_order_helm
  41. src.findlayer.6.remove
  42. if <src.findlayer.2.baseid> == i_order_shield
  43. src.findlayer.2.remove
  44. if <src.findlayer.10.baseid> == i_order_gorget
  45. src.findlayer.10.remove
  46. if <src.findlayer.19.baseid> == i_order_arms
  47. src.findlayer.19.remove
  48.  
  49. ON=@DEATH
  50. if <src.findlayer.4.baseid> == i_order_leggings
  51. src.findlayer.4.remove
  52. if <src.findlayer.7.baseid> == i_order_gloves
  53. src.findlayer.7.remove
  54. if <src.findlayer.6.baseid> == i_order_helm
  55. src.findlayer.6.remove
  56. if <src.findlayer.2.baseid> == i_order_shield
  57. src.findlayer.2.remove
  58. if <src.findlayer.10.baseid> == i_order_gorget
  59. src.findlayer.10.remove
  60. if <src.findlayer.19.baseid> == i_order_arms
  61. src.findlayer.19.remove
  62.  
  63. endif
  64.  
  65. [ITEMDEF i_order_leggings]
  66. NAME=Order Leggings
  67. ID=i_platemail_Leggings
  68. WEIGHT=0.1
  69. TYPE=t_armor
  70. DYE=0
  71. ARMOR=30
  72. VALUE=30
  73.  
  74. ON=@CREATE
  75. HITPOINTS=50000
  76. COLOR=09f6
  77. ATTR 00010
  78.  
  79. [ITEMDEF i_order_gloves]
  80. NAME=Order Gloves
  81. ID=i_platemail_gloves
  82. WEIGHT=0.1
  83. TYPE=t_armor
  84. DYE=0
  85. ARMOR=30
  86. VALUE=30
  87.  
  88. ON=@CREATE
  89. HITPOINTS=50000
  90. COLOR=09f6
  91. ATTR 00010
  92.  
  93. [ITEMDEF i_order_gorget]
  94. NAME=Order Gorget
  95. ID=i_platemail_Gorget
  96. WEIGHT=0.1
  97. TYPE=t_armor
  98. DYE=0
  99. ARMOR=30
  100. VALUE=30
  101.  
  102. ON=@CREATE
  103. HITPOINTS=50000
  104. COLOR=09f6
  105. ATTR 00010
  106.  
  107. [ITEMDEF i_order_Arms]
  108. NAME=Order Arms
  109. ID=i_platemail_arms
  110. WEIGHT=0.1
  111. TYPE=t_armor
  112. DYE=0
  113. ARMOR=30
  114. VALUE=30
  115.  
  116. ON=@CREATE
  117. HITPOINTS=50000
  118. COLOR=09f6
  119. ATTR 00010
  120.  
  121. [ITEMDEF i_order_shield]
  122. NAME=Order Shield
  123. ID=i_shield_order
  124. WEIGHT=0.1
  125. TYPE=t_shield
  126. DYE=0
  127. ARMOR=100
  128. VALUE=30
  129.  
  130. ON=@CREATE
  131. HITPOINTS=50000
  132. COLOR=09f6
  133. ATTR 00010
  134.  
  135. [ITEMDEF i_order_helm]
  136. NAME=Order Helm
  137. ID=i_platemail_helm
  138. WEIGHT=0.1
  139. TYPE=t_armor
  140. DYE=0
  141. ARMOR=30
  142. VALUE=30
  143.  
  144. ON=@CREATE
  145. HITPOINTS=50000
  146. COLOR=09f6
  147. ATTR 00010
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement