Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. if player.mo.hyperflashcolor < 4
  2. or player.mo.hyperflashcolor == 37
  3. player.mo.color = SKINCOLOR_NEONGREEN
  4. local ghost = P_SpawnGhostMobj(player.mo)
  5. ghost.fuse = 4
  6. ghost.color = 20
  7. end
  8.  
  9. if player.mo.hyperflashcolor > 3
  10. and player.mo.hyperflashcolor < 7
  11. player.mo.color = SKINCOLOR_SILVER
  12. local ghost = P_SpawnGhostMobj(player.mo)
  13. ghost.fuse = 4
  14. ghost.color = 2
  15. end
  16.  
  17. if player.mo.hyperflashcolor > 6
  18. and player.mo.hyperflashcolor < 10
  19. player.mo.color = SKINCOLOR_BLUE
  20. local ghost = P_SpawnGhostMobj(player.mo)
  21. ghost.fuse = 4
  22. ghost.color = 8
  23. end
  24.  
  25. if player.mo.hyperflashcolor > 9
  26. and player.mo.hyperflashcolor < 13
  27. player.mo.color = SKINCOLOR_SILVER
  28. local ghost = P_SpawnGhostMobj(player.mo)
  29. ghost.fuse = 4
  30. ghost.color = 2
  31. end
  32.  
  33. if player.mo.hyperflashcolor > 12
  34. and player.mo.hyperflashcolor < 16
  35. player.mo.color = SKINCOLOR_CYAN
  36. local ghost = P_SpawnGhostMobj(player.mo)
  37. ghost.fuse = 4
  38. ghost.color = 5
  39. end
  40.  
  41. if player.mo.hyperflashcolor > 15
  42. and player.mo.hyperflashcolor < 19
  43. player.mo.color = SKINCOLOR_SILVER
  44. local ghost = P_SpawnGhostMobj(player.mo)
  45. ghost.fuse = 4
  46. ghost.color = 2
  47. end
  48.  
  49. if player.mo.hyperflashcolor > 18
  50. and player.mo.hyperflashcolor < 22
  51. player.mo.color = SKINCOLOR_PURPLE
  52. local ghost = P_SpawnGhostMobj(player.mo)
  53. ghost.fuse = 4
  54. ghost.color = 13
  55. end
  56.  
  57. if player.mo.hyperflashcolor > 21
  58. and player.mo.hyperflashcolor < 25
  59. player.mo.color = SKINCOLOR_SILVER
  60. local ghost = P_SpawnGhostMobj(player.mo)
  61. ghost.fuse = 4
  62. ghost.color = 2
  63. end
  64.  
  65. if player.mo.hyperflashcolor > 24
  66. and player.mo.hyperflashcolor < 28
  67. player.mo.color = SKINCOLOR_RED
  68. local ghost = P_SpawnGhostMobj(player.mo)
  69. ghost.fuse = 4
  70. ghost.color = 18
  71. end
  72.  
  73. if player.mo.hyperflashcolor > 27
  74. and player.mo.hyperflashcolor < 31
  75. player.mo.color = SKINCOLOR_SILVER
  76. local ghost = P_SpawnGhostMobj(player.mo)
  77. ghost.fuse = 4
  78. ghost.color = 2
  79. end
  80.  
  81. if player.mo.hyperflashcolor > 30
  82. and player.mo.hyperflashcolor < 34
  83. player.mo.color = SKINCOLOR_ORANGE
  84. local ghost = P_SpawnGhostMobj(player.mo)
  85. ghost.fuse = 4
  86. ghost.color = 14
  87. end
  88.  
  89. if player.mo.hyperflashcolor > 33
  90. and player.mo.hyperflashcolor < 37
  91. player.mo.hyperflashcolor = 1
  92. player.mo.color = SKINCOLOR_SILVER
  93. local ghost = P_SpawnGhostMobj(player.mo)
  94. ghost.fuse = 4
  95. ghost.color = 2
  96. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement