Posts: 188
Threads: 61
Joined: Nov 2012
PHP код:
error 010: invalid function or declaration
error 010: invalid function or declaration
On those two lines:
PHP код:
if(adminCount == 0) SendClientMessage(playerid,-1,"There is no admin online!");
return 1;
Here is the whole command:
PHP код:
CMD:admins(playerid,params[])
{
new adminCount,string[128];
new Name[MAX_PLAYER_NAME];
GetPlayerName(playerid, Name, sizeof(Name));
if(PInfo[playerid][Level] > 0) {
format(string,sizeof(string),"[%s] %s",AdminLevelName(playerid),Name);
SendClientMessage(playerid,-1,string);
adminCount++;
}
}
if(adminCount == 0) SendClientMessage(playerid,-1,"There is no admin online!");
return 1;
}
And please help, I couldnt findout to give REP last time, but I found out to do now!
Posts: 772
Threads: 79
Joined: Dec 2012
pawn Код:
CMD:admins(playerid,params[])
{
new adminCount,string[128];
new Name[MAX_PLAYER_NAME];
GetPlayerName(playerid, Name, sizeof(Name));
if(PInfo[playerid][Level] > 0) {
format(string,sizeof(string),"[%s] %s",AdminLevelName(playerid),Name);
SendClientMessage(playerid,-1,string);
adminCount++;
}
}
if(adminCount == 0) return SendClientMessage(playerid,-1,"There is no admin online!");
return 1;
}
Posts: 176
Threads: 23
Joined: May 2012
Reputation:
0
Now let's post all players of samp.com the copied respons...loosers
Posts: 188
Threads: 61
Joined: Nov 2012
lmao, none of this worked.
Posts: 188
Threads: 61
Joined: Nov 2012
got one error now:
error 010: invalid function or declaration
on this line:
PHP код:
if(adminCount == 0)