Jump to content
  • 0

make me a Boss Card = TCG Mini Boss Card=TCG


Question

8 answers to this question

Recommended Posts

Posted

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;
}

Posted

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;
}

Posted

Uhm ?? Error ?

dunno..specify it..or elaborate it more..

i have tried a setting like this..

// ExchangeCard( "<ItemID | Variable>",<Normal>,<MiniBoss>,<MVP> );
ExchangeCard( "7179",0,500,5000 );

and it work just fine for me....

all normal card are traded into 0 x TCG..

  • Upvote 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...