Advertisement
Guest User

Skiddys Appearance Changer V3 (SAC xd)

a guest
Jul 24th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Erlang 6.27 KB | None | 0 0
  1. @name Skiddys Appearance Changer V3
  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.     Cool = 5
  30. }
  31.     if(Cool==5){
  32.     owner():setColor(vec(255,0,0))
  33. }
  34. if(owner():lastSaid()=="/green" & chatClk(owner())){
  35.     hideChat(1)
  36.     Cool = 6
  37. }
  38.     if(Cool==6){
  39.     owner():setColor(vec(0,255,0))
  40. }
  41. if(owner():lastSaid()=="/blue" & chatClk(owner())){
  42.     hideChat(1)
  43.     Cool = 7
  44. }
  45.     if(Cool==7){
  46.     owner():setColor(vec(0,0,255))
  47. }
  48. if(owner():lastSaid()=="/yellow" & chatClk(owner())){
  49.     hideChat(1)
  50.     Cool = 8
  51. }
  52.     if(Cool==8){
  53.     owner():setColor(vec(255,255,0))
  54. }
  55. if(owner():lastSaid()=="/purple" & chatClk(owner())){
  56.     hideChat(1)
  57.     Cool = 9
  58. }
  59.     if(Cool==9){
  60.     owner():setColor(vec(130,0,255))
  61. }
  62. if(owner():lastSaid()=="/pink" & chatClk(owner())){
  63.     hideChat(1)
  64.     Cool = 10
  65. }
  66.     if(Cool==10){
  67.     owner():setColor(vec(255,0,255))
  68. }
  69. if(owner():lastSaid()=="/cyan" & chatClk(owner())){
  70.     hideChat(1)
  71.     Cool = 11
  72. }
  73.     if(Cool==11){
  74.     owner():setColor(vec(0,255,255))
  75. }
  76. if(owner():lastSaid()=="/orange" & chatClk(owner())){
  77.     hideChat(1)
  78.     Cool = 12
  79. }
  80.     if(Cool==12){
  81.     owner():setColor(vec(255,150,0))
  82. }
  83. if(owner():lastSaid()=="/brown" & chatClk(owner())){
  84.     hideChat(1)
  85.     Cool = 13
  86. }
  87.     if(Cool==13){
  88.     owner():setColor(vec(104,66,0))
  89. }
  90. if(owner():lastSaid()=="/gray" & chatClk(owner())){
  91.     hideChat(1)
  92.     Cool = 14
  93. }
  94.     if(Cool==14){
  95.     owner():setColor(vec(35,35,35))
  96. }
  97. if(owner():lastSaid()=="/black" & chatClk(owner())){
  98.     hideChat(1)
  99.     Cool = 15
  100. }
  101.     if(Cool==15){
  102.     owner():setColor(vec(0,0,0))
  103. }
  104. if(owner():lastSaid()=="/rainbow" & chatClk(owner())){
  105.     hideChat(1)
  106.     Cool = 3
  107. }
  108. if(Cool==3){
  109.     owner():setColor(hsv2rgb((curtime()*200)%360,1,1))
  110. }
  111. if(owner():lastSaid()=="/lsd" & chatClk(owner())){
  112.     hideChat(1)
  113.     Cool = 4
  114. }
  115. if(Cool==4){
  116.     owner():setColor(hsv2rgb((curtime()*25)%210,20,19))
  117. }
  118.  
  119. #Material Section
  120.  
  121. if(owner():lastSaid()=="/grass" & chatClk(owner())){
  122.     hideChat(1)
  123.     Maat = 1
  124. }
  125.     if(Maat==1){
  126.     owner():setMaterial("phoenix_storms/ps_grass")
  127. }
  128. if(owner():lastSaid()=="/water" & chatClk(owner())){
  129.     hideChat(1)
  130.     Maat = 2
  131. }
  132.     if(Maat==2){
  133.     owner():setMaterial("models/shadertest/shader3")
  134. }
  135. if(owner():lastSaid()=="/glass" & chatClk(owner())){
  136.     hideChat(1)
  137.     Maat = 3
  138. }
  139.     if(Maat==3){
  140.     owner():setMaterial("models/props_c17/frostedglass_01a")
  141. }
  142. if(owner():lastSaid()=="/yuckywater" & chatClk(owner())){
  143.     hideChat(1)
  144.     Maat = 4
  145. }
  146.     if(Maat==4){
  147.     owner():setMaterial("models/props_combine/tprings_globe")
  148. }
  149. if(owner():lastSaid()=="/heatrise" & chatClk(owner())){
  150.     hideChat(1)
  151.     Maat = 5
  152. }
  153.     if(Maat==5){
  154.     owner():setMaterial("models/spawn_effect")
  155. }
  156. if(owner():lastSaid()=="/blood" & chatClk(owner())){
  157.     hideChat(1)
  158.     Maat = 6
  159. }
  160.     if(Maat==6){
  161.     owner():setMaterial("models/flesh")
  162. }
  163. if(owner():lastSaid()=="/chrome" & chatClk(owner())){
  164.     hideChat(1)
  165.     Maat = 7
  166. }
  167.     if(Maat==7){
  168.     owner():setMaterial("phoenix_storms/scrnspace")
  169. }
  170. if(owner():lastSaid()=="/space" & chatClk(owner())){
  171.     hideChat(1)
  172.     Maat = 8
  173. }
  174.     if(Maat==8){
  175.     owner():setMaterial("models/props_lab/warp_sheet")
  176. }
  177. if(owner():lastSaid()=="/cobblestone" & chatClk(owner())){
  178.     hideChat(1)
  179.     Maat = 9    
  180. }
  181.     if(Maat==9){
  182.     owner():setMaterial("models/props/de_inferno/infflra")
  183. }
  184. if(owner():lastSaid()=="/wood" & chatClk(owner())){
  185.     hideChat(1)
  186.     Maat = 10
  187. }
  188.     if(Maat==10){
  189.     owner():setMaterial("phoenix_storms/wood")
  190. }
  191. if(owner():lastSaid()=="/slide" & chatClk(owner())){
  192.     hideChat(1)
  193.     Maat = 11
  194. }
  195.     if(Maat==11){
  196.     owner():setMaterial("models/effects/slimebubble_sheet")
  197. }
  198. if(owner():lastSaid()=="/glass2" & chatClk(owner())){
  199.     hideChat(1)
  200.     Maat = 12
  201. }
  202.     if(Maat==12){
  203.     owner():setMaterial("models/props_lab/xencrystal_sheet")
  204. }
  205. if(owner():lastSaid()=="/wire" & chatClk(owner())){
  206.     hideChat(1)
  207.     Maat = 13
  208. }
  209.     if(Maat==13){
  210.     owner():setMaterial("models/wireframe")
  211. }
  212. if(owner():lastSaid()=="/cloud" & chatClk(owner())){
  213.     hideChat(1)
  214.     Maat = 14
  215. }
  216.     if(Maat==14){
  217.         owner():setMaterial("models/props/cs_office/clouds")
  218. }
  219. if(owner():lastSaid()=="/money" & chatClk(owner())){
  220.     hideChat(1)
  221.     Maat = 15
  222. }
  223. if(owner():lastSaid()=="/bright" & chatClk(owner())){
  224.     hideChat(1)
  225.     Maat = 15
  226. }
  227. if(Maat==15){
  228.     owner():setMaterial("models/props/cs_assault/moneytop")
  229. }
  230. if(Maat==16){
  231.     owner():setMaterial("models/cs_italy/light_orange")
  232. }
  233. if(owner():lastSaid()=="/tron" & chatClk(owner())){
  234.     owner():setMaterial("models/dav0r/hoverball")
  235. }
  236.  
  237.  
  238.  
  239.  
  240. #[
  241. Commands:
  242.  
  243.  
  244. Colors:
  245.  
  246. /red
  247. /green
  248. /blue
  249. /yellow
  250. /orange
  251. /purple
  252. /pink
  253. /gray
  254. /black
  255. /cyan
  256. /brown
  257. /rainbow
  258. /lsd
  259.  
  260.  
  261. Materials:
  262.  
  263. /grass
  264. /glass
  265. /glass2
  266. /water
  267. /yuckywater
  268. /heatrise
  269. /blood
  270. /chrome
  271. /space
  272. /cobblestone
  273. /wood
  274. /slide
  275. /cloud
  276. /wire
  277. /money
  278. /tron
  279. /bright
  280.  
  281.  
  282.  
  283.  
  284. Terms and Conditions:
  285.  
  286. Using this E2 and/or saving it results in you aggreeing to the terms and conditions.
  287. Regardless any change to the code you still aggree to my terms and only mine.
  288.  
  289. My Terms:
  290.  
  291. 1. Don't use this if you don't have builder of any kind or Vip Emerald
  292. 2. You use this completely at your own risk
  293. 3. If you get in trouble for anything related to this E2 it's completely your own fault.
  294. 4. You can share this E2 to other people, but it's at your own risk, and at your own
  295. risk only, none of mine. I recommend NOT sharing this to people without builder or similar
  296. 5. Please don't minge.
  297. 6. Don't blame me for getting punished because of your actions if you ever do get punished.
  298. 7. You can message me on Steam, Discord or In-Game if you want a new material, color etc.
  299. 8. Even if you never read any of this, you still aggree to them.
  300. 9. Have Fun!
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310. Made by Skiddy
  311.  
  312. #]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement