How to make other extra items plugins to work with this(fixed). Yes. To make other extra plugin to use this do this: in the top add Код: #include <zmvip> ------------------------------------------------- Open thats plugin sma file, find: Код: zp_register_extra_item( g_item_name, g_item_cost, ZP_TEAM_HUMAN) and chage to: Код: zv_register_extra_item( g_item_name, g_item_description, g_item_cost, ZV_TEAM_HUMAN) also can be like this: Код: zv_register_extra_item("Item name", "Item description (like zm class)", 12, ZV_TEAM_HUMAN) ------------------------------------------------- Now find: Код: public zp_extra_item_selected(player, itemid) and change to: Код: public zv_extra_item_selected(player, itemid)