Jump to content
  • 0

Zariche!


iitmtii

Question

Hello,

I want erase zariche aura on leveling up skil. (When zariche skill reach 2lvl it gain zariche effect(abnormal effect). How i cant delete this feature. I cant find it anywehre in java..

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

You don't really have to mess up with client, just edit UserInfo/CharInfo packets, there should be something related to cursed weapons, if you want to disable it entirely, change whatever code it has to 0x00.

Link to comment
Share on other sites

  • 0

Packet related trigger client information, as said Tessa. Edit client (gl with that) or edit packet. Similar to enchant effect trigger.

Edited by Tryskell
Link to comment
Share on other sites

  • 0

If it's sent by server as a skill (I didn't check that), I think it could be done by hooking these methods in UGameEngine class in engine.dll:
 

void __thiscall UGameEngine::OnReceiveMagicSkillUse(User*, User*, L2ParamStack&)
void __thiscall UGameEngine::OnReceiveMagicSkillUse(User*, int, L2ParamStack&)
 
Just get skill ID from param stack, compare it to skill ID you want to ignore and if it matches, just don't call the original function.
Link to comment
Share on other sites

  • 0

 

If it's sent by server as a skill (I didn't check that), I think it could be done by hooking these methods in UGameEngine class in engine.dll:

 

void __thiscall UGameEngine::OnReceiveMagicSkillUse(User*, User*, L2ParamStack&)
void __thiscall UGameEngine::OnReceiveMagicSkillUse(User*, int, L2ParamStack&)
 
Just get skill ID from param stack, compare it to skill ID you want to ignore and if it matches, just don't call the original function.

 

 

i cant oppen engine.dll what program i shoud use to open it?

Link to comment
Share on other sites

  • 0

i cant oppen engine.dll what program i shoud use to open it?

 

You need IDA pro or ollydbg (and some other tools to unpack it if engine.dll is packed) but as Versus said, it would be easier to do on server side.

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.
Note: Your post will require moderator approval before it will be visible.

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...