Hades03 Posted May 21, 2012 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 242 Reputation: 3 Joined: 01/01/12 Last Seen: August 14, 2015 Share Posted May 21, 2012 min boss card = 90 TCG Boss Card = 180 TCG Quote Link to comment Share on other sites More sharing options...
Emistry Posted May 22, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2370 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted May 22, 2012 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; } Quote Link to comment Share on other sites More sharing options...
Bahmut Posted May 21, 2012 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 382 Reputation: 39 Joined: 01/17/12 Last Seen: February 13, 2020 Share Posted May 21, 2012 Could you please write a description of the script you are requesting? I don't know what you want. Quote Link to comment Share on other sites More sharing options...
Hades03 Posted May 22, 2012 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 242 Reputation: 3 Joined: 01/01/12 Last Seen: August 14, 2015 Author Share Posted May 22, 2012 Emistry Quote Link to comment Share on other sites More sharing options...
Emistry Posted May 22, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2370 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted May 22, 2012 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; } Quote Link to comment Share on other sites More sharing options...
Hades03 Posted May 22, 2012 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 242 Reputation: 3 Joined: 01/01/12 Last Seen: August 14, 2015 Author Share Posted May 22, 2012 Emistry i want to remove the normal card i need to see to 0 or what? Quote Link to comment Share on other sites More sharing options...
Emistry Posted May 22, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2370 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted May 22, 2012 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. Quote Link to comment Share on other sites More sharing options...
Hades03 Posted May 22, 2012 Group: Members Topic Count: 81 Topics Per Day: 0.02 Content Count: 242 Reputation: 3 Joined: 01/01/12 Last Seen: August 14, 2015 Author Share Posted May 22, 2012 if i set to 0 i cant talk to the npc wew can you fix it? Quote Link to comment Share on other sites More sharing options...
Emistry Posted May 24, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2370 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted May 24, 2012 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.. 1 Quote Link to comment Share on other sites More sharing options...
Question
Hades03
min boss card = 90 TCG
Boss Card = 180 TCG
Link to comment
Share on other sites
8 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.