diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-27 18:45:08 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-27 18:45:08 +0000 |
commit | 831b2af00700f9a957c46393d3cf476460f4ae0f (patch) | |
tree | 826dc2c632f8c0dd68de76cfd79f2016b9b51013 /npc/custom | |
parent | 0c383f7dceb08793b79a7307351af2eaf55ba104 (diff) | |
download | hercules-831b2af00700f9a957c46393d3cf476460f4ae0f.tar.gz hercules-831b2af00700f9a957c46393d3cf476460f4ae0f.tar.bz2 hercules-831b2af00700f9a957c46393d3cf476460f4ae0f.tar.xz hercules-831b2af00700f9a957c46393d3cf476460f4ae0f.zip |
* Updated custom Stylist with 'getbattleflag', so no user configuration is required, credits to Saithis (custom\stylist.txt)
* Replaced effect numerics with constants in Ex. Super Novice script (re\jobs\novice\supernovice_ex.txt)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16511 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom')
-rw-r--r-- | npc/custom/stylist.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/npc/custom/stylist.txt b/npc/custom/stylist.txt index 73c20a206..fa552ce6d 100644 --- a/npc/custom/stylist.txt +++ b/npc/custom/stylist.txt @@ -3,17 +3,18 @@ //===== By: ================================================== //= Euphy //===== Current Version: ===================================== -//= 1.0 +//= 1.1 //===== Compatible With: ===================================== //= rAthena SVN //===== 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 122,{ - setarray .@Styles[1],553,37,250; // Maximum dye, hair style, and hair color - + 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; |