If I already have 10003. how can I avoid drawing 10003 again in the next draw? is it possible that when I draw 10003 again it will be automatically replaced with 10005 for me。
Please help me. I've been thinking about it for a week.
lasagna,142,271,3 script Homi 4_ep18_imril,{
mes "[Homi]";
mes "hello";
next;
menu " - ^E63946yeah^000000",caihonghj," - no",caihongfj;
caihonghj:
set .@i,rand(0,(getarraysize($@Chzhili)-1));
if (countitem(12384) < 1){
mes "[Homi]";
mes "oh no!";
close;
end;
}
mes "[Homi]";
mes "haha!";
next;
getitem $@Chzhili[.@i],1;
mes "[Homi]";
mes "you get"+getitemname($@Chzhili[.@i])+" x 1";
close;
end;
caihongfj:
delitem 12384,1;
getitem 12385,1;
close;
end;
OnInit:
setarray $@Chzhili[0], 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007;
end;
}
Question
miaodiao
Hello everyone, I have a question for you all(My English is so bad , this was translated through Deelp)
I made a script for a raffle. And set up the array:
setarray $@Chzhili[0], 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007;
If I already have 10003. how can I avoid drawing 10003 again in the next draw? is it possible that when I draw 10003 again it will be automatically replaced with 10005 for me。
Please help me. I've been thinking about it for a week.
lasagna,142,271,3 script Homi 4_ep18_imril,{ mes "[Homi]"; mes "hello"; next; menu " - ^E63946yeah^000000",caihonghj," - no",caihongfj; caihonghj: set .@i,rand(0,(getarraysize($@Chzhili)-1)); if (countitem(12384) < 1){ mes "[Homi]"; mes "oh no!"; close; end; } mes "[Homi]"; mes "haha!"; next; getitem $@Chzhili[.@i],1; mes "[Homi]"; mes "you get"+getitemname($@Chzhili[.@i])+" x 1"; close; end; caihongfj: delitem 12384,1; getitem 12385,1; close; end; OnInit: setarray $@Chzhili[0], 10000, 10001, 10002, 10003, 10004, 10005, 10006, 10007; end; }
Link to comment
Share on other sites
4 answers 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.