Not to sure on scripting but i have started, I don't know what includes are needed for this but i added aload. Ok In the menu i want it to make it you can only use that menu item once per round (NO IDEA HOW TO DO THIS AND WOULD LOVE SOME HELP!) and the 2nd thing would be making case 1 limited to the Counter-terrorist team.. and the case 2 limited to the terrorist and case 3 is to be left alone as i am not to sure if i am going to add any more thing's like a new wep or something in their atm.
If you find my typing isn't lacking grammer and letter's. Sorry I havn't had much sleep and school/work is fucking with me.
Please help me if you can thank you.
EDIT : Forgot to add can i get help on making it have a delay time from start of round so it doesn't screw with other things.
Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <amxmisc>
#include <fakemeta>
#include <fun>
#define PLUGIN "Poison + Bazooka"
#define VERSION "1.0"
#define AUTHOR "eskemo"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR);
register_clcmd("avpBP","PosionBazooka" );
}
public PosionBazooka(id)
{
new menu = menu_create("\rAlien + Predator Spec's :", "menu_handler");
menu_additem(menu, "\wPredator Bazooka", "1", 0);
menu_additem(menu, "\wAlien Acid", "2", 0);
menu_additem(menu, "\rComming Soon", "3", ADMIN_ADMIN);
menu_setprop(menu, MPROP_EXIT, MEXIT_ALL);
menu_display(id, menu, 0);
}
public menu_handler(id, menu, item)
{
if( item == MENU_EXIT )
{
menu_destroy(menu);
return PLUGIN_HANDLED;
}
new data[6], szName[64];
new access, callback;
menu_item_getinfo(menu, item, access, data,charsmax(data), szName,charsmax(szName), callback);
new key = str_to_num(data);
switch(key)
{
case 1:
if( CS_TEAM_CT == 1 )
{
client_print(id, print_chat, "You have just used your only Predator Missile.");
client_print(id, print_chat, "You were given 25 Armour as a bonus of using this feature.");
menu_destroy(menu);
return PLUGIN_HANDLED;
}
else
{
client_print(id, print_chat, "eskemo.info : Please wait till you are on the Predators Team.");
menu_destroy(menu);
return PLUGIN_HANDLED;
}
case 2:
if( CS_TEAM_T == 1 )
{
client_print(id, print_chat, "You have just used your only Alien Acid");
client_print(id, print_chat, "You were given a 200 health bonus for using this feature");
menu_destroy(menu);
return PLUGIN_HANDLED;
}
else
{
client_print(id, print_chat, "Eskemo.info : Please wait till you are on the Aliens Team.");
menu_destroy(menu);
return PLUGIN_HANDLED;
}
case 3:
{
client_print(id, print_chat, "Admin Selection Comming soon");
return PLUGIN_HANDLED;
}
}
menu_destroy(menu);
return PLUGIN_HANDLED;
}
__________________