open your warz server.sln
search
PHP Code:void obj_ServerPlayer::OnNetPacket(const PKT_C2S_FallingDamage_s& n){
r3dOutToLog("Falling damage to %s, damage=%.2f\n", Name.c_str(), n.damage); CLOG_INDENT;
gServerLogic.ApplyDamage(this, this, GetPosition(), n.damage, true, storecat_INVALID);
}
change to
PHP Code:void obj_ServerPlayer::OnNetPacket(const PKT_C2S_FallingDamage_s& n){
float nulldamage = 0.f;
r3dOutToLog("Falling damage to %s, damage=%.2f\n", Name.c_str(), nulldamage); CLOG_INDENT;
gServerLogic.ApplyDamage(this, this, GetPosition(), nulldamage, true, storecat_INVALID);
}
Credits: vinnieshuda


Reply With Quote![[Tutorial] Fix Fall Damage](http://ragezone.com/hyper728.png)

