05.01.2019, 03:29
Hello guys, I have a problem when I put FCNPC_AimAtPlayer dont shot, it stays aiming but it does not shoot. Why does this happen? I have version 2.0, in previous versions it worked perfectly.
PHP код:
public Shoot(playerid)
{
FCNPC_GoToPlayer(bot1, playerid, FCNPC_MOVE_TYPE_AUTO, FCNPC_MOVE_TYPE_AUTO, FCNPC_MOVE_TYPE_AUTO, true, 0.0, true, 0.0, 1.5, 250);
FCNPC_AimAtPlayer(bot1, playerid, true, -1, true, 0.0, 0.0, 0.5);
SetTimerEx("Stop",33000, false, "i", playerid);
return 1;
}
public Stop(playerid)
{
FCNPC_StopAim(bot1);
FCNPC_SetKeys(bot1, 0, 0, 0);
return 1;
}