I need help
#5

Or you can use this one from wiki lol

pawn Код:
if(!strcmp(cmdtext, "/me", true, 3)) // 3 is the length of /me
  {
    if(cmdtext[3] == 0) {
      SendClientMessage(playerid, 0xFF0000FF, "USAGE: /me [action]");
      return 1;
    }
    new str[128];
    GetPlayerName(playerid, str, sizeof(str));
    format(str, sizeof(str), "* %s %s", str, cmdtext[4]);
    SendClientMessageToAll(0xFFFF00AA, str);
    return 1;
  }
Reply


Messages In This Thread
I need help - by pablodc - 25.08.2009, 19:50
Re: I need help - by Joe Staff - 25.08.2009, 19:55
Re: I need help - by The_Tough - 25.08.2009, 19:56
Re: I need help - by Memoryz - 25.08.2009, 19:59
Re: I need help - by XtremeChio - 25.08.2009, 20:03
Re: I need help - by pablodc - 25.08.2009, 20:04
Re: I need help - by speedruntrainer - 25.08.2009, 20:17
Re: I need help - by pablodc - 25.08.2009, 20:27

Forum Jump:


Users browsing this thread: 1 Guest(s)