Rydotee

Uncommon Crystals

Jun 24th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.62 KB | None | 0 0
  1. wOS:RegisterItem( {
  2. Name = "UNCOMMON Crystal (Blue Inner + White)",
  3. Description = "Uncommon Crystal.",
  4. Type = WOSTYPE.CRYSTAL,
  5. Rarity = 0,
  6. Model = "models/white7/white7.mdl",
  7. OnEquip = function( wep )
  8. wep.UseColor = Color( 255, 255, 255 )
  9. wep.CustomSettings[ "InnerColor" ] = "Blue"
  10. end,
  11. }]
  12.  
  13. wOS:RegisterItem( {
  14. Name = "UNCOMMON Crystal (Red Inner + White)",
  15. Description = "Uncommon Crystal.",
  16. Type = WOSTYPE.CRYSTAL,
  17. Rarity = 0,
  18. Model = "models/white7/white7.mdl",
  19. OnEquip = function( wep )
  20. wep.UseColor = Color( 255, 255, 255 )
  21. wep.CustomSettings[ "InnerColor" ] = "Red"
  22. end,
  23. }]
  24.  
  25. wOS:RegisterItem( {
  26. Name = "UNCOMMON Crystal Solid Rex's Red",
  27. Description = "Uncommon Crystal.",
  28. Type = WOSTYPE.CRYSTAL,
  29. Rarity = 0,
  30. Model = "models/red8/red8.mdl",
  31. OnEquip = function( wep )
  32. wep.UseColor = Color( 185, 30, 30 )
  33. wep.CustomSettings[ "InnerColor" ] = "Red"
  34. end,
  35. }]
  36.  
  37. wOS:RegisterItem( {
  38. Name = "UNCOMMON Crystal Wet Blood",
  39. Description = "Uncommon Crystal.",
  40. Type = WOSTYPE.CRYSTAL,
  41. Rarity = 0,
  42. Model = "models/red2/red2.mdl",
  43. OnEquip = function( wep )
  44. wep.UseColor = Color( 244, 13, 26 )
  45. wep.CustomSettings[ "InnerColor" ] = "Wetblood"
  46. end,
  47. }]
  48.  
  49. wOS:RegisterItem( {
  50. Name = "UNCOMMON Moist Magenta",
  51. Description = "Uncommon Crystal.",
  52. Type = WOSTYPE.CRYSTAL,
  53. Rarity = 0,
  54. Model = "models/pink5/pink5.mdl",
  55. OnEquip = function( wep )
  56. wep.UseColor = Color( 100, 0, 100 )
  57. wep.CustomSettings[ "InnerColor" ] = "Light Blue"
  58. end,
  59. }]
  60.  
  61. wOS:RegisterItem( {
  62. Name = "UNCOMMON Emerald Ocean",
  63. Description = "Uncommon Crystal.",
  64. Type = WOSTYPE.CRYSTAL,
  65. Rarity = 0,
  66. Model = "models/green8/green8.mdl",
  67. OnEquip = function( wep )
  68. wep.UseColor = Color( 2, 91, 0 )
  69. wep.CustomSettings[ "InnerColor" ] = "Dark Blue"
  70. end,
  71. }]
  72.  
  73. wOS:RegisterItem( {
  74. Name = "UNCOMMON Gold Nugget",
  75. Description = "Uncommon Crystal.",
  76. Type = WOSTYPE.CRYSTAL,
  77. Rarity = 0,
  78. Model = "models/yellow2/yellow2.mdl",
  79. OnEquip = function( wep )
  80. wep.UseColor = Color( 255, 255, 51 )
  81. wep.CustomSettings[ "InnerColor" ] = "Dark Blue"
  82. end,
  83. }]
  84.  
  85. wOS:RegisterItem( {
  86. Name = "UNCOMMON Liquid Green",
  87. Description = "Uncommon Crystal.",
  88. Type = WOSTYPE.CRYSTAL,
  89. Rarity = 0,
  90. Model = "models/lgreen6/lgreen6.mdl",
  91. OnEquip = function( wep )
  92. wep.UseColor = Color( 79, 165, 85 )
  93. wep.CustomSettings[ "InnerColor" ] = "Dark Green"
  94. end,
  95. }]
  96.  
  97. wOS:RegisterItem( {
  98. Name = "UNCOMMON Poseidon's Trident",
  99. Description = "Uncommon Crystal.",
  100. Type = WOSTYPE.CRYSTAL,
  101. Rarity = 0,
  102. Model = "models/yellow5/yellow5.mdl",
  103. OnEquip = function( wep )
  104. wep.UseColor = Color( 255, 165, 0 )
  105. wep.CustomSettings[ "InnerColor" ] = "Dark Blue"
  106. end,
  107. }]
  108.  
  109. wOS:RegisterItem( {
  110. Name = "UNCOMMON Malachite",
  111. Description = "Uncommon Crystal.",
  112. Type = WOSTYPE.CRYSTAL,
  113. Rarity = 0,
  114. Model = "models/green4/green4.mdl",
  115. OnEquip = function( wep )
  116. wep.UseColor = Color( 0, 255, 0 )
  117. wep.CustomSettings[ "InnerColor" ] = "Dark Green"
  118. end,
  119. }]
  120.  
  121. wOS:RegisterItem( {
  122. Name = "UNCOMMON Aerial",
  123. Description = "Uncommon Crystal.",
  124. Type = WOSTYPE.CRYSTAL,
  125. Rarity = 0,
  126. Model = "models/white2/white2.mdl",
  127. OnEquip = function( wep )
  128. wep.UseColor = Color( 174, 174, 174 )
  129. wep.CustomSettings[ "InnerColor" ] = "Light Blue"
  130. end,
  131. }]
Add Comment
Please, Sign In to add comment