Jump to content
  • 0
Hades03

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

Question

8 answers to this question

Recommended Posts

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 [email protected],4001,4002,4003,4004;
for( set [email protected],0; [email protected] < getarraysize( [email protected] ); set [email protected],[email protected] + 1 )
if( getarg(0) == [email protected][[email protected]] ){
mes "This Card is Forbidden.";
close;
}

// MVP Card
setarray [email protected],4342,4359,4357,4361,4363,4365,4367;
for( set [email protected],0; [email protected] < getarraysize( [email protected] ); set [email protected],[email protected] + 1 )
if( getarg(0) == [email protected][[email protected]] )
return 3;

// MiniBoss
setarray [email protected],4197,4211,4201,4188,4183,4184;
for( set [email protected],0; [email protected] < getarraysize( [email protected] ); set [email protected],[email protected] + 1 )
if( getarg(0) == [email protected][[email protected]] )
return 2;

// Others
return 1;
}

Link to comment
Share on other sites

Could you please write a description of the script you are requesting? I don't know what you want.

Link to comment
Share on other sites

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 [email protected],4001,4002,4003,4004;
for( set [email protected],0; [email protected] < getarraysize( [email protected] ); set [email protected],[email protected] + 1 )
if( getarg(0) == [email protected][[email protected]] ){
mes "This Card is Forbidden.";
close;
}

// MVP Card
setarray [email protected],4342,4359,4357,4361,4363,4365,4367;
for( set [email protected],0; [email protected] < getarraysize( [email protected] ); set [email protected],[email protected] + 1 )
if( getarg(0) == [email protected][[email protected]] )
return 3;

// MiniBoss
setarray [email protected],4197,4211,4201,4188,4183,4184;
for( set [email protected],0; [email protected] < getarraysize( [email protected] ); set [email protected],[email protected] + 1 )
if( getarg(0) == [email protected][[email protected]] )
return 2;

// Others
return 1;
}

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.