swt ....already told you in previous post....
make sure you check at this part also...add in the other mvp / miniboss / restricted card id here
function DetermineCard {
// Restricted Card
setarray .@CardLists,4001,4002,4003,4004;
for( set .@i,0; .@i < getarraysize( .@CardLists ); set .@i,.@i + 1 )
if( getarg(0) == .@CardLists[.@i] ){
mes "This Card is Forbidden.";
close;
}
// MVP Card
setarray .@CardLists,4342,4359,4357,4361,4363,4365,4367;
for( set .@i,0; .@i < getarraysize( .@CardLists ); set .@i,.@i + 1 )
if( getarg(0) == .@CardLists[.@i] )
return 3;
// MiniBoss
setarray .@CardLists,4197,4211,4201,4188,4183,4184;
for( set .@i,0; .@i < getarraysize( .@CardLists ); set .@i,.@i + 1 )
if( getarg(0) == .@CardLists[.@i] )
return 2;
// Others
return 1;
}