Hi, as far as adding menus in menus you have to edit the core of your ZP plugin, and on your text messages you can do this
Example:
Armor
PHP Code:
//Make sure to find " zp_extra_item_selected(player, itemid) "
public zp_extra_item_selected(player, itemid)
{
if (itemid == g_itemid_humanarmor)
{
set_pev(player, pev_armorvalue, float(min(pev(player, pev_armorvalue)+g_armor_amount, g_armor_limit)))
engfunc(EngFunc_EmitSound, player, CHAN_BODY, g_sound_buyarmor, 1.0, ATTN_NORM, 0, PITCH_NORM)
}
}
Edit
PHP Code:
public zp_extra_item_selected(player, itemid)
{
if (itemid == g_itemid_humanarmor)
{
set_pev(player, pev_armorvalue, float(min(pev(player, pev_armorvalue)+g_armor_amount, g_armor_limit)))
engfunc(EngFunc_EmitSound, player, CHAN_BODY, g_sound_buyarmor, 1.0, ATTN_NORM, 0, PITCH_NORM)
client_print_color(player, print_chat, "^x04[ZP]^x01 You^x01 Bought^x03 Anti Infection Armor !!!")
//This is extra stuff i added if u want u can delete it , it shows the player who bought the anti infection armor
new name[32]
get_user_name(player, name, 31)
set_hudmessage(200, 0, 0, -1.00, 0.84, 1, 0.0, 7.0, 1.0, 1.0, -1)
show_hudmessage(0, "%s Has Anti-Infection Armor", name)
}
}