as the title says, is there any way I can change the gender of my npc since i'm currently using the 'player' sprite. For example, mine i'm using a swordsman sprite but it's a female.
here's the full script:
//==================================================
//Walking NPC player sprite
//==================================================
// - Gepard
//==================================================
prontera,156,180,0 script Bonita 1,{ // the number 1 here is the swordsman sprite female with the default hairstyle
end;
OnInit:
setarray .Message$[0],"Bonita: Hi there!",
"",
"",
"Bonita: Don't mind me",
"",
"Bonita: I'm just looking around",
"",
"Bonita: Hmm..";
while( 1 ){
if(.Count >= getarraysize( .Message$))
.Count = 0;
npcwalkto rand(150,160),rand(175,186);
npctalk .Message$[ .Count];
.Count++;
sleep rand(3000,5000);
}
end;
}
please help i want to change the gender to male