All i want is to make the quest 10 times usage per character
Here is my Script >>
prontera,156,170,5 script Weight Quest 416,{
set .npcname$,"^0000EE[Weight Quest]^000000";
set .MaxWeight,500;
set @req$,"^FF030DRequirements :^000000";
if(QWeight == 10) goto Q_END;
mes "[Warning]";
mes "This Quest is 10 Time's Only & Per Account";
mes "Before Using";
mes "This Weight Increase Sets For Ever in Your Char";
mes "Next to Proceed";
next;
mes .npcname$;
mes "This Quest is 10 Time's Only & Per Account";
mes "^0276FD[~Requirements]^000000";
mes "^0276FD[250pcs]^000000 Handcuff's";
mes "^0276FD[250pcs]^000000 Bank Note's";
mes "+ [^0000EE"+.MaxWeight+"^000000] Weight Each Quest";
menu "I have the requirements",Q_START,"Cancel",Q_CANCEL;
close;
Q_START:
next;
mes .npcname$;
mes "Hello there "+strcharinfo(0);
mes "Are You Ready!?";
menu "Increase Now! +500 Weights",Q_START2,"Cancel",Q_CANCEL;
close;
Q_START2:
if((countitem(7345)<250) ||
(countitem(501)<250))
goto Q_REQ;
delitem 7345,250;
delitem 501,250;
set MaxWeight,MaxWeight+5000;
set QWeight,1;
dispbottom "Increased Weight by "+.MaxWeight+"";
close;
Q_REQ:
next;
mes .npcname$;
mes "This Quest is 10 Time's Only & Per Account";
mes "Complete The Requirements First";
close;
Q_END:
next;
mes .npcname$;
mes "This Quest is 10 Time's Only & Per Account";
mes "Limit Exceed";
close;
Q_CANCEL:
next;
mes .npcname$;
mes "Ok "+strcharinfo(0);
mes "Come Back Again";
close;
OnInit:
waitingroom "Weight Quest",0;
end;
}
close;
}
i try to use my script but when ive got 10 times finished the quets by my one character
and ive try to use my second char it says already did the quest =.=