Werdio Posted January 6, 2013 Group: Members Topic Count: 83 Topics Per Day: 0.02 Content Count: 248 Reputation: 1 Joined: 06/27/12 Last Seen: May 9, 2016 Share Posted January 6, 2013 Hi, I just want to know how I can turn the ES Skills of the Soul Linker class off? Sry for my bad english ^-^ Quote Link to comment Share on other sites More sharing options...
Capuche Posted January 6, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted January 6, 2013 trunk/conf/mapflag/restricted.txt //===== eAthena Script ======================================= //= Map flags that disable certain items/skills configured in //= item_noequip.txt and skill_nocast_db.txt mymap mapflag restricted <number> trunk/db/re/skill_nocast_db.txt // Forbidden Skills Database // // Structure of Database: // SkillID,Flag // // Legend for 'Flag' field (bitmask): // 1 = Cannot be used in normal maps // 2 = Cannot be used in PvP maps (use this instead of 1 for PK-mode servers) // 4 = Cannot be used in GvG maps // 8 = Cannot be used in Battleground maps // 16 = Cannot be cloned (clones will not copy this skill) // Restricted zones - they're configured by 'restricted <number>' mapflag // 32 = Cannot be used in zone 1 maps // 64 = Cannot be used in zone 2 maps // 128 = Cannot be used in zone 3 maps // 256 = Cannot be used in zone 4 maps // 512 = Cannot be used in zone 5 maps // 1024 = Cannot be used in zone 6 maps // 2048 = Cannot be used in zone 7 maps // // Example: // 8,6 = Endure cannot be used in PvP and GvG maps (2+4) Quote Link to comment Share on other sites More sharing options...
goddameit Posted January 6, 2013 Group: Members Topic Count: 60 Topics Per Day: 0.01 Content Count: 562 Reputation: 219 Joined: 11/22/11 Last Seen: August 3, 2024 Share Posted January 6, 2013 (edited) EDIT : seen I mistake the problem, haha. FOR EXAMPLE: look for int skill_castend_nodamage_id (struct block_list* src, stru add if (skillid > 0 && skilllv <= 0) return 0; if( skill_specialcheck(skillid) == true ) return 0; //add define bool skill_specialcheck(int skillid) { if( agit_flag == 0 ) return false; if( skillid == SL_HUNTER ) return true; return false; } then you can't use Spirit of the Hunter during WoE (not sure is that what you want) Edited January 6, 2013 by goddameit Quote Link to comment Share on other sites More sharing options...
Werdio Posted January 6, 2013 Group: Members Topic Count: 83 Topics Per Day: 0.02 Content Count: 248 Reputation: 1 Joined: 06/27/12 Last Seen: May 9, 2016 Author Share Posted January 6, 2013 I want to turn the ES Skills of the Soul linker off on PVP MAPS AND WOE MAPS. Example: Esma, Eske, Estin .... Quote Link to comment Share on other sites More sharing options...
Capuche Posted January 6, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted January 6, 2013 (edited) Refer post above, in trunk/db/re/skill_nocast_db.txt // PvP + GvG 467,6 // Estin 468,6 // Estun 469,6 // Esma 470,6 // Eswoo 471,6 // Eske 472,6 // Eska // Example: // 8,6 = Endure cannot be used in PvP and GvG maps (2+4) Edited January 6, 2013 by Capuche Quote Link to comment Share on other sites More sharing options...
Werdio Posted January 6, 2013 Group: Members Topic Count: 83 Topics Per Day: 0.02 Content Count: 248 Reputation: 1 Joined: 06/27/12 Last Seen: May 9, 2016 Author Share Posted January 6, 2013 Thank you , thats more easy than the other explanations. Quote Link to comment Share on other sites More sharing options...
Capuche Posted January 6, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted January 6, 2013 You're welcome /$ Quote Link to comment Share on other sites More sharing options...
Werdio Posted January 6, 2013 Group: Members Topic Count: 83 Topics Per Day: 0.02 Content Count: 248 Reputation: 1 Joined: 06/27/12 Last Seen: May 9, 2016 Author Share Posted January 6, 2013 Quote Link to comment Share on other sites More sharing options...
Question
Werdio
Hi,
I just want to know how I can turn the ES Skills of the Soul Linker class off?
Sry for my bad english ^-^
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.