Vice City: Multiplayer

VC:MP Discussion => General Discussion => Topic started by: Cena on Jun 13, 2016, 10:05 AM

Title: Boostjump
Post by: Cena on Jun 13, 2016, 10:05 AM
How To Boost Player Jump In The Server?
Title: Re: Boostjump
Post by: Kewun on Jun 13, 2016, 10:21 AM
use gravity or velocity
Title: Re: Boostjump
Post by: KAKAN on Jun 13, 2016, 10:50 AM
http://forum.vc-mp.org/?topic=1197.msg8025#msg8025
Title: Re: Boostjump
Post by: Cena on Jun 14, 2016, 09:15 AM
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 :)
Title: Re: Boostjump
Post by: Finch Real on Jun 14, 2016, 09:19 AM
Function onplayermove
If ( player.Health < 100 )
{
player.Heatlh = 100;
}
}

This is example i am on mobile so i cannot give a perfect example
Title: Re: Boostjump
Post by: KAKAN on Jun 14, 2016, 09:23 AM
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.
}
Title: Re: Boostjump
Post by: Finch Real on Jun 14, 2016, 09:28 AM
Yeah true btw I just forgot that
Title: Re: Boostjump
Post by: Cena on Jun 15, 2016, 02:02 PM
Ok problem solve