Hatake Kakashi Posted February 13, 2012 Group: Members Topic Count: 254 Topics Per Day: 0.05 Content Count: 825 Reputation: 3 Joined: 11/14/11 Last Seen: June 25, 2021 Share Posted February 13, 2012 who have this palette for trans. job only? i have palette but 3rd job supported. thanks. Quote Link to comment Share on other sites More sharing options...
Emistry Posted February 13, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted February 13, 2012 i have palette but 3rd job supported. it mean you have the pallete already but it support 3rd job as well.. and you dont want the pallete for 3rd job.. ? you can just disable the 3rd job from using / changing to other pallete Quote Link to comment Share on other sites More sharing options...
Hatake Kakashi Posted February 13, 2012 Group: Members Topic Count: 254 Topics Per Day: 0.05 Content Count: 825 Reputation: 3 Joined: 11/14/11 Last Seen: June 25, 2021 Author Share Posted February 13, 2012 how to do that? Quote Link to comment Share on other sites More sharing options...
Emistry Posted February 13, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted February 13, 2012 in your stylist npc script...block 3rd job player from using the npc... and reset the palette colour upon job changed to 3rd job.... this would fulfil what you want to do Quote Link to comment Share on other sites More sharing options...
Hatake Kakashi Posted February 14, 2012 Group: Members Topic Count: 254 Topics Per Day: 0.05 Content Count: 825 Reputation: 3 Joined: 11/14/11 Last Seen: June 25, 2021 Author Share Posted February 14, 2012 Here's my Hairstyle Script. prontera,170,180,1 script Stylist#custom_stylist 122,{ mes "[^FF8000Stylist^000000]"; mes "I'm the greatest stylist in all of Rune-Midgard~~!"; mes "I can change your hair style or color!"; mes "What do you wish to change?"; next; menu "Hair style",Lstyle,"Hair color",Lcolor,"Cloth Color",Lcloth,"Nothing",LCancel; Lstyle: mes "[^FF8000Stylist^000000]"; mes "Do you want to browse through the choices, or do you know what you want?"; next; menu "Browse",Lbrowsesty,"I know what I want",Lwantsty; Lwantsty: mes "[^FF8000Stylist^000000]"; mes "Great! Now just pick a style and I'll get started!"; next; mes "[^FF8000Stylist^000000]"; mes "Please pick a style number ^0000FFbetween 0 and 37^000000."; mes "Number 0, by the way, is the default style for your character."; next; input @sty; if (@sty>37) close; if (@sty<0) close; setlook 1,@sty; next; mes "[^FF8000Stylist^000000]"; mes "Is this good, or do you want a different style?"; next; menu "This is good",-,"Different style, please",Lwantsty; next; mes "[^FF8000Stylist^000000]"; mes "You look great~! Come back again, okay?"; close; Lbrowsesty: set @look, -1; mes "[^FF8000Stylist^000000]"; mes "Okay, here we go~! Just stop me when you see something you like, okay?"; next; Lbrowserep: set @look,@look+1; setlook 1,@look; mes "This is Pallete Number^FF9009 "+@look+" ^000000!"; if(@look == 37) menu "Back To The Begin",Lbrowsesty,"I like this one",Lstop; if(@look != 37) menu "Keep going",Lbrowserep,"I like this one",Lstop; Lcolor: mes "[^FF8000Stylist^000000]"; mes "Do you want to browse through the choices, or do you know what you want?"; next; menu "Browse",Lbrowsecolor,"I know what I want",Lwantcolor; Lwantcolor: mes "[^FF8000Stylist^000000]"; mes "Just pick a color and we can get started."; next; mes "[^FF8000Stylist^000000]"; mes "Please pick a style number ^0000FFbetween 0 and 20^000000."; mes "Number 0, by the way, is the default color for your character."; next; mes "[^FF8000Stylist^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-263 are new colors."; input @color; if (@color>263) close; if (@color<0) close; setlook 6,@color; next; mes "[^FF8000Stylist^000000]"; mes "Is this good, or do you want a different color?"; next; menu "This is good",-,"Different color, please",Lwantcolor; next; mes "[^FF8000Stylist^000000]"; mes "You look great~! Come back again, okay?"; close; Lbrowsecolor: set @look, -1; mes "[^FF8000Stylist^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 == 263) menu "Back To The Begin",Lbrowsecolor,"I like this one",Lstop; if(@look != 263) menu "Keep going",Lbrowsecolorrep,"I like this one",Lstop; Lstop: mes "[^FF8000Stylist^000000]"; mes "You look great~! I love it~! "; close; LCancel: mes "[^FF8000Stylist^000000]"; mes "Well come again."; close; Lcloth: mes "[^FF8000Stylist^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 "[^FF8000Stylist^000000]"; mes "Great! Now just pick a pallete and I'll get started!"; next; mes "[^FF8000Stylist^000000]"; mes "Please pick a style number ^0000FFbetween 0 and 533^000000."; mes "Number 0, by the way, is the default style for your character."; next; input @pal; if (@pal>533) close; if (@pal<0) close; setlook 7,@pal; next; mes "[^FF8000Stylist^000000]"; mes "Is this good, or do you want a different pallet"; next; menu "This is good",-,"Different pallet, please",Lwantcloth; next; mes "[^FF8000Stylist^000000]"; mes "You look great~! Come back again, okay?"; close; Lbrowsecloth: set @look, -1; mes "[^FF8000Stylist^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 == 533) menu "Back To The Begin",Lbrowsecloth,"I like this one",Lstop; if(@look != 533) menu "Keep going",Lbrowseclothrep,"I like this one",Lstop; } Quote Link to comment Share on other sites More sharing options...
Emistry Posted February 14, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted February 14, 2012 add below the header of npc if( Upper > 3 ){ mes "3rd Job cant use this NPC."; close; } Quote Link to comment Share on other sites More sharing options...
Hatake Kakashi Posted February 14, 2012 Group: Members Topic Count: 254 Topics Per Day: 0.05 Content Count: 825 Reputation: 3 Joined: 11/14/11 Last Seen: June 25, 2021 Author Share Posted February 14, 2012 still got that problem xD Quote Link to comment Share on other sites More sharing options...
Fluffle Puff Posted February 14, 2012 Group: Members Topic Count: 29 Topics Per Day: 0.01 Content Count: 375 Reputation: 88 Joined: 12/30/11 Last Seen: May 3, 2016 Share Posted February 14, 2012 if (Upper >= 3) { mes "[^FF8000Stylist^000000]"; mes "3rd Job cant use this NPC."; close; } Quote Link to comment Share on other sites More sharing options...
Question
Hatake Kakashi
who have this palette for trans. job only?
i have palette but 3rd job supported.
thanks.
Link to comment
Share on other sites
7 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.