Hey @sader1992,
In this bit (line 29), I think you mistakenly reused .@i where you could've used something else like .@j. It is, obviously, causing some problems when the categories have an item reward.
if(getd(".IRD_" + .@i)){
for(.@i=0;.@i<getarraysize(getd(".IRD_" + .@i));.@i++){
getitem(getd(".IRD_" + .@i + "[" + .@i + "]"),getd(".CRD_" + .@i + "[" + .@i + "]"));
}
}
I appreciate you rewriting this script, though. I find it more flexible than the previous version.