Advertisement
Guest User

Skiddys Appearance Changer V2 - E2 File

a guest
Jul 24th, 2019
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Erlang 4.61 KB | None | 0 0
  1. @name Skiddys Appearance Changer V2
  2. @persist Cool
  3. interval(1)
  4. runOnChat(1)
  5.  
  6. if((owner():lastSaid()=="/debug") & chatClk(owner())){
  7.     hideChat(1)
  8.     Cool = 1
  9. }
  10.  
  11. if(Cool==1){
  12.     owner():setMaterial("models/debug/debugwhite")
  13. }
  14. if((owner():lastSaid()=="/normal") & chatClk(owner())){
  15.     hideChat(1)
  16.     Cool = 2
  17. }
  18. if(Cool==2){
  19.     owner():setColor(vec(255))
  20.     owner():setMaterial("")
  21. }
  22.  
  23.  
  24.  
  25. #Color Section (most of them atleast)
  26.  
  27. if(owner():lastSaid()=="/red" & chatClk(owner())){
  28.     hideChat(1)
  29.     owner():setColor(vec(255,0,0))
  30. }
  31. if(owner():lastSaid()=="/green" & chatClk(owner())){
  32.     hideChat(1)
  33.     owner():setColor(vec(0,255,0))
  34. }
  35. if(owner():lastSaid()=="/blue" & chatClk(owner())){
  36.     hideChat(1)
  37.     owner():setColor(vec(0,0,255))
  38. }
  39. if(owner():lastSaid()=="/yellow" & chatClk(owner())){
  40.     hideChat(1)
  41.     owner():setColor(vec(255,255,0))
  42. }
  43. if(owner():lastSaid()=="/purple" & chatClk(owner())){
  44.     hideChat(1)
  45.     owner():setColor(vec(130,0,255))
  46. }
  47. if(owner():lastSaid()=="/pink" & chatClk(owner())){
  48.     hideChat(1)
  49.     owner():setColor(vec(255,0,255))
  50. }
  51. if(owner():lastSaid()=="/cyan" & chatClk(owner())){
  52.     hideChat(1)
  53.     owner():setColor(vec(0,255,255))
  54. }
  55. if(owner():lastSaid()=="/orange" & chatClk(owner())){
  56.     hideChat(1)
  57.     owner():setColor(vec(255,150,0))
  58. }
  59. if(owner():lastSaid()=="/brown" & chatClk(owner())){
  60.     hideChat(1)
  61.     owner():setColor(vec(104,66,0))
  62. }
  63. if(owner():lastSaid()=="/gray" & chatClk(owner())){
  64.     hideChat(1)
  65.     owner():setColor(vec(35,35,35))
  66. }
  67. if(owner():lastSaid()=="/black" & chatClk(owner())){
  68.     hideChat(1)
  69.     owner():setColor(vec(0,0,0))
  70. }
  71. if(owner():lastSaid()=="/rainbow" & chatClk(owner())){
  72.     hideChat(1)
  73.     owner():setColor(hsv2rgb((curtime()*200)%360,1,1))
  74. }
  75. if(owner():lastSaid()=="/lsd" & chatClk(owner())){
  76.     hideChat(1)
  77.     owner():setColor(hsv2rgb((curtime()*25)%210,20,19))
  78. }
  79.  
  80.  
  81. #Material Section
  82.  
  83. if(owner():lastSaid()=="/grass" & chatClk(owner())){
  84.     hideChat(1)
  85.     owner():setMaterial("phoenix_storms/ps_grass")
  86. }
  87. if(owner():lastSaid()=="/water" & chatClk(owner())){
  88.     hideChat(1)
  89.     owner():setMaterial("models/shadertest/shader3")
  90. }
  91. if(owner():lastSaid()=="/glass" & chatClk(owner())){
  92.     hideChat(1)
  93.     owner():setMaterial("models/props_c17/frostedglass_01a")
  94. }
  95. if(owner():lastSaid()=="/yuckywater" & chatClk(owner())){
  96.     hideChat(1)
  97.     owner():setMaterial("models/props_combine/tprings_globe")
  98. }
  99. if(owner():lastSaid()=="/heatrise" & chatClk(owner())){
  100.     hideChat(1)
  101.     owner():setMaterial("models/spawn_effect")
  102. }
  103. if(owner():lastSaid()=="/blood" & chatClk(owner())){
  104.     hideChat(1)
  105.     owner():setMaterial("models/flesh")
  106. }
  107. if(owner():lastSaid()=="/chrome" & chatClk(owner())){
  108.     hideChat(1)
  109.     owner():setMaterial("phoenix_storms/scrnspace")
  110. }
  111. if(owner():lastSaid()=="/space" & chatClk(owner())){
  112.     hideChat(1)
  113.     owner():setMaterial("models/props_lab/warp_sheet")
  114. }
  115. if(owner():lastSaid()=="/cobblestone" & chatClk(owner())){
  116.     hideChat(1)
  117.     owner():setMaterial("models/props/de_inferno/infflra")
  118. }
  119. if(owner():lastSaid()=="/wood" & chatClk(owner())){
  120.     hideChat(1)
  121.     owner():setMaterial("phoenix_storms/wood")
  122. }
  123. if(owner():lastSaid()=="/slide" & chatClk(owner())){
  124.     hideChat(1)
  125.     owner():setMaterial("models/effects/slimebubble_sheet")
  126. }
  127. if(owner():lastSaid()=="/glass2" & chatClk(owner())){
  128.     hideChat(1)
  129.     owner():setMaterial("models/props_lab/xencrystal_sheet")
  130. }
  131.  
  132.  
  133.  
  134. #[
  135. Commands:
  136.  
  137.  
  138. Colors:
  139.  
  140. /red
  141. /green
  142. /blue
  143. /yellow
  144. /orange
  145. /purple
  146. /pink
  147. /gray
  148. /black
  149. /cyan
  150. /brown
  151. /rainbow
  152. /lsd
  153.  
  154.  
  155. Materials:
  156.  
  157. /grass
  158. /glass
  159. /glass2
  160. /water
  161. /yuckywater
  162. /heatrise
  163. /blood
  164. /chrome
  165. /space
  166. /cobblestone
  167. /wood
  168. /slide
  169.  
  170.  
  171. Terms and Conditions:
  172.  
  173. Using this E2 and/or saving it results in you aggreeing to the terms and conditions.
  174. Regardless any change to the code you still aggree to my terms and only mine.
  175.  
  176. My Terms:
  177.  
  178. 1. Don't use this if you don't have builder of any kind or Vip Emerald
  179. 2. You use this completely at your own risk
  180. 3. If you get in trouble for anything related to this E2 it's completely your own fault.
  181. 4. You can share this E2 to other people, but it's at your own risk, and at your own
  182. risk only, none of mine. I recommend NOT sharing this to people without builder or similar
  183. 5. Please don't minge.
  184. 6. Don't blame me for getting punished because of your actions if you ever do get punished.
  185. 7. You can message me on Steam, Discord or In-Game if you want a new material, color etc.
  186. 8. Even if you never read any of this, you still aggree to them.
  187. 9. Have Fun!
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197. Made by Skiddy
  198.  
  199. #]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement