Command doesn`t work 0.3b R2-3!!!!!
#4

pawn Код:
//------------------------------------------------------------------------------

#define FILTERSCRIPT
#include <a_samp>
#if defined FILTERSCRIPT
#define COLOR_YELLOW 0xFFFF00AA
//------------------------------------------------------------------------------
public OnFilterScriptInit()
{
    return 1;
}
//------------------------------------------------------------------------------
public OnFilterScriptExit()
{
    return 1;
}
//------------------------------------------------------------------------------
#else
//------------------------------------------------------------------------------
#endif
//------------------------------------------------------------------------------
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/heal", cmdtext, true, 5) == 0)
{
    SetPlayerHealth(playerid, 100);
    SendClientMessage(playerid, COLOR_YELLOW, "(INFO) You have been healed!");
    return 1;
}
    if (strcmp("/kill", cmdtext, true, 5) == 0)
{
    SetPlayerHealth(playerid, 0);
    SendClientMessage(playerid, COLOR_YELLOW, "(INFO) You have commited suicide!");
    return 1;
}
    if (strcmp("/help", cmdtext, true, 5) == 0)
{
    SendClientMessage(playerid, COLOR_YELLOW, "(INFO) Welcome to my Server's HELP command!");
    return 1;
}
    return 0;
}
//------------------------------------------------------------------------------
If you cant fix it replace all with that.


anyways a little explain, you just need to define that color you gonna use as
Код:
#define COLOR_YELLOW 0xFFFF00AA
Then you just need to replace the 0xFFFF00AA with COLOR_YELLOW, compile it and will work.

No zcmd need it lol
Reply


Messages In This Thread
[HELP]/Command doesn`t work 0.3b R2-3!!!!! - by vakhtang - 10.12.2010, 12:04
Re: Command doesn`t work 0.3b R2-3!!!!! - by vakhtang - 10.12.2010, 12:43
Re: Command doesn`t work 0.3b R2-3!!!!! - by Scones - 10.12.2010, 12:55
Respuesta: Command doesn`t work 0.3b R2-3!!!!! - by kirk - 10.12.2010, 13:11

Forum Jump:


Users browsing this thread: 2 Guest(s)