playniks Posted January 7, 2024 Group: Members Topic Count: 14 Topics Per Day: 0.02 Content Count: 52 Reputation: 2 Joined: 02/23/23 Last Seen: 6 hours ago Share Posted January 7, 2024 (edited) Hi! The effect of my soul link scroll wont work when Im wearing GTB card. How to bypass this? I tried to make every soul skill type as misc for every job but it still doesnt work. Please help me Edited January 7, 2024 by playniks Quote Link to comment Share on other sites More sharing options...
0 Playtester Posted April 8, 2024 Group: Developer Topic Count: 37 Topics Per Day: 0.01 Content Count: 896 Reputation: 248 Joined: 01/30/13 Last Seen: Monday at 01:58 PM Share Posted April 8, 2024 The condition for a status change is in status_get_sc_def: if (skill != nullptr && skill->skill_type == BF_MAGIC && // Basic magic skill !skill->inf2[INF2_IGNOREGTB] && // Specific skill to bypass ((skill->inf == INF_ATTACK_SKILL || skill->inf == INF_GROUND_SKILL || skill->inf == INF_SUPPORT_SKILL) || // Target skills should get blocked even when cast on self (skill->inf == INF_SELF_SKILL && src != bl))) // Self skills should get blocked on all targets except self return 0; If you really changed the skill used to "misc" then the status should never be blocked by GTB. Even easier would be to just use the "IgnoreGTB" flag. If it still doesn't work, then maybe it's already blocked in skill.cpp by something. Easiest is to just debug it. Put a breakpoint on the line I quoted above (first line) and see if it even reaches that code when you use the scroll. 1 Quote Link to comment Share on other sites More sharing options...
0 Sallycantdance Posted January 7, 2024 Group: Members Topic Count: 224 Topics Per Day: 0.14 Content Count: 796 Reputation: 12 Joined: 12/04/20 Last Seen: 16 hours ago Share Posted January 7, 2024 1 hour ago, playniks said: Hi! The effect of my soul link scroll wont work when Im wearing GTB card. How to bypass this? I tried to make every soul skill type as misc for every job but it still doesnt work. Please help me try this file or you can also check it here: Soul Link Scrolls with Client Files - Database Releases - rAthena sl.txt Quote Link to comment Share on other sites More sharing options...
0 playniks Posted January 7, 2024 Group: Members Topic Count: 14 Topics Per Day: 0.02 Content Count: 52 Reputation: 2 Joined: 02/23/23 Last Seen: 6 hours ago Author Share Posted January 7, 2024 7 hours ago, GM Winter said: try this file or you can also check it here: Soul Link Scrolls with Client Files - Database Releases - rAthena sl.txt 2.25 kB · 2 downloads Hi thank you for the response. I actually have that kind of file already. I have a working soul link script on my buffer/healer. It's just that the effect of my soul link when wearing a golden thief bug card won't work. Quote Link to comment Share on other sites More sharing options...
0 Sallycantdance Posted January 7, 2024 Group: Members Topic Count: 224 Topics Per Day: 0.14 Content Count: 796 Reputation: 12 Joined: 12/04/20 Last Seen: 16 hours ago Share Posted January 7, 2024 3 hours ago, playniks said: Hi thank you for the response. I actually have that kind of file already. I have a working soul link script on my buffer/healer. It's just that the effect of my soul link when wearing a golden thief bug card won't work. i test this in my server i use buckler with golden thief bug card and the scroll works in me hmm Quote Link to comment Share on other sites More sharing options...
0 Hoze Posted April 4, 2024 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 4 Reputation: 0 Joined: 02/19/24 Last Seen: November 3, 2024 Share Posted April 4, 2024 Hello, did you fixed it? @playniks Quote Link to comment Share on other sites More sharing options...
0 playniks Posted April 8, 2024 Group: Members Topic Count: 14 Topics Per Day: 0.02 Content Count: 52 Reputation: 2 Joined: 02/23/23 Last Seen: 6 hours ago Author Share Posted April 8, 2024 (edited) On 4/4/2024 at 2:17 PM, Hoze said: Hello, did you fixed it? @playniks Hi @Hoze yeah I actually managed to resolved the problem and other skills that bypasses the golden thief bug effect like ground spells of professor classes and esma/estun of soul linkers. Same as @Playtester status.c find: if (skill != nullptr && skill->skill_type == BF_MAGIC Then input the aegis name of the skills you want to bypass gtb effect. Here's mine for Soul Link, Esma, Fogwall, Deluge, Volcano and Violentgale if (skill != nullptr && skill->skill_type == BF_MAGIC && type != SC_SPIRIT && type != SC_SMA && type != SC_FOGWALL && type != SC_DELUGE && type != SC_VOLCANO && type != SC_VIOLENTGALE && // Basic magic skill !skill->inf2[INF2_IGNOREGTB] && // Specific skill to bypass ((skill->inf == INF_ATTACK_SKILL || skill->inf == INF_GROUND_SKILL || skill->inf == INF_SUPPORT_SKILL) || // Target skills should get blocked even when cast on self (skill->inf == INF_SELF_SKILL && src != bl))) // Self skills should get blocked on all targets except self return 0; Edited April 8, 2024 by playniks Quote Link to comment Share on other sites More sharing options...
Question
playniks
Hi! The effect of my soul link scroll wont work when Im wearing GTB card. How to bypass this?
I tried to make every soul skill type as misc for every job but it still doesnt work.
Please help me
Edited by playniksLink to comment
Share on other sites
6 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.