Help: FCNPC_StopAim dont work for me
#1

Hello friends, I have a problem that when I use FCNPC_AimAtPlayer does not stop shooting the player (even if you die), I have set a 33-second SetTimer with the function FCNPC_StopAim (npcid) but it does not stop firing either. Do you know why this happens? what is my error?

PHP код:
public OnPlayerKeyStateChange(playeridnewkeysoldkeys)
{
new 
Float:ax,Float:ay,Float:az;
GetPlayerPos(bot1,ax,ay,az);
if(
IsPlayerInRangeOfPoint(playerid,15,ax,ay,az))
    {
    if(
PRESSED(KEY_FIRE))
    {
    
SetTimerEx("Shot",1000,false"i"playerid);
    }}
return 
1;
}
public 
Shot(playerid)
{
    
FCNPC_GoToPlayer(bot1playeridFCNPC_MOVE_TYPE_AUTOFCNPC_MOVE_TYPE_AUTOtrue0.0true0.01.5250);
    
FCNPC_AimAtPlayer(bot1playeridtrue, -1true0.00.00.00.00.00.0);
     
SetTimer("Stop"33000false);
     
    return 
1;
}
public 
Stop()
{
    
FCNPC_StopAim(bot1); // <------- Dont work, why?

Reply


Messages In This Thread
Help: FCNPC_StopAim dont work for me - by bookknp - 10.11.2018, 12:45
Re: Help: FCNPC_StopAim dont work for me - by NaS - 10.11.2018, 13:00
Re: Help: FCNPC_StopAim dont work for me - by bookknp - 10.11.2018, 13:04

Forum Jump:


Users browsing this thread: 1 Guest(s)