madtoyz Posted September 23, 2012 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 146 Reputation: 10 Joined: 01/21/12 Last Seen: March 11 Share Posted September 23, 2012 Here i want to change my item_db script card effect, may hope anyone can re-edit for my request. Tao gunka card effect 4302,Tao_Gunka_Card,Tao Gunka Card,6,20,,10,,,,,,,,16,,,,,{ bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; },{},{} - job RUNE KNIGHT/ROYAL GUARD will gain "bonus bMaxHPrate,180;" Doppelganger card effect 4142,Doppelganger_Card,Doppelganger Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,80; },{},{} - ALL JOB will use "bonus bAspdRate,80;" but JOB GX will use "bonus bAspdRate,40;" Quote Link to comment Share on other sites More sharing options...
kyeme Posted September 23, 2012 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 164 Reputation: 12 Joined: 03/08/12 Last Seen: 6 hours ago Share Posted September 23, 2012 Try this 4302,Tao_Gunka_Card,Tao Gunka Card,6,20,,10,,,,,,,,16,,,,,{ if(Class == Job_Rune_Knight || Class == Job_Rune_Knight_T || Class == Job_Royal_Guard || Class == Job_Royal_Guard_T) { bonus bMaxHPrate,180; bonus bDefRate,-50; bonus bMdefRate,-50; } else bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; },{},{} 4142,Doppelganger_Card,Doppelganger Card,6,20,,10,,,,,,,,2,,,,,{ if(Class == Job_Guillotine_Cross || Class == Job_Guillotine_Cross_T) { bonus bAspdRate,40; } else bonus bAspdRate,80; },{},{} Quote Link to comment Share on other sites More sharing options...
Euphy Posted September 23, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted September 23, 2012 Or, shorter, { if (Class > 4052 && BaseClass == Job_Swordman) bonus bMaxHPrate,180; else bonus bMaxHPrate,100; bonus bDefRate,-50; bonus bMdefRate,-50; },{},{} Quote Link to comment Share on other sites More sharing options...
kyeme Posted September 23, 2012 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 164 Reputation: 12 Joined: 03/08/12 Last Seen: 6 hours ago Share Posted September 23, 2012 (edited) Ohh thanks sir Euphy btw the rune / royal class can get also the effect? bonus bDefRate,-50; bonus bMdefRate,-50 Ohh nvm i dnt known madtoyz exactly want Edited September 23, 2012 by kyeme Quote Link to comment Share on other sites More sharing options...
madtoyz Posted September 23, 2012 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 146 Reputation: 10 Joined: 01/21/12 Last Seen: March 11 Author Share Posted September 23, 2012 thx kyeme & Euphy All fix Quote Link to comment Share on other sites More sharing options...
Question
madtoyz
Here i want to change my item_db script card effect,
may hope anyone can re-edit for my request.
Tao gunka card effect
- job RUNE KNIGHT/ROYAL GUARD will gain "bonus bMaxHPrate,180;"
Doppelganger card effect
- ALL JOB will use "bonus bAspdRate,80;" but JOB GX will use "bonus bAspdRate,40;"
Link to comment
Share on other sites
4 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.