/*
PLUGIN "FootSteps_RUS"
VERSION "1.0"
AUTHOR "Serjant"
*/
#include <amxmodx>
#include <hamsandwich>
#include <fun>
new const VERSION[] = "0.1";
public plugin_init()
{
register_plugin("Set user footsteps", VERSION, "floatman");
RegisterHam(Ham_Spawn, "player", "ham_spawn", 1);
}
public ham_spawn(const e_Index)
{
if(is_user_alive(e_Index))
{
new g_Nlen = menu_create("Меню шагов: ", "footsteps_handler")
menu_additem(g_Nlen, "Выключить звук шагов", "1", 0);
menu_additem(g_Nlen, "Включить звук шагов", "2", 0);
menu_setprop(g_Nlen, MPROP_EXIT, MEXIT_ALL);
menu_display(e_Index, g_Nlen, 0);
}
}
public footsteps_handler(e_Index, g_Nlen, item)
{
if( item == MENU_EXIT )
{
menu_destroy(g_Nlen)
return PLUGIN_HANDLED;
}
new szData[6], iName[64];
new szAccess, szCallBack;
menu_item_getinfo(g_Nlen, item, szAccess, szData,5, iName,63, szCallBack);
new key = str_to_num(szData)
switch(key)
{
case 1:
{
set_user_footsteps(e_Index, 1);
}
case 2:
{
set_user_footsteps(e_Index, 0);
}
}
menu_destroy(g_Nlen)
return PLUGIN_HANDLED;
}
как сделать чтоб он доступен был только для админов) пожалуйста а то не особо в скрипте шарю)
PLUGIN "FootSteps_RUS"
VERSION "1.0"
AUTHOR "Serjant"
*/
#include <amxmodx>
#include <hamsandwich>
#include <fun>
new const VERSION[] = "0.1";
public plugin_init()
{
register_plugin("Set user footsteps", VERSION, "floatman");
RegisterHam(Ham_Spawn, "player", "ham_spawn", 1);
}
public ham_spawn(const e_Index)
{
if(is_user_alive(e_Index))
{
new g_Nlen = menu_create("Меню шагов: ", "footsteps_handler")
menu_additem(g_Nlen, "Выключить звук шагов", "1", 0);
menu_additem(g_Nlen, "Включить звук шагов", "2", 0);
menu_setprop(g_Nlen, MPROP_EXIT, MEXIT_ALL);
menu_display(e_Index, g_Nlen, 0);
}
}
public footsteps_handler(e_Index, g_Nlen, item)
{
if( item == MENU_EXIT )
{
menu_destroy(g_Nlen)
return PLUGIN_HANDLED;
}
new szData[6], iName[64];
new szAccess, szCallBack;
menu_item_getinfo(g_Nlen, item, szAccess, szData,5, iName,63, szCallBack);
new key = str_to_num(szData)
switch(key)
{
case 1:
{
set_user_footsteps(e_Index, 1);
}
case 2:
{
set_user_footsteps(e_Index, 0);
}
}
menu_destroy(g_Nlen)
return PLUGIN_HANDLED;
}
как сделать чтоб он доступен был только для админов) пожалуйста а то не особо в скрипте шарю)