Hi, can anybody make it receivable once a day per user account (not per character)?
And also if he already has more than 250 in his inventory, the NPC will refuse the giveaway.
izlude,144,121,3 script JohnDoe NPC::JohnDoe 1_M_MERCHANT,{
mes "[JohnDoe]";
mes "Do you need some Novice Potions?";
menu "Yes, please.",receive,"I don't need them for now, thank you.",refuse;
close;
receive:
mes "Here, take these.";
getitem 569,250;
next;
mes "Good luck!.";
close;
end;
refuse:
mes "Okay, good luck!";
close;
}
Thanks a bunch!
PS: Sorry for keep asking noob/stupid stuff.