GM Homies Posted March 17, 2015 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 36 Reputation: 0 Joined: 03/02/12 Last Seen: April 7, 2015 Share Posted March 17, 2015 (edited) For Example I want Whitesmith Card to be this effect: Mammonite Level 10 + Maximum over thrust Level 3 If Job is Assassin Level 10 mammonite Only. What happen is if I set "if(baseclass = thief) " something it also reads the level 10 MOT script. for instance { bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"MC_MAMMONITE",10,100; if(BaseClass==Job_Thief ) bonus3 bAutoSpell,"MC_MAMMONITE",10,100; } },{ callfunc "Restrict"; },{} What happen is. even tho its working. the sinx still reads the maximum over thrust skill Edited March 17, 2015 by robiekyut03 Quote Link to comment Share on other sites More sharing options...
GM Homies Posted March 19, 2015 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 36 Reputation: 0 Joined: 03/02/12 Last Seen: April 7, 2015 Author Share Posted March 19, 2015 Fixed it myself. Here's the code. used some logic. thanks to all that used the time and effort 4361,B_Harword_Card,MasterSmith Card,6,20,,10,,,,,,,,2,,,,,{ if(BaseClass==Job_Swordsman||BaseClass==Job_Merchant||BaseClass==Job_Mage||BaseClass==Job_Archer||Baseclass==Job_Acolyte||BaseClass==Job_Gunslinger||BaseClass==Job_Ninja) { bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"WS_OVERTHRUSTMAX",3,100; bonus3 bAutoSpell,"MC_MAMMONITE",10,100; } if(BaseJob == Job_Assassin) { bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"MC_MAMMONITE",5,100; } },{ callfunc "Restrict"; },{} Quote Link to comment Share on other sites More sharing options...
Yonko Posted March 17, 2015 Group: Members Topic Count: 166 Topics Per Day: 0.04 Content Count: 789 Reputation: 50 Joined: 04/16/12 Last Seen: July 8, 2022 Share Posted March 17, 2015 you should change the Thief into Assassin because the Rouge Class will inherit the cards's condition effect Quote Link to comment Share on other sites More sharing options...
Delta Posted March 17, 2015 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 43 Reputation: 0 Joined: 09/27/12 Last Seen: April 10, 2015 Share Posted March 17, 2015 make it bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"MC_MAMMONITE",10,100; if(BaseClass==Job_Thief ) bonus3 bAutoSpell,"MC_MAMMONITE",10,100; } },{ callfunc "Restrict"; },{} to bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"MC_MAMMONITE",10,100; if(Class=="CLASS ID OF ASSASSIN CROSS") {bonus3 bAutoSpell,"MC_MAMMONITE",10,100; } },{ callfunc "Restrict"; },{} you can check the class id on @job then find the sinx. Quote Link to comment Share on other sites More sharing options...
GM Homies Posted March 17, 2015 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 36 Reputation: 0 Joined: 03/02/12 Last Seen: April 7, 2015 Author Share Posted March 17, 2015 make it bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"MC_MAMMONITE",10,100; if(BaseClass==Job_Thief ) bonus3 bAutoSpell,"MC_MAMMONITE",10,100; } },{ callfunc "Restrict"; },{} to bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"MC_MAMMONITE",10,100; if(Class=="CLASS ID OF ASSASSIN CROSS") {bonus3 bAutoSpell,"MC_MAMMONITE",10,100; } },{ callfunc "Restrict"; },{} you can check the class id on @job then find the sinx. But the assassin still inherit the Maximum over thrust. Quote Link to comment Share on other sites More sharing options...
Delta Posted March 18, 2015 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 43 Reputation: 0 Joined: 09/27/12 Last Seen: April 10, 2015 Share Posted March 18, 2015 Because it is on the main script. Do you want the card effect is If the assassin use the whitesmith card, Level 10 mammonite Only but not the Level 10 + Maximum over thrust Level Quote Link to comment Share on other sites More sharing options...
GM Homies Posted March 18, 2015 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 36 Reputation: 0 Joined: 03/02/12 Last Seen: April 7, 2015 Author Share Posted March 18, 2015 Because it is on the main script. Do you want the card effect is If the assassin use the whitesmith card, Level 10 mammonite Only but not the Level 10 + Maximum over thrust Level Yes. I hope that the sinx wont read the main script MOT. I wish that Level 10 Mammo only How can I do that? Quote Link to comment Share on other sites More sharing options...
Emistry Posted March 18, 2015 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: Wednesday at 12:29 PM Share Posted March 18, 2015 if( BaseJob != Job_Assassin ) { // maximum over thrust skill } Quote Link to comment Share on other sites More sharing options...
GM Homies Posted March 18, 2015 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 36 Reputation: 0 Joined: 03/02/12 Last Seen: April 7, 2015 Author Share Posted March 18, 2015 if( BaseJob != Job_Assassin ) { // maximum over thrust skill } I didnt quite understand it sir emistry. can you make the full script? if( BaseJob != Job_Assassin ) { // maximum over thrust skill } The effect im trying to explain is. Mastersmith Card: Level 3 Maximum Over Thrust Level 10 Mammonite If Your Job is Assassin Cross. Level 10 Mammonite only. NO MAXIMUM OVER THRUST. The assassin reads the main script MOT. Quote Link to comment Share on other sites More sharing options...
Question
GM Homies
For Example I want Whitesmith Card to be this effect:
Mammonite Level 10 + Maximum over thrust Level 3 If Job is Assassin
Level 10 mammonite Only.
What happen is if I set "if(baseclass = thief) " something it also reads the level 10 MOT script.
for instance
{ bonus bBreakWeaponRate,1000; bonus bUnbreakableWeapon,0; bonus3 bAutoSpell,"MC_MAMMONITE",10,100; if(BaseClass==Job_Thief ) bonus3 bAutoSpell,"MC_MAMMONITE",10,100; } },{ callfunc "Restrict"; },{}
What happen is. even tho its working. the sinx still reads the maximum over thrust skill
Edited by robiekyut03Link 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.