Someone can help to fix this script? After choosing roll the NPC got stocked up and the console tell that there's something wrong with the `rand` function not sure what is it and can you also give me an idea so that I can use it in the future as a reference thank you!
mes .name$;
mes (gettime(3)>= 6&&gettime(3)<= 12?"Good Morning":(gettime(3)>=13&&gettime(3)<=18?"Good afternoon":"Good Night"))+", ^FFA500"+strcharinfo(0)+"^000000!";
mes "shopping in the city?!";
mes "How about you try your luck here?";
next;
switch(select("^0055FFRoll Machine!^000000:Information:Cancel")){
case 1:
mes .name$;
mes "Are you sure you want to roll?";
next;
if(select("^0055FFYes, please!^000000:No, I'm afraid")==2) end;
L_RollAgain:
callsub OnPayMachine;
callsub OnRollMachine;
mes .name$;
mes "Would you like to try again?";
if(select("Try again!:Cancel")==2) end;
clear();
goto L_RollAgain;
break;
case 2:
mes .name$;
mes "To try your luck.";
mes "You need the following:";
if(.Zeny) mes "- ^0055FF"+callfunc("F_InsertComma",.Zeny)+"z^000000";
if(.ItemID[0])
for(.@i=0;.@i<getarraysize(.ItemID);.@i++)
mes "- ^0055FF"+.ItemAmt[.@i]+" "+getitemname(.ItemID[.@i])+"^000000";
if(.PointName$[0] != "")
for(.@i=0;.@i<getarraysize(.PointName$);.@i++)
mes "- ^0055FF"+.PointCost[.@i]+" "+.PointName$[.@i]+"^000000";
for(.@i=0;.@i<getarraysize(.Prizes);.@i+=3){
if(.@i%10 == 0){
next;
mes .name$;
mes "This are the prize list:";
}
mes "- <ITEM>"+.Prizes[.@i+1]+"x "+getitemname(.Prizes[.@i])+"<INFO>"+.Prizes[.@i]+"</INFO></ITEM>";
}
break;
case 3:
mes .name$;
mes callfunc("F_Bye");
mes "Come see me when you want to try your Machine!";
break;
}
end;
OnPayMachine:
if(.Zeny && Zeny < .Zeny)
.@error$[.@a++] = "- ^FF520000000Zeny^000000";
if(.ItemID[0])
for(.@i=0;.@i<getarraysize(.ItemID);.@i++)
if(countitem(.ItemID[.@i]) < .ItemAmt[.@i])
.@error$[.@a++] = "- ^FF520000000"+getitemname(.ItemID)+"^000000";
if(.PointName$[0] != "")
for(.@i=0;.@i<getarraysize(.PointName$);.@i++)
if(getd(.PointVar$[.@i]) < .PointCost[.@i])
.@error$[.@a++] = "- ^FF520000000"+.PointName$[.@i]+"^000000";
if(.@error$[0] == ""){
if(.Zeny)
Zeny -= .Zeny;
if(.ItemID[0])
for(.@i=0;.@i<getarraysize(.ItemID);.@i++)
delitem .ItemID[.@i],.ItemAmt[.@i];
if(.PointName$[0] != "")
for(.@i=0;.@i<getarraysize(.PointName$);.@i++)
setd .PointVar$[.@i],getd(.PointVar$[.@i])-.PointCost[.@i];
return;
}
mes .name$;
mes "Sorry but you don't have enough of the following:";
for(.@i=0;.@i<getarraysize(.@error$);.@i++)
mes .@error$[.@i];
end;
Question
ADMSarah
Someone can help to fix this script? After choosing roll the NPC got stocked up and the console tell that there's something wrong with the `rand` function not sure what is it and can you also give me an idea so that I can use it in the future as a reference thank you!
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.