[Help]Hairstyle

Junior Spellweaver
Joined
Jan 19, 2006
Messages
102
Reaction score
0
I thought maybe someone here will help me tell the code for hairstyle. i have them implented but i can't change the look of it :S maybe someone would help?
Then i can release a new server.
 
for the NPC barber here is the code but not complete.
if (CLNPC == 7330) //Barber
{
if (_NPCcontrol == 0)
{
CmdNPC.Say("Now I can offer two types of hirstryles: New styles and");
CmdNPC.Say("nostalgic styles. Would you like to spend 500 silvers to");
CmdNPC.Say("make a change?");
CmdNPC.Link("New styles.", 1);
CmdNPC.Link("Nostalgic styles.", 2);
CmdNPC.Link("Keep my current style.", 255);
CmdNPC.Finish();

if (_NPCcontrol == 1)
{
CmdNPC.Say("Whitch style would you like to select From?");
CmdNPC.Link("New HairStylr01", 3);
CmdNPC.Link("New HairStylr02", 4);
CmdNPC.Link("New HairStylr03", 5);
CmdNPC.Link("New HairStylr04", 6);
CmdNPC.Link("New HairStylr05", 7);
CmdNPC.Link("New HairStylr06", 8);
CmdNPC.Link("New HairStylr07", 9);
CmdNPC.Link("Next.", 10);
CmdNPC.Finish();
}
if (_NPCcontrol == 2)
{
CmdNPC.Say("Whitch style would you like to select From?");
CmdNPC.Link("Nostalgic13", 13);
CmdNPC.Link("Nostalgic14", 14);
CmdNPC.Link("Nostalgic15", 15);
CmdNPC.Link("Nostalgic15", 16);
CmdNPC.Link("Nostalgic17", 17);
CmdNPC.Link("Nostalgic18", 18);
CmdNPC.Link("Bald head", 19);
CmdNPC.Link("I change my mind..", 10);
CmdNPC.Finish();
}
if (_NPCcontrol == 10)
CmdNPC.Say("Whitch style would you like to select From?");
CmdNPC.Link("New HairStylr09", 11);
CmdNPC.Link("New HairStylr010", 12);
CmdNPC.Link("Previous.", 1);
Just to help although its off-topic.
 
Back