[Solucionado] Comando de dar dinero.
#1

pawn Код:
dcmd_dineroatodos(playerid, params[])
{
    if(PlayerInfo[playerid][Nivel] >= 4)
    {
      new tmp[256], Index; tmp = strtok(params, Index);
      if(!strlen(params)) return SendClientMessage(playerid, Amarillo, "* Usa: /DineroAT (/DineroATodos) <Cantidad>");
      new string[256], string2[256], Nombre[24]; GetPlayerName(playerid, Nombre, sizeof(Nombre));
      for(new i = 0; i < MAX_PLAYERS; i++) if(IsPlayerConnected(i)) GivePlayerMoney(i, params[1]);
      format(string, sizeof(string), "* Administrador %s ha dado a todos los jugadores %d$.", Nombre, params[1]); SendClientMessageToAll(Azul, string); PlayerPlaySound(playerid, 1137, 0.0, 0.0, 0.0);
      format(string2, sizeof(string2), "%d $", params[1]); return GameTextForAll(string2, 2000, 4);
    } else return SendClientMessage(playerid, Rojo, "* Debes ser Administrador nivel +4 para poder dar dinero a todos los jugadores.");
}
El problema es que siempre da 48$.
Reply


Messages In This Thread
[Solucionado] Comando de dar dinero. - by CristianTdj - 16.05.2010, 19:43
Re: [Error] Comando de dar dinero - by TheChaoz - 16.05.2010, 23:41
Re: [Error] Comando de dar dinero - by CristianTdj - 17.05.2010, 14:38
Re: [Error] Comando de dar dinero - by TheChaoz - 17.05.2010, 19:23
Re: [Error] Comando de dar dinero - by CristianTdj - 19.05.2010, 14:13

Forum Jump:


Users browsing this thread: 1 Guest(s)