Jump to content
  • 0

Removing Demon of the Sun, Moon and Stars Blind


DR4LUC0N

Question


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  135
  • Reputation:   6
  • Joined:  04/04/12
  • Last Seen:  

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 DR4LUC0N
Link to comment
Share on other sites

10 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  15
  • Topics Per Day:  0.00
  • Content Count:  52
  • Reputation:   0
  • Joined:  12/08/12
  • Last Seen:  

I think this is related to src editing.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  135
  • Reputation:   6
  • Joined:  04/04/12
  • Last Seen:  

I don't know where it would go...there's so many possibilities.....

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  87
  • Topics Per Day:  0.02
  • Content Count:  1335
  • Reputation:   932
  • Joined:  10/26/11
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  135
  • Reputation:   6
  • Joined:  04/04/12
  • Last Seen:  

It's really a mixture of all of the following that you said. :/

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  70
  • Topics Per Day:  0.02
  • Content Count:  1245
  • Reputation:   392
  • Joined:  11/19/11
  • Last Seen:  

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/

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  94
  • Topics Per Day:  0.02
  • Content Count:  2192
  • Reputation:   252
  • Joined:  11/11/11
  • Last Seen:  

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 by Mysterious
oops.. typo D:
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  135
  • Reputation:   6
  • Joined:  04/04/12
  • Last Seen:  

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 by DR4LUC0N
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  94
  • Topics Per Day:  0.02
  • Content Count:  2192
  • Reputation:   252
  • Joined:  11/11/11
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  135
  • Reputation:   6
  • Joined:  04/04/12
  • Last Seen:  

Well so far that SRC edit is working, and I've never seen that effect either.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  94
  • Topics Per Day:  0.02
  • Content Count:  2192
  • Reputation:   252
  • Joined:  11/11/11
  • Last Seen:  

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 :P 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;

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...