IsPlayerPaused
#1

Hey can somebody help me with this error

pawn Код:
F:\Users\Daniel\Desktop\GCRP\filterscripts\afk.pwn(254) : error 017: undefined symbol "IsPlayerPaused"
Line
pawn Код:
public AFK(playerid)
{
    if(IsPlayerPaused(playerid))  // THIS IS THE LINEEEE
    {
        Kick(playerid);
        new string[128], playername[24];
        GetPlayerName(playerid, playername, 24);
        format(string, sizeof(string), "(GC)%s e isklucen od serverot.Pricina: AFK", playername);
        SendClientMessageToAll(0xAFAFAFAA, string);
    }
    return 1;
}
Reply
#2

You don't have the "IsPlayerPaused" function in your gamemode...
Reply
#3

http://forum.sa-mp.com/showthread.ph...=OnPlayerPause
Reply
#4

pawn Код:
new IsPlayerPaused[MAX_PLAYERS]; //You must create a variable or else the compiler wont execute the function.
public AFK(playerid)
{
    if(IsPlayerPaused(playerid))  // THIS IS THE LINEEEE
    {
        Kick(playerid);
        new string[128], playername[24];
        GetPlayerName(playerid, playername, 24);
        format(string, sizeof(string), "(GC)%s e isklucen od serverot.Pricina: AFK", playername);
        SendClientMessageToAll(0xAFAFAFAA, string);
    }
    return 1;
}
For solving the error,this will do.
Reply
#5

Quote:
Originally Posted by [xB]Lordz
Посмотреть сообщение
pawn Код:
new IsPlayerPaused[MAX_PLAYERS]; //You must create a variable or else the compiler wont execute the function.
public AFK(playerid)
{
    if(IsPlayerPaused(playerid))  // THIS IS THE LINEEEE
    {
        Kick(playerid);
        new string[128], playername[24];
        GetPlayerName(playerid, playername, 24);
        format(string, sizeof(string), "(GC)%s e isklucen od serverot.Pricina: AFK", playername);
        SendClientMessageToAll(0xAFAFAFAA, string);
    }
    return 1;
}
For solving the error,this will do.
Your code will just solve the error. .but his script will not work properly. . coz it is only variable.. it won't detect if the player is paused OR not!
Reply
#6

Ok ok thanks i fix it
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)