hi,
this used to work for me long time ago, its just a test plugin i used, it gives you a weapon through the menu when you type /menu in chat.
Now it doesnt give players anything.
PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <fun>
public plugin_init()
{
register_plugin("Beasts Cusom Menu", "0.1", "SaMThEMaN")
new keys = MENU_KEY_0|MENU_KEY_1|MENU_KEY_2
register_menucmd(register_menuid("Select a Weapon"), keys, "giveWeapon")
register_clcmd("say /menu", "showWeaponMenu")
}
public showWeaponMenu(id)
{
new menu[192]
new keys = MENU_KEY_0|MENU_KEY_1|MENU_KEY_2
format(menu, 191, "Which Weapon?^n^n1. M4A1^n2. AK47^n3. MP5^n4. GoldenAK")
show_menu(id, keys, menu)
return PLUGIN_HANDLED
}
public giveWeapon(id, key)
{
switch(key)
{
case 0:
{
give_item(id, "weapon_m4a1")
}
case 1:
{
give_item(id, "weapon_ak47")
}
case 2:
{
give_item(id, "weapon_mp5navy")
}
case 3:
{
server_cmd("amx_goldenak #%d", get_user_userid(id))
}
}
}
__________________