Jump to content
  • 0

Zariche!


Question

Posted

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

9 answers to this question

Recommended Posts

  • 0
Posted

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.

  • 0
Posted (edited)

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

Edited by Tryskell
  • 0
Posted

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.
  • 0
Posted

 

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?

  • 0
Posted

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.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock