08.02.2020, 16:53
Уже готова простая реализация.
PHP Code:
#include <strlib>;
public OnPlayerText(playerid, text[])
{
if (strgetfirstc(text) == '.')
{
if (!strcmp(text, ".меню", true, 5))
{
Player_ShowMenu(playerid);
return 0;
}
if (!strcmp(text, ".имя", true, 4))
{
new params[28], id, nick[24];
strmid(params, text, 4, strlen(text));
if (sscanf(params, "us[24]", id, nick))
{
SendClientMessage(playerid, COLOR_DARK, ".имя <id игрока> <новое имя>");
return 0;
}
SetPlayerName(id, nick);
return 0;
}
new string[144];
format(string, 144, "Неизвестная команда "COL_INFO"%s", text);
SendClientMessage(playerid, COLOR_DARK, string);
return 0;
}
}