Jump to content

Eternity Warriors 3


AnonThanatos

Recommended Posts

Posted

Here is what to change to get

1 hit kill

no cooldown on skills

infinite energy

infinite hp

increased running speed

6000% Item droprate

 

HOWTO:

Decompile main.2112.com.glu.ewarriors3.obb can use Android Tool to decompile and then recompile the obb file.

use .Net Reflector on Assembly-CSharp.dll and turn it into sourcecode.

 

Change following files with following code. 

 

FILE AcData.cs
 
this._passiveSpeed = CHANGE TO 14f;
 
 
FILE ActionController.cs
 
public int Energy
{
get
{
CHANGE TO return 0x270f;
}
 
 
FILE BattleSummary.cs
 
public int EnergyScore
{
get
{
CHANGE TO return 0x270f;
}
 
 
FILE EWAttackConfig.cs
 
public int EnergyCost
{
get
{
CHANGE TO return 0;
}
 
 
FILE EWPassiveSkillConfig.cs
 
public float CoolDownTime
{
get
{
CHANGE TO return 0f;
}
 
public bool SkillIsCD
{
get
{
CHANGE HERE TO return (this._coolDownTime < 0.1f);
}
 
 
FILE EWSkillConfig.cs
 
public float CoolDownTime
{
get
{
CHANGE TO return 0f;
}
 
public int EnergyCost
{
get
{
CHANGE TO return 0;
}
 
public bool SkillIsCD
{
get
{
CHANGE TO return (this._coolDownTime < 0.1f);
}
 
 
FILE ItemInventory.cs
 
attributes2.HitValues += num2;
attributes2.GSValues += num2;
}
else
{
CHANGE TO attributes2.HitValues *= 5000f + num;
CHANGE TO attributes2.GSValues *= 5000f + num;
                }
 
 
FILE LevelManager.cs
 
Hashtable hashtable2 = new Hashtable();
CHANGE TO float num = 5000f;
foreach (int num2 in PlayerInfoManager.Singleton.AccountProfile.CurPlayerProfile._equipmentInfos)
{
 
 
FILE LootAgent.cs
 
string format = Localization.instance.Get("IDS_GET_XP");
float num = ObjectManager.Instance.GetMyActionController().Data._exp_add;
CHANGE TO int num2 = (int) (this._owner.Data.LootXp * (6000f + num));
string str2 = string.Format(format, num2);
 
 
FILE MoveAgent.cs
 
public float CurrentSpeed
{
get
{
CHANGE TO return 15f;
}
 
 
Once you changed the code just compile the dll back and put it into the obb and compile the obb back.
 
I will make a post later on how and what to modify to make the APK not check the .obb file.
Have a nice day!
Posted

Hmmm can you post more details?

Getting exception errors when attempting to decompile .apk or .obb. Selected apk, in, out folder each time. Using EW3-Thanatos-MOD-1.2.1.apk and your given main.2121.com.glu.ewarriors3.obb (was this release removed?).

Edit:

Looking to make a no delay skill hack.

Cheers,

Cryzies

  • 2 months later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.