14.12.2010, 00:30
Me fijй, y anda, usa este que hace el salto mбs corto:
pawn Код:
new Float: X, Float: Y, Float: Z, Float: ROT;
GetPlayerVelocity(playerid, X, Y, Z);
GetPlayerFacingAngle(playerid, ROT);
X += floatmul(floatsin(-ROT, degrees), 0.12); //Modifica 0.12 para cambiar el largo del salto
Y += floatmul(floatcos(-ROT, degrees), 0.12); //Aca tambiйn
SetPlayerVelocity(playerid, X, Y, Z+0.1); //Modifica 0.1 para cambiar la altura del salto

