25.08.2014, 11:15
(
Last edited by ArchLord; 25/08/2014 at 11:50 AM.
)
Hi,sorry for 2xpost.I create a command:
This command give a reward for all players online.Reward is 100 score points and 10.000.000 cash.Is my first command.The ClientMessageToAll and command name is in romanian.You need to translate this in your server language. Good luck 
Read this please!
It happens increasingly often in server.Ma ride by car, on foot ... or simply sit still and I appear this issue::

No site license but still apare.Inclin I believe it is due to sscanf.inc or else in include, but ask the experts.
Thanks for help
pawn Code:
// This command give bonus to all players
COMMAND:premiu(playerid, params[])
{
// Send the command to all admins so they can see it
SendAdminText(playerid, "/premiu", params);
// Check if the player has logged in
if (APlayerData[playerid][LoggedIn] == true)
// Check if the player's admin-level is at least 1
if(APlayerData[playerid][PlayerLevel] >= 4)
{
for (new i; i < MAX_PLAYERS; i++)
if (IsPlayerConnected(i)) // Check if the player is connected
RewardPlayer(i, 10000000, 100);
{
// Send all players a message to inform them that all players have been healed
SendClientMessageToAll(0x00FF00FF, "Toti jucatorii au primit un bonus!");
}
}
// Let the server know that this was a valid command
return 1;
}

Read this please!
It happens increasingly often in server.Ma ride by car, on foot ... or simply sit still and I appear this issue::

No site license but still apare.Inclin I believe it is due to sscanf.inc or else in include, but ask the experts.

Thanks for help
