10.02.2011, 19:13
I made a simple /me command with zcmd
BTW: Sry for wrong section i missed the right one -.-
How to define cmdtext?
BTW: Sry for wrong section i missed the right one -.-
Код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
<?
CMD:me(playerid, params[])
{
new memsg[256];
GetPlayerName(playerid, memsg, sizeof(memsg));
format(memsg, sizeof(memsg), "* %s %s", memsg, cmdtext[]); //Line 7481
SendClientMessageToAll(COLOR_RED, memsg);
return 1;
}
?>
Код:
C:\Dokumente und Einstellungen\Administrator\Desktop\03cSvr\gamemodes\Mode.pwn(7481) : error 017: undefined symbol "cmdtext"

