Then you'll have to edit this part of the Script :
if(.@rand < 2 ) { // Jackpot Prize 1% win
mes "Congratulations you won the jackpot!!!";
set Zeny, Zeny+1000000;
}
else if(.@rand < 5) { Other Prize 5% win
mes "Congratulations you won consolation prize!!";
switch(rand(4)) {
case 0: getitem 985,4; break;
case 1: getitem 984,4; break;
case 2: set Zeny,Zeny+250000; break;
case 3: set Zeny,Zeny+500000; break;
}
}
else {
mes "Too bad you didn't win anything!!";
}
close;
}
to this part:
if(.@rand < 61) {
if(.@rand < 41) {
if(.@rand < 31) {
if(.@rand < 26) {
if(.@rand < 16) {
if(.@rand < 6) {
mes "Congratulations you won the Jackpot!!";
set Zeny, Zeny+1000000;
close;
}
mes "Congratulations you won consolation prize!!";
set Zeny, Zeny+300000;
close;
}
mes "Congratulations you won consolation prize!!";
set Zeny, Zeny+200000;
close;
}
mes "Congratulations you won consolation prize!!";
set Zeny, Zeny+100000;
close;
}
mes "Congratulations you won consolation prize!!";
getitem 984,5;
getitem 985,5;
close;
}
mes "Congratulations you won consolation prize!!";
getitem 984,2;
getitem 985,2;
close;
} else {
mes "Too bad,you didn't win anything!!";
close;
}