Quote:
Originally Posted by ProBro
is that causing the bug?
Here's more of it.
PHP код:
}
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
if(GetPlayerTeam(playerid) == 2)
{
if(PRESSED(KEY_WALK))
{
new Float:x,Float:y,Float:z;
GetPlayerVelocity(playerid,Float:x,Float:y,Float:z);
SetPlayerVelocity(playerid,Float:x,Float:y*1.0,Float:z+0.8* 1.2);
}
}
}
|
Please post the entire
OnPlayerKeyStateChange callback, you look like steam games throwing out dlc.
Also, what is this?