afk and back command getting errors
#1

its in dutch but i changed it!
pawn Код:
CMD:weg(playerid,params[]) // afk command
{
        if(PlayerAFK[playerid] == 0)
        {
           new pName[MAX_PLAYER_NAME];
           GetPlayerName(playerid,pName,sizeof(pName));
           new string[120];
           format(string,sizeof(string),"%s(%d) Is nou AwayFromKeyBoard[AFK]!",pName,playerid); // name id is afk!
           TogglePlayerControllable(playerid,0);
           PlayerAFK[playerid] = 1; //afk!
           SendClientMessageToAll(-1,string);
        }
        if(PlayerAFK[playerid] == 1) return SendClientMessage(playerid,-1,"Je Bent al AwayFromKeyboard[AFK]!"); // your already afk
        } // error line one!
    } // error line second!
  return 1; // third!
}

CMD:terug(playerid,params[]) //back command!
{
   if(PlayerAFK[playerid] == 0) return SendClientMessage(playerid,-1,"Je bent niet AwayFromKeyboard[AFK]!");// your arnt afk
   if(PlayerAFK[playerid] == 1)
   {
      new pName[MAX_PLAYER_NAME];
      GetPlayerName(playerid,pName,sizeof(pName));
      new string[120];
      format(string,sizeof(string),"%s(%d) Is terug gekomen!",pName,playerid); //name id comes back
      TogglePlayerControllable(playerid,1);
      SendClientMessageToAll(-1,string);
      PlayerAFK[playerid] = 0; //not any more afk
    }
  return 1; // error last!
}
i getting this following errors i thread any thing but dont work
Код:
C:\Users\Mustafa\Desktop\SAmp SRV\ForYou\gamemodes\TDMNIEUW.pwn(1039) : warning 209: function "cmd_weg" should return a value
C:\Users\Mustafa\Desktop\SAmp SRV\ForYou\gamemodes\TDMNIEUW.pwn(1040) : error 054: unmatched closing brace ("}")
C:\Users\Mustafa\Desktop\SAmp SRV\ForYou\gamemodes\TDMNIEUW.pwn(1041) : error 010: invalid function or declaration
C:\Users\Mustafa\Desktop\SAmp SRV\ForYou\gamemodes\TDMNIEUW.pwn(1057) : warning 217: loose indentation
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Errors.
Thank you for reading and i hope you can help me.
Reply


Messages In This Thread
afk and back command getting errors - by Mustafa6155 - 19.12.2012, 11:50
Re: afk and back command getting errors - by CoaPsyFactor - 19.12.2012, 11:55
Re: afk and back command getting errors - by Mustafa6155 - 19.12.2012, 12:02
Re: afk and back command getting errors - by LetsOWN[PL] - 19.12.2012, 12:05
Re: afk and back command getting errors - by Mustafa6155 - 19.12.2012, 12:08
Re: afk and back command getting errors - by LetsOWN[PL] - 19.12.2012, 12:12
Re: afk and back command getting errors - by Mustafa6155 - 19.12.2012, 12:15
Re: afk and back command getting errors - by Mustafa6155 - 19.12.2012, 12:35

Forum Jump:


Users browsing this thread: 1 Guest(s)