diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-05 11:34:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-05-14 00:57:16 +0300 |
commit | 3f51713e4e8a1f5d1ad191d5355857b693b2a931 (patch) | |
tree | 1d822b545ad583135f31cf22be49e88beee3abab /npc/custom/stylist.txt | |
parent | 93239a58ba253b03d5aade35c47c144b24e129dd (diff) | |
download | hercules-3f51713e4e8a1f5d1ad191d5355857b693b2a931.tar.gz hercules-3f51713e4e8a1f5d1ad191d5355857b693b2a931.tar.bz2 hercules-3f51713e4e8a1f5d1ad191d5355857b693b2a931.tar.xz hercules-3f51713e4e8a1f5d1ad191d5355857b693b2a931.zip |
Remove conf dir.
Diffstat (limited to 'npc/custom/stylist.txt')
-rw-r--r-- | npc/custom/stylist.txt | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/npc/custom/stylist.txt b/npc/custom/stylist.txt deleted file mode 100644 index 0ee7d8822..000000000 --- a/npc/custom/stylist.txt +++ /dev/null @@ -1,34 +0,0 @@ -//===== Hercules Script ====================================== -//= Stylist -//===== By: ================================================== -//= Euphy -//===== Current Version: ===================================== -//= 1.1 -//===== Description: ========================================= -//= Changes your hair style, hair color, and cloth color. -//===== Additional Comments: ================================= -//= 1.1 Switched to 'getbattleflag', credits to Saithis. [Euphy] -//============================================================ - -prontera,170,180,1 script Stylist#custom_stylist 2_M_DYEINGER,{ - - setarray .@styles[1],getbattleflag("max_cloth_color"),getbattleflag("max_hair_style"),getbattleflag("max_hair_color"); - setarray .@Look[1],7,1,6; - set .@s, select(" ~ Cloth color", " ~ Hairstyle", " ~ Hair color"); - set .@Revert, getlook(.@Look[.@s]); - set .@style,1; - while(1) { - setlook .@Look[.@s], .@style; - message strcharinfo(PC_NAME),"This is style #"+.@style+"."; - set .@menu$, " ~ Next (^0055FF"+((.@style!=.@styles[.@s])?.@style+1:1)+"^000000): ~ Previous (^0055FF"+((.@style!=1)?.@style-1:.@styles[.@s])+"^000000): ~ Jump to...: ~ Revert to original (^0055FF"+.@Revert+"^000000)"; - switch(select(.@menu$)) { - case 1: set .@style, ((.@style!=.@styles[.@s])?.@style+1:1); break; - case 2: set .@style, ((.@style!=1)?.@style-1:.@styles[.@s]); break; - case 3: message strcharinfo(PC_NAME),"Choose a style between 1 - "+.@styles[.@s]+"."; - input .@style,0,.@styles[.@s]; - if (!.@style) set .@style, rand(1,.@styles[.@s]); - break; - case 4: set .@style, .@Revert; setlook .@Look[.@s], .@Revert; break; - } - } -} |