30/06/2022 03:03
(Esta mensagem foi modificada pela última vez a: 01/07/2022 02:00 por xbruno1000x.)
Estou com um problema em uma function que fiz ele so esta somando, fiz a variável somente pra resetar a mesma.
Código:
if(VariavelPulo[playerid] == 0)
{
new Float:x,Float:y,Float:z;
GetPlayerVelocity(playerid,Float:x,Float:y);
SetPlayerVelocity(playerid,Float:x*3.5,Float:y*3.5,Float:z+3.5*3.5);
ApplyAnimation(playerid, "ped", "KART_L", 4.0, 0, 1, 1, 0, 0, 1);
VariavelPulo[playerid] = 1;
}else if(VariavelPulo[playerid] == 1)
{
new Float:x,Float:y,Float:z;
GetPlayerVelocity(playerid,Float:x,Float:y);
SetPlayerVelocity(playerid,Float:x*3.5,Float:y*3.5,Float:z+3.5*3.5);
ApplyAnimation(playerid, "ped", "KART_L", 4.0, 0, 1, 1, 0, 0, 1);
}
else
{
new Float:x,Float:y,Float:z;
GetPlayerVelocity(playerid,Float:x,Float:y);
SetPlayerVelocity(playerid,Float:x*1.5,Float:y*1.5,Float:z+3.5*3.5);
ApplyAnimation(playerid, "ped", "KART_L", 4.0, 0, 1, 1, 0, 0, 1);
}