Jump to content
  • 0

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


Hades03

Question


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  242
  • Reputation:   3
  • Joined:  01/01/12
  • Last Seen:  

min boss card = 90 TCG

Boss Card = 180 TCG

Link to comment
Share on other sites

8 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  382
  • Reputation:   38
  • Joined:  01/17/12
  • Last Seen:  

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


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  242
  • Reputation:   3
  • Joined:  01/01/12
  • Last Seen:  

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  242
  • Reputation:   3
  • Joined:  01/01/12
  • Last Seen:  

Emistry

i want to remove the normal card

i need to see to 0 or what?

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

i think you can just simply set the value to 0 ...i dont think player will still try to exchange it when they cannot get any TCG for it.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  242
  • Reputation:   3
  • Joined:  01/01/12
  • Last Seen:  

if i set to 0 i cant talk to the npc wew can you fix it?

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

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...