11.02.2019, 02:51
and so it is correct to order it to the cmd
CMD:frist(playerid,params[])
{
new price, winner;
if(PlayerInfo[playerid][Level] < 6) return SendClientMessage(playerid,red,"ERROR: You are not a high enough level to use this command");
if(joinable == 0 && event == 0) return SendClientMessage(playerid, red, "ERROR: No Hay Ningun Evento Para Finalizar!.");
if(sscanf(params,"ui",winner,price)) return SendClientMessage(playerid,COLOR_RED,"Usage: /winner [ID] [Price]");
new str[128];
format(str,128,"%s (%i) has won the event, and gained %d",GetName(winner),winner,price);
GameTextForAll(str,10000,3);
GivePlayerScore(winner,price);
return 1;
}
CMD:frist(playerid,params[])
{
new price, winner;
if(PlayerInfo[playerid][Level] < 6) return SendClientMessage(playerid,red,"ERROR: You are not a high enough level to use this command");
if(joinable == 0 && event == 0) return SendClientMessage(playerid, red, "ERROR: No Hay Ningun Evento Para Finalizar!.");
if(sscanf(params,"ui",winner,price)) return SendClientMessage(playerid,COLOR_RED,"Usage: /winner [ID] [Price]");
new str[128];
format(str,128,"%s (%i) has won the event, and gained %d",GetName(winner),winner,price);
GameTextForAll(str,10000,3);
GivePlayerScore(winner,price);
return 1;
}