Ice Cream

This stuff has been addressed. If you want to add information or such, do so.
Post Reply
cometodru
Poporing
Poporing
Posts: 64
Joined: Wed Dec 30, 2009 2:31 am

Ice Cream

Post by cometodru »

So I thought it would be fun to buy Ice Creams to play around with in town. To my surprise, I can't buy ice cream from the ice cream NPC.
User avatar
Koma
Administrator
Administrator
Posts: 708
Joined: Sat Jul 25, 2009 7:05 pm

Re: Ice Cream

Post by Koma »

The problem lies here as well as with a faulty while loop:

Amount Input:

Code: Select all

		input .@input;
Weight Check:

Code: Select all

	if(checkweight(536,.@amount) == 0) {
		mes "[Ice Cream Maker]";
		mes "Dear customer,you look like you're carrying a lot.";
		mes "Ice Cream is fine,";
		mes "but you must consider your weight";
		mes "before making a purchase.";
		close;
	}
The amount is declared as ".@input" not ".@amount. This is a flaw in the official eA script: http://svn.eathena.ws/svn/ea/trunk/npc/ ... ecream.txt. Fixed as of this maintenance.
Post Reply