Compiling Error #003
#9

pawn Код:
public OnPlayerSpawn(playerid) { //This is your problem...//
{ //You have it here too..
    if(PlayerInfo[playerid][Frozen] == true)
    {
        TogglePlayerControllable(playerid, false);
        SendClientMessage(playerid, 0xFF0000FF, "WARNING: You are still frozen!");
    }
     return 1;
}
Try this:

pawn Код:
public OnPlayerSpawn(playerid)
{
    if(PlayerInfo[playerid][Frozen] == true)
    {
        TogglePlayerControllable(playerid, false);
        SendClientMessage(playerid, 0xFF0000FF, "WARNING: You are still frozen!");
    }
     return 1;
}
Reply


Messages In This Thread
Compiling Error #003 - by xSiiLenTx - 25.08.2012, 20:09
Re: Compiling Error #003 - by Sniper Kitty - 25.08.2012, 20:11
Re: Compiling Error #003 - by xSiiLenTx - 25.08.2012, 20:14
Re: Compiling Error #003 - by Sniper Kitty - 25.08.2012, 20:18
Re: Compiling Error #003 - by xSiiLenTx - 25.08.2012, 20:23
Re: Compiling Error #003 - by Sniper Kitty - 25.08.2012, 20:24
Re: Compiling Error #003 - by xSiiLenTx - 25.08.2012, 20:28
Re: Compiling Error #003 - by leonardo1434 - 25.08.2012, 20:28
Re: Compiling Error #003 - by sniperwars - 25.08.2012, 21:45

Forum Jump:


Users browsing this thread: 1 Guest(s)