Raised This Month: $ Target: $400
 0% 

Custom Menu


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
SaM.ThE.MaN
Senior Member
Join Date: Jan 2010
Old 05-08-2010 , 03:57   Custom Menu
Reply With Quote #1

Greetings Modders,

As you can see i tried to add this weapon : http://forums.alliedmods.net/showthread.php?p=827532

To this custom Menu :

Quote:
#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("/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)
{
//key will start at zero
if (key == 0)
{
give_item(id, "weapon_ak47")
} else if (key == 1) {
give_item(id, "weapon_m4a1")
} else if (key == 2) {
give_item(id, "weapon_mp5navy")
} else if (key == 3) {
give_item(id, "GoldenAk.amxx")
}
}
But of course i failed, I wish some one could help and show me how to add 3rd party custom weapons and items to this menu,

Thank you

PS:
I want a Mentor that can teach me some of the basics in Plugin making, I want him to be a pro, and i learn fast so you have nothing to worry about

Last edited by SaM.ThE.MaN; 05-08-2010 at 04:01.
SaM.ThE.MaN is offline
 



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 03:49.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode