09.08.2010, 01:10
I'm sorry, but I can't do it in strcmp.. I'll do it for you in ZCMD & sscanf though, maybe you could convert it from there. Also, I don't think you need ReturnUser, since you're not using a parameter.
pawn Код:
COMMAND:getallhere(playerid, params[])
{
if(File[playerid][Administrator] >= 4)
{
for(new i = 0; i <= MAX_PLAYERS; i++)
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
SetPlayerPos(i, X, Y, Z);
}
}
}

