How To Boost Player Jump In The Server?
use gravity or velocity
http://forum.vc-mp.org/?topic=1197.msg8025#msg8025
Quote from: KAKAN on Jun 13, 2016, 10:50 AMhttp://forum.vc-mp.org/?topic=1197.msg8025#msg8025
Ok thanx But When Someone Jump And Fall His Hp Decrease I Think This Not Working this.player.Immunity = 8;
Help Plz :)
Function onplayermove
If ( player.Health < 100 )
{
player.Heatlh = 100;
}
}
This is example i am on mobile so i cannot give a perfect example
Quote from: Finch Real on Jun 14, 2016, 09:19 AMFunction onplayermove
If ( player.Health < 100 )
{
player.Heatlh = 100;
}
}
This is example i am on mobile so i cannot give a perfect example
lol, why not use the onPlayerHealthChange instead?
function onPlayerHealthChange( player, oldHP, newHP )
{
//Check if the player exists.
if( gLongJump.rawin( player.ID ) )
{
//yes, he does.
player.Health = 100; //or set it to oldHP.
//ALl done.
}
//Do/paste your old health change work here.
}
Yeah true btw I just forgot that
Ok problem solve