Thank you,sir. I'll try editing and will test if what I did is correct and working.
So I did what you've told me to edit, the npc appeared at prontera, but the problem now, it doesn't count the items even if I have them on my inventory.
It keeps on saying that I don't have enough items.
So here's the edited version,
prontera,148,181,7 script Homunculus Master 750,{
mes "[Homunculus Master]";
mes "Hi, I can ^000120evolve your homunculus.^000000";
next;
menu "^000090Evolve mine please.^000000..",-, "Nevermind!",M_DO;
mes "[Homunculus Master]";
mes "Are you sure you want to do this?";
mes "But before I evolve your homunculus,";
mes "You need the following items first:";
mes "5 Stone of Sage";
mes "1 P Sage Ring";
mes "10 Gold Coins";
next;
if(select("Evolve it:Cancel")==2) goto M_END;
if(countitem(29111) < 1 || countitem(12040) < 5 || countitem(671) < 10 || gethominfo(1) != 6001 || gethominfo(1) != 6002 || gethominfo(1) != 6003 || gethominfo(1) != 6004 || gethominfo(1) != 6005 || gethominfo(1) != 6006 || gethominfo(1) != 6007 || gethominfo(1) != 6008 || gethominfo(1) != 6009 || gethominfo(1) != 6010 || gethominfo(1) != 6011 || gethominfo(1) != 6012 || gethominfo(1) != 6013 || gethominfo(1) != 6014 || gethominfo(1) != 6015 || gethominfo(1) != 6016) {
mes "[Jan]";
mes "You don't have enough times, please come back soon.";
close;
} else {
mes "[Homunculus Master]";
mes "Well then,";
mes "You have all the required items";
mes "I'm going to evolve your homunculus now. Silence, please.";
next;
mes "[Homunculus Master]";
mes "Abra cadabra, poof paph, HsoaS JAiSa hocuS pocuS";
next;
mes "[Homunculus Master]";
mes "ashuhauh, Kuzuri Poof!";
mes "Turn into an older homunculus";
atcommand "@homfriendly 1000";
delitem 29111,1;
delitem 12040,5;
delitem 671,10;
homevolution;
close;
}
M_DO:
mes "[Homunculus Master]";
mes "Comeback when you need my services.";
close;
M_END:
mes "[Homunculus Master]";
mes "See you!";
emotion e_yawn;
close;
}
I don't know what's wrong with my edit tho.