I created a file which will exchange a certain item for zennies. Need help pls. on how to make this work
prontera,139,70,5, script VIP Box Agent 828,{
mes "[^000088 Mr. Credit ^000000]";
mes "I Can Change VIP Boxes to Zeny";
mes "Remember 1 VIP 3 Days= ^640000500,000z^000000.";
mes "and 1 VIP 7 Days Box is= ^6400001,000,000z^000000.";
mes "So what do you want?";
menu "3 Days Box To Zeny",-,"7 Days Box to Zeny",-,15c,"15 Days Box to Zeny",ztc;
next;
mes "[^000088 Mr. Credit ^000000]";
mes "Are you sure you want to exchange your 3 Days Box to Zeny?";
menu "Yes",-,"No",G_no;
next;
mes "[^000088 Mr. Credit ^000000]";
mes "How many Credits do you want to exchange?";
next;
input .@t;
if(countitem(12985) < .@t) goto L_NOTENOUGH;
mes "[^000088 Mr. Credit ^000000]";
mes "Thanks. . See you again. . . !";
delitem 12985,.@t;
set Zeny,Zeny+500000*.@t;
close;
15c:
next;
mes "[^000088 Mr. Credit ^000000]";
mes "Are you sure you want to exchange your 7 Days VIP Boxto Zeny?";
menu "Yes",-,"No",G_no;
next;
mes "[^000088 Mr. Credit ^000000";
mes "How many Boxes do you want to exchange?";
next;
input .@t;
if(countitem(12986) < .@t) goto L_NOTENOUGH2;
mes "[^000088 Mr. Credit ^000000]";
mes "Thanks. . See you again. . . !";
delitem 12986,.@t;
set Zeny,Zeny+1000000*.@t;
close;
ztc:
next;
mes "[^000088 Mr. Credit ^000000]";
mes "Are you sure you want to exchange your 15 Days VIP Boxto Zeny?";
menu "Yes",-,"No",G_no;
next;
mes "[^000088 Mr. Credit ^000000";
mes "How many Boxes do you want to exchange?";
next;
input .@t;
if(countitem(12984) < .@t) goto L_NOTENOUGH3;
mes "[^000088 Mr. Credit ^000000]";
mes "Thanks. . See you again. . . !";
delitem 12984,.@t;
set Zeny,Zeny+2000000*.@t;
close;
L_NOTENOUGH:
next;
mes "[^000088 ^000088 Mr. Credit ^000000]";
mes "You dont have it.";
close;
L_NOTENOUGH2:
next;
mes "[^000088 ^000088 Mr. Credit ^000000]";
mes "You dont have it.";
L_NOTENOUGH3:
next;
mes "[^000088 ^000088 Mr. Credit ^000000]";
mes "You dont have it.";
close;
G_no:
next;
mes "[^000088 ^000088 Mr. Credit ^000000]";
mes "Please use my service next time";
close;
end;
}