try this
http://pastebin.com/raw.php?i=387ju2Cx
erm...i think i have posted this in forum before...maybe not..nvm......
you only need to edit this line
// ExchangeCard( "<ItemID | Variable>",<Normal>,<MiniBoss>,<MVP> );
ExchangeCard( "Zeny",5,500,5000 );
since you want it to be TCG...then just replace the Zeny with 7227 .... and the value behind it is the TCG they will get for those cards.
oh ya....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;
}