Quick Posted April 28, 2013 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 8 Reputation: 0 Joined: 04/14/13 Last Seen: May 10, 2013 Share Posted April 28, 2013 Sorry to bother you guys! Been configuring it out some scripts but i ended up making more and more errors. Help me configure my Lord Knight talisman. Request for renewal of Lord Knight talisman ticket When on talisman effect Parrying can be used in One-Hand Swords with a block chance of 3*SkillLv%Request for renewal of Wizard/Professor/talisman ticket When on talisman effect Wizard/Professor/will also increase by Baselvl *200 HP and His/here Vit will increase by Int/5.Request for renewal of Gunslinger talisman ticket When on talisman effect Gunslinger Hp will increase by Baselvl*200 HP and his/her Vit will increase by Dex/5. Thanks in advance especially those who helped me from my previous requests! All of you are a lifesaver! Quote Link to comment Share on other sites More sharing options...
Patskie Posted April 28, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: 22 hours ago Share Posted April 28, 2013 Sorry to bother you guys! Been configuring it out some scripts but i ended up making more and more errors. Help me configure my Lord Knight talisman. Request for renewal of Lord Knight talisman ticket When on talisman effect Parrying can be used in One-Hand Swords with a block chance of 3*SkillLv%Request for renewal of Wizard/Professor/talisman ticket When on talisman effect Wizard/Professor/will also increase by Baselvl *200 HP and His/here Vit will increase by Int/5.Request for renewal of Gunslinger talisman ticket When on talisman effect Gunslinger Hp will increase by Baselvl*200 HP and his/her Vit will increase by Dex/5. Thanks in advance especially those who helped me from my previous requests! All of you are a lifesaver! 1. On your db/(pre/re)/skill_require_db.txt Find : 356,0,0,50,0,0,0,3,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //LK_PARRYING# Replace it by : 356,0,0,50,0,0,0,2:3,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //LK_PARRYING# 2. Try this : ( src/map/status.c ) Find : vit -= sc->data[SC_STOMACHACHE]->val1; if(sc->data[SC_KYOUGAKU]) vit -= sc->data[SC_KYOUGAKU]->val2; Add below : if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE)) vit += ((TBL_PC*)bl)->status.int_ / 5; Find : maxhp -= sc->data[SC_MYSTERIOUS_POWDER]->val1 / 100; if(sc->data[SC_EARTH_INSIGNIA] && sc->data[SC_EARTH_INSIGNIA]->val1 == 2) maxhp += 500; Add below : if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE)) maxhp += ((TBL_PC*)bl)->status.base_level * 200; 3. Is there a soul link for gunslinger ? 1 Quote Link to comment Share on other sites More sharing options...
Markyieee Posted April 15, 2014 Group: Members Topic Count: 42 Topics Per Day: 0.01 Content Count: 134 Reputation: 4 Joined: 06/14/12 Last Seen: August 17, 2017 Share Posted April 15, 2014 Sorry to bother you guys! Been configuring it out some scripts but i ended up making more and more errors. Help me configure my Lord Knight talisman. Request for renewal of Lord Knight talisman ticket When on talisman effect Parrying can be used in One-Hand Swords with a block chance of 3*SkillLv%Request for renewal of Wizard/Professor/talisman ticket When on talisman effect Wizard/Professor/will also increase by Baselvl *200 HP and His/here Vit will increase by Int/5.Request for renewal of Gunslinger talisman ticket When on talisman effect Gunslinger Hp will increase by Baselvl*200 HP and his/her Vit will increase by Dex/5. Thanks in advance especially those who helped me from my previous requests! All of you are a lifesaver! 1. On your db/(pre/re)/skill_require_db.txt Find : 356,0,0,50,0,0,0,3,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //LK_PARRYING# Replace it by : 356,0,0,50,0,0,0,2:3,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //LK_PARRYING# 2. Try this : ( src/map/status.c ) Find : vit -= sc->data[SC_STOMACHACHE]->val1; if(sc->data[SC_KYOUGAKU]) vit -= sc->data[SC_KYOUGAKU]->val2; Add below : if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE)) vit += ((TBL_PC*)bl)->status.int_ / 5; Find : maxhp -= sc->data[SC_MYSTERIOUS_POWDER]->val1 / 100; if(sc->data[SC_EARTH_INSIGNIA] && sc->data[SC_EARTH_INSIGNIA]->val1 == 2) maxhp += 500; Add below : if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE)) maxhp += ((TBL_PC*)bl)->status.base_level * 200; 3. Is there a soul link for gunslinger ? Can i also do the renewal source script to pre renewal source? Quote Link to comment Share on other sites More sharing options...
Question
Quick
Sorry to bother you guys!
Been configuring it out some scripts but i ended up making more and more errors.
Help me configure my Lord Knight talisman.
Request for renewal of Lord Knight talisman ticket
Request for renewal of Wizard/Professor/talisman ticket
Request for renewal of Gunslinger talisman ticket
Thanks in advance especially those who helped me from my previous requests! All of you are a lifesaver!
Link to comment
Share on other sites
2 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.