Jump to content
RAGE Multiplayer Community

How to stop playing losing hp when running for too long


JamesBeast
 Share

Recommended Posts

This occurs due to player stamina hitting zero, resulting in hp being lost. Below is the workaround for this in both C# and JavaScript.

C#

//Subscribe the Tick event
Events.Tick += Tick;

public void Tick(List<Events.TickNametagData> nametags)
{
    RAGE.Game.Player.RestorePlayerStamina(1.0F);
}

JavaScript

mp.events.add('render', () => {
    mp.game.player.restoreStamina(100);
});

ย 

Edited by Jaimuzu
added event subscription
  • Like 3
  • Mask 1
  • Sad 1
Link to comment
Share on other sites

  • 3 months later...
  • 3 weeks later...

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...