Como Hacer un cmd
#3

Quote:
Originally Posted by the_chaoz
usa un array. algo asi:
pawn Код:
new Usado[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
  Usado[playerid] = 0;
  return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
  if(strcmp(cmdtext, "/micomando", true) == 0){
    if(Usado[playerid] == 0){
      //codigo del comando
      return Usado[playerid]++;
    }
    else return SendClientMessage(playerid, color, "mensaje");
  }
  return 0;
}
espero que te sirva
Gracias the_chaoz a mi me sirvio n_n larga vida
Reply


Messages In This Thread
Como Hacer un cmd - by Lautaro_eb - 16.04.2010, 03:35
Re: Como Hacer un cmd - by TheChaoz - 16.04.2010, 03:57
Re: Como Hacer un cmd - by Carlos_Martinez - 16.04.2010, 04:03
Re: Como Hacer un cmd - by Lautaro_eb - 16.04.2010, 10:30
Re: Como Hacer un cmd - by Cesar_Biker - 16.04.2010, 13:21
Re: Como Hacer un cmd - by TheChaoz - 17.04.2010, 06:26
Re: Como Hacer un cmd - by Cesar_Biker - 17.04.2010, 09:32

Forum Jump:


Users browsing this thread: 1 Guest(s)