diff options
author | mekolat <mekolat@gmail.com> | 2014-10-23 00:22:49 -0400 |
---|---|---|
committer | mekolat <mekolat@gmail.com> | 2014-10-23 00:22:49 -0400 |
commit | fc48c7a7ee9f99b381da0aec023eaa45f42fdcbf (patch) | |
tree | 16928b6674c70098acb7d5d09801bcad3ab1a09d /world | |
parent | f6ea0570134ad364006c4d70c98dd15b2a059ed0 (diff) | |
download | serverdata-fc48c7a7ee9f99b381da0aec023eaa45f42fdcbf.tar.gz serverdata-fc48c7a7ee9f99b381da0aec023eaa45f42fdcbf.tar.bz2 serverdata-fc48c7a7ee9f99b381da0aec023eaa45f42fdcbf.tar.xz serverdata-fc48c7a7ee9f99b381da0aec023eaa45f42fdcbf.zip |
remove unused heads and colors
Diffstat (limited to 'world')
-rw-r--r-- | world/map/npc/functions/headstyles.txt | 33 |
1 files changed, 2 insertions, 31 deletions
diff --git a/world/map/npc/functions/headstyles.txt b/world/map/npc/functions/headstyles.txt index cdba58fc..f79e97fe 100644 --- a/world/map/npc/functions/headstyles.txt +++ b/world/map/npc/functions/headstyles.txt @@ -14,41 +14,12 @@ function|script|getHeadStyles|, "Short and curly", "Pigtails", "Long and curly", "Parted", "Perky ponytail", "Wave", "Mane", "Bun", "Shoulder Length Flick", "Fizzy", "Long and Clipped"; - - if(Class == 1) // TRITAN (fish) - setarray @HairStyles$, - "no fins", "fins 1", "fins 2", "fins 3", "fins 4"; - - if(Class == 2) // GISPAAN (demon) - setarray @HairStyles$, - "no horns", "horns 1", "horns 2", "horns 3", "horns 4", "horns 5"; - - if(Class == 3) // SPARRON (orc) - setarray @HairStyles$, - "bald"; - if(Class == 0) setarray @HairColors$, // TALPONIAN (human) "Brunette", "Green", "Dark red", "Light purple", "Gray", "Blonde", "Teal", "Light red", "Blue", "Dark purple", "Black", "Pink", "Brown";//, "(free slot)", "(free slot)"; - - if(Class == 1) // TRITAN (fish) - setarray @HairColors$, - "Green", "Blue", "Light blue", "Dark purple", "Black";//, "(free slot)", - //"(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)", - //"(free slot)", "(free slot)", "(free slot)"; - - if(Class == 2) // GISPAAN (demon) - setarray @HairColors$, - "Light brown", "Red", "Gray", "Yellow", "Light red";//, "(free slot)", - //"(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)", - //"(free slot)", "(free slot)", "(free slot)"; - - if(Class == 3) // SPARRON (orc) - setarray @HairColors$, - "(no colors yet)";//, "(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)", - //"(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)", - //"(free slot)", "(free slot)", "(free slot)"; + + // adding a new species is as simple as adding another if(Class == X) return; } |