pulya_na_vilet
Участник
- Сообщения
- 33
- Реакции
- 2
на 34 не выводиться меню,только в консоли пишет всякую хрень
Текст/код исходника в кодировке UTF-8 без BOM - вот ключ к правильному отображению кириллицы.не видно русских букв
Текст/код исходника в кодировке UTF-8 без BOM - вот ключ к правильному отображению кириллицы.
редактирую в Notepad ++
Он у тебя по умолчанию "перекодирует" (преобразует) в ANSI, вот и отображается бред.когда открываю через Total Commander
Все сделал создал новый текстовый в notepad++Он у тебя по умолчанию "перекодирует" (преобразует) в ANSI, вот и отображается бред.Заранее поставить требуемую кодировку (на чистом "листе"), а уже после вставлять туда весь свой текст с латиницей, да сохранить, наблюдая, чтобы после всех действий (на уже сохранённом файле) кодировка не изменилась.
public Action:Timer_WelcomeMessage(Handle:timer, any:client) {
if (GetConVarBool(g_cvarWelcome) && IsClientConnected(client) && IsClientInGame(client) && !IsFakeClient(client))
PrintToChat(client, "\x01[SM] Для получения справки, пишите \x04!helpmenu\x01, \x04!help \x01 или \x04!hm \x01 в чат");
}
/*
* In-game Help Menu
* Written by chundo (chundo@mefightclub.com)
*
* Licensed under the GPL version 2 or above
*/
#pragma semicolon 1
#include <sourcemod>
#define PLUGIN_VERSION "0.3"
enum ChatCommand {
String:command[32],
String:description[255]
}
enum HelpMenuType {
HelpMenuType_List,
HelpMenuType_Text
}
enum HelpMenu {
String:name[32],
String:title[128],
HelpMenuType:type,
Handle:items,
itemct
}
// CVars
new Handle:g_cvarWelcome = INVALID_HANDLE;
new Handle:g_cvarAdmins = INVALID_HANDLE;
// Help menus
new Handle:g_helpMenus = INVALID_HANDLE;
// Map cache
new Handle:g_mapArray = INVALID_HANDLE;
new g_mapSerial = -1;
// Config parsing
new g_configLevel = -1;
public Plugin:myinfo =
{
name = "In-game Help Menu",
author = "chundo",
description = "Display a help menu to users",
version = PLUGIN_VERSION,
url = "http://www.mefightclub.com"
};
public OnPluginStart() {
CreateConVar("sm_helpmenu_version", PLUGIN_VERSION, "Help menu version", FCVAR_PLUGIN|FCVAR_SPONLY|FCVAR_REPLICATED|FCVAR_NOTIFY);
g_cvarWelcome = CreateConVar("sm_helpmenu_welcome", "1", "Show welcome message to newly connected users.", FCVAR_PLUGIN);
g_cvarAdmins = CreateConVar("sm_helpmenu_admins", "1", "Show a list of online admins in the menu.", FCVAR_PLUGIN);
RegConsoleCmd("sm_helpmenu", Command_HelpMenu, "Display the help menu.", FCVAR_PLUGIN);
RegConsoleCmd("sm_hm", Command_HelpMenu, "Display the help menu.", FCVAR_PLUGIN);
RegConsoleCmd("sm_help", Command_HelpMenu, "Display the help menu.", FCVAR_PLUGIN);
new String:hc[PLATFORM_MAX_PATH];
BuildPath(Path_SM, hc, sizeof(hc), "configs/helpmenu.cfg");
g_mapArray = CreateArray(32);
ParseConfigFile(hc);
AutoExecConfig(false);
}
public OnMapStart() {
new String:hc[PLATFORM_MAX_PATH];
BuildPath(Path_SM, hc, sizeof(hc), "configs/helpmenu.cfg");
ParseConfigFile(hc);
}
public OnClientPutInServer(client) {
if (GetConVarBool(g_cvarWelcome))
CreateTimer(30.0, Timer_WelcomeMessage, client);
}
public Action:Timer_WelcomeMessage(Handle:timer, any:client) {
if (GetConVarBool(g_cvarWelcome) && IsClientConnected(client) && IsClientInGame(client) && !IsFakeClient(client))
PrintToChat(client, "\x01[SM] Для получения справки, пишите \x04!helpmenu\x01, \x04!help \x01 или \x04!hm \x01 в чат");
}
bool:ParseConfigFile(const String:file[]) {
if (g_helpMenus != INVALID_HANDLE) {
ClearArray(g_helpMenus);
CloseHandle(g_helpMenus);
g_helpMenus = INVALID_HANDLE;
}
new Handle:parser = SMC_CreateParser();
SMC_SetReaders(parser, Config_NewSection, Config_KeyValue, Config_EndSection);
SMC_SetParseEnd(parser, Config_End);
new line = 0;
new col = 0;
new String:error[128];
new SMCError:result = SMC_ParseFile(parser, file, line, col);
CloseHandle(parser);
if (result != SMCError_Okay) {
SMC_GetErrorString(result, error, sizeof(error));
LogError("%s on line %d, col %d of %s", error, line, col, file);
}
return (result == SMCError_Okay);
}
public SMCResult:Config_NewSection(Handle:parser, const String:section[], bool:quotes) {
g_configLevel++;
if (g_configLevel == 1) {
new hmenu[HelpMenu];
strcopy(hmenu[name], sizeof(hmenu[name]), section);
hmenu[items] = CreateDataPack();
hmenu[itemct] = 0;
if (g_helpMenus == INVALID_HANDLE)
g_helpMenus = CreateArray(sizeof(hmenu));
PushArrayArray(g_helpMenus, hmenu[0]);
}
return SMCParse_Continue;
}
public SMCResult:Config_KeyValue(Handle:parser, const String:key[], const String:value[], bool:key_quotes, bool:value_quotes) {
new msize = GetArraySize(g_helpMenus);
new hmenu[HelpMenu];
GetArrayArray(g_helpMenus, msize-1, hmenu[0]);
switch (g_configLevel) {
case 1: {
if(strcmp(key, "title", false) == 0)
strcopy(hmenu[title], sizeof(hmenu[title]), value);
if(strcmp(key, "type", false) == 0) {
if(strcmp(value, "text", false) == 0)
hmenu[type] = HelpMenuType_Text;
else
hmenu[type] = HelpMenuType_List;
}
}
case 2: {
WritePackString(hmenu[items], key);
WritePackString(hmenu[items], value);
hmenu[itemct]++;
}
}
SetArrayArray(g_helpMenus, msize-1, hmenu[0]);
return SMCParse_Continue;
}
public SMCResult:Config_EndSection(Handle:parser) {
g_configLevel--;
if (g_configLevel == 1) {
new hmenu[HelpMenu];
new msize = GetArraySize(g_helpMenus);
GetArrayArray(g_helpMenus, msize-1, hmenu[0]);
ResetPack(hmenu[items]);
}
return SMCParse_Continue;
}
public Config_End(Handle:parser, bool:halted, bool:failed) {
if (failed)
SetFailState("Plugin configuration error");
}
public Action:Command_HelpMenu(client, args) {
Help_ShowMainMenu(client);
return Plugin_Handled;
}
Help_ShowMainMenu(client) {
new Handle:menu = CreateMenu(Help_MainMenuHandler);
SetMenuExitBackButton(menu, false);
SetMenuTitle(menu, "Меню помощи\n ");
new msize = GetArraySize(g_helpMenus);
new hmenu[HelpMenu];
new String:menuid[10];
for (new i = 0; i < msize; ++i) {
Format(menuid, sizeof(menuid), "helpmenu_%d", i);
GetArrayArray(g_helpMenus, i, hmenu[0]);
AddMenuItem(menu, menuid, hmenu[name]);
}
AddMenuItem(menu, "maplist", "Список карт");
if (GetConVarBool(g_cvarAdmins))
AddMenuItem(menu, "admins", "Список Админов онлаин");
DisplayMenu(menu, client, 30);
}
public Help_MainMenuHandler(Handle:menu, MenuAction:action, param1, param2) {
if (action == MenuAction_End) {
CloseHandle(menu);
} else if (action == MenuAction_Select) {
new String:buf[64];
new msize = GetArraySize(g_helpMenus);
if (param2 == msize) { // Maps
new Handle:mapMenu = CreateMenu(Help_MenuHandler);
SetMenuExitBackButton(mapMenu, true);
ReadMapList(g_mapArray, g_mapSerial, "default");
Format(buf, sizeof(buf), "Список карт (%d maps)\n ", GetArraySize(g_mapArray));
SetMenuTitle(mapMenu, buf);
if (g_mapArray != INVALID_HANDLE) {
new mapct = GetArraySize(g_mapArray);
new String:mapname[64];
for (new i = 0; i < mapct; ++i) {
GetArrayString(g_mapArray, i, mapname, sizeof(mapname));
AddMenuItem(mapMenu, mapname, mapname, ITEMDRAW_DISABLED);
}
}
DisplayMenu(mapMenu, param1, 30);
}
else if (param2 == msize+1)
{ // Admins
new Handle:adminMenu = CreateMenu(Help_MenuHandler);
SetMenuExitBackButton(adminMenu, true);
SetMenuTitle(adminMenu, "Админы онлайн\n ");
new String:aname[64];
for(new i = 1; i <= MaxClients; i++)
{
if(IsClientInGame(i))
{
new AdminId:AdminID = GetUserAdmin(i);
if(AdminID != INVALID_ADMIN_ID)
{
GetClientName(i, aname, sizeof(aname));
AddMenuItem(adminMenu, aname, aname, ITEMDRAW_DISABLED);
}
}
}
DisplayMenu(adminMenu, param1, 30);
}
else
{ // Menu from config file
if (param2 <= msize) {
new hmenu[HelpMenu];
GetArrayArray(g_helpMenus, param2, hmenu[0]);
new String:mtitle[512];
Format(mtitle, sizeof(mtitle), "%s\n ", hmenu[title]);
if (hmenu[type] == HelpMenuType_Text) {
new Handle:cpanel = CreatePanel();
SetPanelTitle(cpanel, mtitle);
new String:text[128];
new String:junk[128];
for (new i = 0; i < hmenu[itemct]; ++i) {
ReadPackString(hmenu[items], junk, sizeof(junk));
ReadPackString(hmenu[items], text, sizeof(text));
DrawPanelText(cpanel, text);
}
for (new j = 0; j < 7; ++j)
DrawPanelItem(cpanel, " ", ITEMDRAW_NOTEXT);
DrawPanelText(cpanel, " ");
DrawPanelItem(cpanel, "Назад", ITEMDRAW_CONTROL);
DrawPanelItem(cpanel, " ", ITEMDRAW_NOTEXT);
DrawPanelText(cpanel, " ");
DrawPanelItem(cpanel, "Выход", ITEMDRAW_CONTROL);
ResetPack(hmenu[items]);
SendPanelToClient(cpanel, param1, Help_MenuHandler, 30);
CloseHandle(cpanel);
} else {
new Handle:cmenu = CreateMenu(Help_CustomMenuHandler);
SetMenuExitBackButton(cmenu, true);
SetMenuTitle(cmenu, mtitle);
new String:cmd[128];
new String:desc[128];
for (new i = 0; i < hmenu[itemct]; ++i) {
ReadPackString(hmenu[items], cmd, sizeof(cmd));
ReadPackString(hmenu[items], desc, sizeof(desc));
new drawstyle = ITEMDRAW_DEFAULT;
if (strlen(cmd) == 0)
drawstyle = ITEMDRAW_DISABLED;
AddMenuItem(cmenu, cmd, desc, drawstyle);
}
ResetPack(hmenu[items]);
DisplayMenu(cmenu, param1, 30);
}
}
}
}
}
public Help_MenuHandler(Handle:menu, MenuAction:action, param1, param2) {
if (action == MenuAction_End) {
CloseHandle(menu);
} else if (menu == INVALID_HANDLE && action == MenuAction_Select && param2 == 8) {
Help_ShowMainMenu(param1);
} else if (action == MenuAction_Cancel) {
if (param2 == MenuCancel_ExitBack)
Help_ShowMainMenu(param1);
}
}
public Help_CustomMenuHandler(Handle:menu, MenuAction:action, param1, param2) {
if (action == MenuAction_End) {
CloseHandle(menu);
} else if (action == MenuAction_Select) {
new String:itemval[32];
GetMenuItem(menu, param2, itemval, sizeof(itemval));
if (strlen(itemval) > 0)
FakeClientCommand(param1, itemval);
} else if (action == MenuAction_Cancel) {
if (param2 == MenuCancel_ExitBack)
Help_ShowMainMenu(param1);
}
я делал но не помогает не знаю в чем проблема ... все плагины у меня работают норм :beee:sex101, там есть кнопочка преобразовать в UTF-8 без BOM
я делал но не помогает не знаю в чем проблема ... все плагины у меня работают норм :beee:
"Menu Name"
{
"title" "Menu Title"
"type" "list"
"items"
{
"" "Here's an informational item"
"sm_browse www.mysite.com" "This launches a client command when selected"
}
}
Ребят вопрос такой, у меня не работает данный код
В консоли пишет Unknown command: sm_browse, как решить?
Народ,помогите исправить такую херню,в чате инфа что там надо набрать !helpmenu вот такая .
[SM] For help, type !helpmenu in chat
А я хожу к примеру,меню помощи на сервере !helpmenu в чат