Raw Script: Lucky Gambler
prontera.gat, 155, 185, 5 script Lucky Gambler 757,{
/*
Note:
Calculations:
100/50 = 2 so 2 is 50%
*/
// Required Item
.@item_ID = 501;
// .@item_List[0],<rates>,<item_id>,.........
setarray .@item_List[0],
2,5738,
20,5443,
25,2294,
30,5509,
50,5150
;
setarray .@item_Ann[0],
5738,
5443,
2294,
5509,
5150
;
mes "Do you want to use your "+getitemname( .@item_ID )+" to try and get something valuable items.";
next;
if( select("- Yes:- No")-1 ) close;
if( !countitem( .@item_ID ) ) {
mes "You don't have any "+getitemname( .@item_ID )+".";
mes "Please come back to me if you have it already.";
}
else {
delitem .@item_ID,1;
for( .@j = 0; .@j < getarraysize(.@item_List); .@j+= 2 ) {
if( rand(.@item_List[.@j]) == 1 ) {
getitem( .@item_List[.@j+1] ),1;
mes "Congratulations!";
for( .@i = 0; .@i < getarraysize(.@item_List); .@i++ ) {
if( .@item_List[.@j+1] == .@item_Ann[.@i] ) {
announce "[ Lucky Gambler ]: Player " + strcharinfo(0) +" has obtained "+ ((.@item_List[.@j]>=50)?"'Low'":"'High'") +" "+getitemname( .@item_List[.@j+1] )+" with ["+ (100/.@item_List[.@j]) +"%] Chance.",bc_all,0xBA55D3;
}
}
specialeffect 154;
close;
}
}
specialeffect 155;
mes "It's failed, sorry.";
}
close;
}