DR4LUC0N Posted January 7, 2013 Group: Members Topic Count: 33 Topics Per Day: 0.01 Content Count: 135 Reputation: 6 Joined: 04/04/12 Last Seen: July 23, 2024 Share Posted January 7, 2013 (edited) I'm not sure if this should go for database or graphic support....but How would I go about removing the blind effect from that skill but still keep blind on my client so if a monster uses a blinding skill it still effects the player. Edited January 7, 2013 by DR4LUC0N Quote Link to comment Share on other sites More sharing options...
Kloshke Posted January 7, 2013 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 52 Reputation: 0 Joined: 12/08/12 Last Seen: August 30, 2013 Share Posted January 7, 2013 I think this is related to src editing. Quote Link to comment Share on other sites More sharing options...
DR4LUC0N Posted January 7, 2013 Group: Members Topic Count: 33 Topics Per Day: 0.01 Content Count: 135 Reputation: 6 Joined: 04/04/12 Last Seen: July 23, 2024 Author Share Posted January 7, 2013 I don't know where it would go...there's so many possibilities..... Quote Link to comment Share on other sites More sharing options...
Olrox Posted January 7, 2013 Group: Members Topic Count: 87 Topics Per Day: 0.02 Content Count: 1335 Reputation: 933 Joined: 10/26/11 Last Seen: November 19, 2023 Share Posted January 7, 2013 Graphics Support is about, graphical inquiries only. You are asking about conditions of a skill. I might be wrong, but I believe that this kind of skill conditions has to do with source edits (sorry If I'm wrong, but truly that is not my area) Therefore, for the reasons explained, I'm moving this thread into source support. In advance: My apologies in case I was wrong and this was more into database or perhaps scripts. Quote Link to comment Share on other sites More sharing options...
DR4LUC0N Posted January 7, 2013 Group: Members Topic Count: 33 Topics Per Day: 0.01 Content Count: 135 Reputation: 6 Joined: 04/04/12 Last Seen: July 23, 2024 Author Share Posted January 7, 2013 It's really a mixture of all of the following that you said. :/ Quote Link to comment Share on other sites More sharing options...
Syouji Posted January 7, 2013 Group: Members Topic Count: 70 Topics Per Day: 0.01 Content Count: 1245 Reputation: 395 Joined: 11/19/11 Last Seen: January 15, 2020 Share Posted January 7, 2013 There is a thread provided by ratemyserver that covers how to remove blind effects when modifying certain client side files. See this thread here: http://forum.ratemyserver.net/guides/creative-editing-i-can-see-clearly-now/ Quote Link to comment Share on other sites More sharing options...
Mystery Posted January 7, 2013 Group: Members Topic Count: 94 Topics Per Day: 0.02 Content Count: 2192 Reputation: 253 Joined: 11/11/11 Last Seen: June 24, 2020 Share Posted January 7, 2013 (edited) Removing the blind would be source wise. Try going to your src/map/clif.c and find: if (pc_checkskill(sd, SG_DEVIL) && !pc_nextjobexp(sd)) clif_status_load(&sd->bl, SI_DEVIL, 1); //blindness [Komurka] And remove it. Save and Recompile and see if that works. Edited January 7, 2013 by Mysterious oops.. typo D: Quote Link to comment Share on other sites More sharing options...
DR4LUC0N Posted January 7, 2013 Group: Members Topic Count: 33 Topics Per Day: 0.01 Content Count: 135 Reputation: 6 Joined: 04/04/12 Last Seen: July 23, 2024 Author Share Posted January 7, 2013 (edited) Well if at all possible I'd like to not have to remove it from the other skills. Edit: So far that seemed to have fixed it...I'm not sure if that will effect skills that give blind though. Edited January 7, 2013 by DR4LUC0N Quote Link to comment Share on other sites More sharing options...
Mystery Posted January 7, 2013 Group: Members Topic Count: 94 Topics Per Day: 0.02 Content Count: 2192 Reputation: 253 Joined: 11/11/11 Last Seen: June 24, 2020 Share Posted January 7, 2013 There is a thread provided by ratemyserver that covers how to remove blind effects when modifying certain client side files. See this thread here: http://forum.ratemys...ee-clearly-now/ Well if at all possible I'd like to not have to remove it from the other skills. Well if at all possible I'd like to not have to remove it from the other skills. From what I read on iRO Wiki, they use /mineffect to remove the blind o_o Never seen that command before though.. The blind effect can be bypassed by using /mineffect. Quote Link to comment Share on other sites More sharing options...
DR4LUC0N Posted January 7, 2013 Group: Members Topic Count: 33 Topics Per Day: 0.01 Content Count: 135 Reputation: 6 Joined: 04/04/12 Last Seen: July 23, 2024 Author Share Posted January 7, 2013 Well so far that SRC edit is working, and I've never seen that effect either. Quote Link to comment Share on other sites More sharing options...
Mystery Posted January 7, 2013 Group: Members Topic Count: 94 Topics Per Day: 0.02 Content Count: 2192 Reputation: 253 Joined: 11/11/11 Last Seen: June 24, 2020 Share Posted January 7, 2013 Well so far that SRC edit is working, and I've never seen that effect either. Well if at all possible I'd like to not have to remove it from the other skills. Edit: So far that seemed to have fixed it...I'm not sure if that will effect skills that give blind though. Sorry for the typo before Uh, what you just removed will only effect that specific skill from SG. If you wanna do Professor's Fog, that's found in your src/map/skill.c case PF_FOGWALL: if (src != bl && !tsc->data[sC_DELUGE]) sc_start(bl,SC_BLIND,100,skill_lv,skill_get_time2(skill_id,skill_lv)); break; Sprinkle Sand: case TF_SPRINKLESAND: sc_start(bl,SC_BLIND,20,skill_lv,skill_get_time2(skill_id,skill_lv)); break; Quote Link to comment Share on other sites More sharing options...
Question
DR4LUC0N
I'm not sure if this should go for database or graphic support....but How would I go about removing the blind effect from that skill but still keep blind on my client so if a monster uses a blinding skill it still effects the player.
Edited by DR4LUC0NLink to comment
Share on other sites
10 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.