/flush command
#8

pawn Код:
// Putting this at top
#define Clear(%0)   for(new xz = 0; xz < 100; xz++) SendClientMessage(%0, -1, " ")

if (strcmp("/flush", cmdtext, true, 5) == 0)
{
    Clear(playerid);
    return true;
}

// ZCMD is recommended - strcmp is slow.
CMD:flush(playerid)
{
      Clear(playerid);
      return true;
}
Reply


Messages In This Thread
/flush command - by OnY - 02.12.2013, 05:32
Re: /flush command - by Kyosaur - 02.12.2013, 05:40
Re: /flush command - by OnY - 02.12.2013, 06:18
AW: /flush command - by BigETI - 02.12.2013, 06:22
Re: /flush command - by Kyosaur - 02.12.2013, 06:22
Re: /flush command - by OnY - 02.12.2013, 06:25
Re: /flush command - by OnY - 02.12.2013, 06:29
Re: /flush command - by iZN - 02.12.2013, 06:40
Re: /flush command - by OnY - 02.12.2013, 06:51
Re: /flush command - by Kyosaur - 02.12.2013, 07:20

Forum Jump:


Users browsing this thread: 1 Guest(s)