Help! How to mod one hit and God Mod

mrchinh5000

Platinian
I try to mod some game have battle arena but enemy and player have same dame, same hp when i editted value.Can you show me how to split dame of them.
 
if it includes something (type: bool)
isplayer
isemeny
isCPU
or other
you may use if statement to split
example:
if(this.isplayer)
{
damage=999999999;
}
else
original damage function;
 
Back
Top Bottom