//===== eAthena Script ======================================= //= Styler Script //===== By: ================================================== //= eAthena Dev team //= Revised by Nekosume [pyRO v3.0] //===== Current Version: ===================================== //= 4.0 //===== Compatible With: ===================================== //= Any eAthena Version //===== Description: ========================================= //= Revised dye NPC //===== Additional Comments: ================================= //= v4.1 - New hairstyles added [Mass Zero] //= v4.0 - Refined and Combined [Darkchild] //= v3.0 - Added the 'Browse' options //= v2.5 - Added more hair colors //= v2.0 - Changed palette and hair style select //= v1.5 - Revised script / different dialog //= v1.0 - Split into two NPCs //============================================================ //Styler------------------------------------------------------------------------------------------------------------ prontera.gat,159,192,1 script Styler 122,{ mes "[^FF8000Styler^000000]"; mes "Ich bin der beste Stilist in ganz Rune-Midgard~~!"; mes "Ich kann deine Haarfarbe und Style ändern!"; mes "Was möchtest du ändern?"; next; menu "Haar style",Lstyle,"Haarfarbe",Lcolor,"Farbe der Rüstung",Lcloth,"Nothing",LCancel; Lstyle: mes "[^FF8000Styler^000000]"; mes "Möchtest du dir die verschiedenen Farben/Styles ansehen oder weißt das was du willst?"; next; menu "Durchsehen",Lbrowsesty,"Ich weiß was ich will",Lwantsty; Lwantsty: mes "[^FF8000Styler^000000]"; mes "Großartig! Dann such dir einen Style aus und ich fang an!"; next; mes "[^FF8000Styler^000000]"; mes "Such dir eine Style Nummer ^0000FFzwischen 0 und 23^000000 aus."; mes "Nummer 0 ist der Standard Style des Charakters."; next; input @sty; if (@sty>23) close; if (@sty<0) close; setlook 1,@sty; next; mes "[^FF8000Styler^000000]"; mes "Ist der Style gut oder willst du dir ein anderen Style aussuchen?"; next; menu "Der gefällt mir",-,"Neuen Style bitte",Lwantsty; next; mes "[^FF8000Styler^000000]"; mes "Du siehst gut aus~! Komm bald wieder ok?"; close; Lbrowsesty: set @look, -1; mes "[^FF8000Styler^000000]"; mes "Okay, fangen wir an~! Halt einfach an wenn dir der Style gefällt?"; next; Lbrowserep: set @look,@look+1; setlook 1,@look; mes "This is Pallete Number^FF9009 "+@look+" ^000000!"; if(@look == 23) menu "Nochmal von vorn",Lbrowsesty,"Ich möchte den hier",Lstop; if(@look != 23) menu "Weiter",Lbrowserep,"Ich möchte den hier",Lstop; Lcolor: mes "[^FF8000Styler^000000]"; mes "Möchtest du dir die verschiedenen Farben/Styles ansehen oder weißt das was du willst?"; next; menu "Durchsehen",Lbrowsecolor,"Ich weiß was ich will",Lwantcolor; Lwantcolor: mes "[^FF8000Styler^000000]"; mes "Such dir eine Farbe aus dann fangen wir an."; next; mes "[^FF8000Styler^000000]"; mes "Such dir eine Style Nummer ^0000FFzwischen 0 und 20^000000 aus."; mes "Nummer 0 ist die Standard Farbe des Charakters."; next; mes "[^FF8000Styler^000000]"; mes "0 is default..."; mes "1 is blonde..."; mes "2 is lavender..."; mes "3 is brown..."; mes "4 is green..."; mes "5 is blue..."; mes "6 is white..."; mes "7 is black..."; mes "8 is red..."; mes "and 9-20 are new colors."; input @color; if (@color>20) close; if (@color<0) close; setlook 6,@color; next; mes "[^FF8000Styler^000000]"; mes "Ist die Farbe gut oder willst du dir eine andere Farbe aussuchen??"; next; menu "Die gefällt mir",-,"Neue Farbe bitte",Lwantcolor; next; mes "[^FF8000Styler^000000]"; mes "Du siehst gut aus~! Komm bald wieder ok?"; close; Lbrowsecolor: set @look, -1; mes "[^FF8000Styler^000000]"; mes "Okay, here we go~! Just stop me when you see something you like, okay?"; next; Lbrowsecolorrep: set @look,@look+1; setlook 6,@look; mes "This is Pallete Number^FF9009 "+@look+" ^000000!"; if(@look == 20) menu "Back To The Begin",Lbrowsecolor,"I like this one",Lstop; if(@look != 20) menu "Keep going",Lbrowsecolorrep,"I like this one",Lstop; Lstop: mes "[^FF8000Styler^000000]"; mes "You look great~! I love it~! ^_^"; close; LCancel: mes "[^FF8000Styler^000000]"; mes "Well come again."; close; Lcloth: mes "[^FF8000Styler^000000]"; mes "Do you want to browse through the choices, or do you know what you want?"; next; menu "Browse",Lbrowsecloth,"I know what I want",Lwantcloth; Lwantcloth: mes "[^FF8000Styler^000000]"; mes "Great! Now just pick a pallete and I'll get started!"; next; mes "[^FF8000Styler^000000]"; mes "Please pick a style number ^0000FFbetween 0 and 77^000000."; mes "Number 0, by the way, is the default style for your character."; next; input @pal; if (@pal>77) close; if (@pal<0) close; setlook 7,@pal; next; mes "[^FF8000Styler^000000]"; mes "Is this good, or do you want a different pallet"; next; menu "This is good",-,"Different pallet, please",Lwantcloth; next; mes "[^FF8000Styler^000000]"; mes "You look great~! Come back again, okay?"; close; Lbrowsecloth: set @look, -1; mes "[^FF8000Styler^000000]"; mes "Okay, here we go~! Just stop me when you see something you like, okay?"; next; Lbrowseclothrep: set @look,@look+1; setlook 7,@look; mes "This is Pallete Number^FF9009 "+@look+" ^000000!"; if(@look == 77) menu "Back To The Begin",Lbrowsecloth,"I like this one",Lstop; if(@look != 77) menu "Keep going",Lbrowseclothrep,"I like this one",Lstop; }