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

When I enter server command doesn't work
Here is Code:
pawn Код:
//------------------------------------------------------------------------------
#define FILTERSCRIPT
#include <a_samp>
#if defined FILTERSCRIPT
//------------------------------------------------------------------------------
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, 0xFFFF00AA, "(INFO) You have been healed!");
    return 1;
}
    if (strcmp("/kill", cmdtext, true, 5) == 0)
{
    SetPlayerHealth(playerid, 0);
    SendClientMessage(playerid, 0xFFFF00AA, "(INFO) You have commited suicide!");
    return 1;
}
    if (strcmp("/help", cmdtext, true, 5) == 0)
{
    SendClientMessage(playerid, 0xFFFF00AA, "(INFO) Welcome to my Server's HELP command!");
    return 1;
}
    return 0;
}
//------------------------------------------------------------------------------
I don't know why it doesn't work Everything is just fine and right
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: 1 Guest(s)