Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/23/25 in all areas

  1. Version 1.0.0

    25 downloads

    Thank you for Come Hereeeee!!! To download this sprite. I made this sprite during a YouTube tutorial Video reference:
    Free
    1 point
  2. 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
    1 point
  3. Yes you can //Examples setunitdata(getnpcid(0), UNPC_HAIRSTYLE, 2); setunitdata(getnpcid(0), UNPC_HAIRCOLOR, 5); setunitdata(getnpcid(0), UNPC_HEADTOP, 547); setunitdata(getnpcid(0), UNPC_HEADMIDDLE, 0); setunitdata(getnpcid(0), UNPC_HEADBOTTOM, 0); setunitdata(getnpcid(0), UNPC_CLOTHCOLOR, 1); setunitdata(getnpcid(0), UNPC_ROBE, 4);
    1 point
  4. Hi, put this in your OnInit: label setunitdata(getnpcid(0), UNPC_CLASS, 1); setunitdata(getnpcid(0), UNPC_SEX, 1); //0=female 1=male
    1 point
×
×
  • Create New...