UE1 - UT Head Jump Damage

  • Two Factor Authentication is now available on BeyondUnreal Forums. To configure it, visit your Profile and look for the "Two Step Verification" option on the left side. We can send codes via email (may be slower) or you can set up any TOTP Authenticator app on your phone (Authy, Google Authenticator, etc) to deliver codes. It is highly recommended that you configure this to keep your account safe.

Silversly

New Member
Sep 19, 2011
2
0
0
Hey, I play UT99, map for UT99, and am trying to learn how to code, I would really like to know what mod or code makes/creates damage when a player jumps on another players head? i looked through almost all the scripts. Thank you very much! -Eric
 

Wormbo

Administrator
Staff member
Jun 4, 2001
5,913
36
48
Germany
www.koehler-homepage.de
It's part of the Pawn code, BaseChange() I think. Basically when a Pawn lands on another Pawn, it will jump off to prevent players stacking (Jailbreak turned that off to allow human ladders) and will apply damage to the base Pawn. The damage amount is calculated from the previous falling speed, but is usually relatively small.
There are mods that implement a "Super Mario Mode", i.e. very high stomp damage. Those are probably mutators that check for stomp damage and increase it to the point where it's deadly.