One Little Problem...
#3

Ive changed it to this:
pawn Code:
dcmd_slapall(playerid,params[])
{
    #pragma unused params
    if(IsPlayerCommandLevel(playerid,"slapall")
    {
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            if(IsPlayerConnected(i))
            {
                new string[100], name[24];
                GetPlayerName(playerid,name,24);
                format(string,sizeof(string),"%s has slapped everyone",name);
                SendClientMessageToAll(-1, string);
            }
        }
    }  
    else
    {
        return SendLevelErrorMessage(playerid,"slapall");
    }
}
Now I only get 2 errors:
Code:
XAdmin.pwn(367) : error 001: expected token: ")", but found "{"
XAdmin.pwn(383) : warning 209: function "dcmd_slapall" should return a value
EDIT: Nevermind, I fixed it! Both of you can have a rep!
Reply


Messages In This Thread
One Little Problem... - by Tigerbeast11 - 22.08.2011, 15:28
Re: One Little Problem... - by Darnell - 22.08.2011, 15:29
Re: One Little Problem... - by Tigerbeast11 - 22.08.2011, 15:36
Re: One Little Problem... - by Dragony92 - 22.08.2011, 16:58

Forum Jump:


Users browsing this thread: 1 Guest(s)