skymia Posted August 10, 2017 Group: Members Topic Count: 63 Topics Per Day: 0.02 Content Count: 298 Reputation: 4 Joined: 02/19/17 Last Seen: May 26, 2024 Share Posted August 10, 2017 can anyone have a answer for this one? 4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,378,3,30;},{},{} how to restrict champion and paladin to use this card? example: this two char can't equip this card or the effect of the card wont execute. i try this but it wont disable it 4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,378,3,30; if(Class != 15 || Class != 4016 || Class != 4070 || Class != 4077 || Class != 4015 || Class != 4066 || Class != 4073);},{},{} Quote Link to comment Share on other sites More sharing options...
0 crazyarashi Posted August 10, 2017 Group: Developer Topic Count: 50 Topics Per Day: 0.02 Content Count: 776 Reputation: 239 Joined: 02/11/17 Last Seen: Yesterday at 01:17 PM Share Posted August 10, 2017 4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,2,,,,,{ if(Class == Paladin || Class == Champion) {} else { bonus3 bAutoSpell,378,3,30; },{},{} Quote Link to comment Share on other sites More sharing options...
0 Z3R0 Posted August 10, 2017 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 618 Reputation: 201 Joined: 11/09/11 Last Seen: June 14, 2024 Share Posted August 10, 2017 (edited) 1 hour ago, crazyarashi said: 4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,2,,,,,{ if(Class == Paladin || Class == Champion) {} else { bonus3 bAutoSpell,378,3,30; },{},{} similar to what Crazy said, just a little optimized 4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,2,,,,,{ if(Class != Paladin && Class != Champion) { bonus3 bAutoSpell,378,3,30; },{},{} Edited August 10, 2017 by Z3R0 Quote Link to comment Share on other sites More sharing options...
0 skymia Posted August 11, 2017 Group: Members Topic Count: 63 Topics Per Day: 0.02 Content Count: 298 Reputation: 4 Joined: 02/19/17 Last Seen: May 26, 2024 Author Share Posted August 11, 2017 17 hours ago, Z3R0 said: similar to what Crazy said, just a little optimized 4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,2,,,,,{ if(Class != Paladin && Class != Champion) { bonus3 bAutoSpell,378,3,30; },{},{} Error: Unexpected end of script Quote Link to comment Share on other sites More sharing options...
0 nitrous Posted August 11, 2017 Group: Developer Topic Count: 4 Topics Per Day: 0.00 Content Count: 141 Reputation: 46 Joined: 08/14/12 Last Seen: April 5 Share Posted August 11, 2017 4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,2,,,,,{ if(Class != Paladin && Class != Champion) { bonus3 bAutoSpell,378,3,30; }},{},{} Try that. Quote Link to comment Share on other sites More sharing options...
0 skymia Posted August 11, 2017 Group: Members Topic Count: 63 Topics Per Day: 0.02 Content Count: 298 Reputation: 4 Joined: 02/19/17 Last Seen: May 26, 2024 Author Share Posted August 11, 2017 3 hours ago, Nitrous said: 4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,2,,,,,{ if(Class != Paladin && Class != Champion) { bonus3 bAutoSpell,378,3,30; }},{},{} Try that. no error but still champ can equip the card and the effect still use sir Quote Link to comment Share on other sites More sharing options...
0 Z3R0 Posted August 11, 2017 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 618 Reputation: 201 Joined: 11/09/11 Last Seen: June 14, 2024 Share Posted August 11, 2017 That's strange Quote Link to comment Share on other sites More sharing options...
0 Z3R0 Posted August 11, 2017 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 618 Reputation: 201 Joined: 11/09/11 Last Seen: June 14, 2024 Share Posted August 11, 2017 48 minutes ago, Z3R0 said: That's strange That's because those are the wrong constants... 4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,2,,,,,{ if(Class != JOB_PALADIN && Class != JOB_CHAMPION ) { bonus3 bAutoSpell,378,3,30; }},{},{} Quote Link to comment Share on other sites More sharing options...
Question
skymia
can anyone have a answer for this one?
4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,378,3,30;},{},{}
how to restrict champion and paladin to use this card?
example: this two char can't equip this card or the effect of the card wont execute.
i try this but it wont disable it
4359,B_Eremes_Card,Assassin Cross Card,6,20,,10,,,,,,,,2,,,,,{ bonus3 bAutoSpell,378,3,30; if(Class != 15 || Class != 4016 || Class != 4070 || Class != 4077 || Class != 4015 || Class != 4066 || Class != 4073);},{},{}
Link to comment
Share on other sites
7 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.