És így:
[pawn]#include <a_samp>
#if defined FILTERSCRIPT
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/Segitség\", cmdtext, true, 10) == 0)
{
SendClientMessage(playerid,0x0000BBAA,\"Parancsok: /parancsok | Szabályok: /szabályok | Weboldal: /web\");
return 1;
}
return 0;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(\"/parancsok\", cmdtext, true, 10) == 0)
{
SendClientMessage(playerid,0x0000BBAA,\"Parancsok: /tele, /help, /ls, /sf, /lv, /v, /menu, /web\");
return 1;
}
return 0;
}
#endif[/pawn]