Advertisement
Rydotee

Artifact Crystals

Jun 24th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. wOS:RegisterItem( {
  3. Name = "ARTIFACT Crystal (The Excavator)",
  4. Description = "Artifact Crystal.",
  5. Type = WOSTYPE.CRYSTAL,
  6. Rarity = 0,
  7. Model = "models/white4/white4.mdl",
  8. OnEquip = function( wep )
  9. wep.CustomSettings[ "Swirl" ] = true
  10. wep.UseColor = Color( 220, 220, 220 )
  11. end,
  12. } )
  13.  
  14. wOS:RegisterItem( {
  15. Name = "ARTIFACT Crystal (Master's Core)",
  16. Description = "Artifact Crystal.",
  17. Type = WOSTYPE.CRYSTAL,
  18. Rarity = 0,
  19. Model = "models/cyan6/cyan6.mdl",
  20. OnEquip = function( wep )
  21. wep.CustomSettings[ "Pervasive" ] = true
  22. wep.UseColor = Color( 0, 250, 255 )
  23. end,
  24. } )
  25.  
  26. wOS:RegisterItem( {
  27. Name = "ARTIFACT Crystal (The Holy Grail)",
  28. Description = "Artifact Crystal.",
  29. Type = WOSTYPE.CRYSTAL,
  30. Rarity = 0,
  31. Model = "models/yellow8/yellow8.mdl",
  32. OnEquip = function( wep )
  33. wep.CustomSettings[ "Pervasive" ] = true
  34. wep.UseColor = Color( 171, 171, 49 )
  35. end,
  36. } )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement