20.11.2013, 18:12
Hi Guys How Are You
look i need a help i'm looking for a High Jump Ability Like Hunter On Left 4 Dead
Thanks
look i need a help i'm looking for a High Jump Ability Like Hunter On Left 4 DeadThanks
look i need a help i'm looking for a High Jump Ability Like Hunter On Left 4 Deadpublic OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if(newkeys & KEY_SECONDARY_ATTACK)
{
new Float:Coordinates[4];
GetPlayerPos(playerid, Coordinates[0], Coordinates[1], Coordinates[2]), GetPlayerFacingAngle(playerid, Coordinates[3]);
SetPlayerPos(playerid, Coordinates[0]+3, Coordinates[1], Coordinates[2]+3); //increasing the Coordinate 'Z' by 3 | increase the Coordinate 'X' by 3
SetPlayerFacingAngle(playerid, Coordinates[3]);
}
return true;
}
. if(strcmp(cmd, "/setgravity", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pAdmin] == 6) //edit to your admin level.
{
return 1;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SyntaxMessage(playerid, "/setgravity [number]");
return 1;
}
new Float:grav;
grav = floatstr(tmp);
SetGravity(grav);
SendClientMessage(playerid, GREY, "Gravity has been set for everyone.");
}
return 1;
}
new Float:x,Float:y,Float:z; GetPlayerVelocity(playerid,Float:x,Float:y,Float:z); SetPlayerVelocity(playerid,Float:x*2.0,Float:y*1.0,Float:z+0.8* 1.2);