Как сделать что бы меню открывалось на B
Как сделать меню на кнопку B

Как сделать что бы меню открывалось на буквы B?


Для Начала Зайдём В Меню, и найдём там 
public plugin_init()

и Регистрируем 
register_clcmd("buy", "команда_вызова_меню")

Идём далее
Нам нужно заблокировать autobuy; rebuy; buyequip

Для этого, после 
#define PLUGIN "blablabla"
#define VERSION "blablabla"
#define AUTHOR "blablabla"


Вставляем

new const g_szBuyCommands[ ][ ] =
{
"buyequip", "cl_autobuy",
"cl_rebuy", "cl_setautobuy", "cl_setrebuy", "client_buy_open"
};


Вертаемся обратно в 
public plugin_init()

И в конец перед закрытием кода } вставляем

new iBuyCommands;
for ( iBuyCommands = 0; iBuyCommands < sizeof g_szBuyCommands; iBuyCommands++ )
register_clcmd( g_szBuyCommands[ iBuyCommands ], "Command_BuyMenu" );


И ниже под public plugin_init()

public Command_BuyMenu( iPlayer )
{
     return PLUGIN_HANDLED;
}


И теперь просто создаём новый плагин вот с таким вот кодом

#include <amxmodx>

public plugin_init()
{
        register_clcmd("buy", "hook_buy")
        register_clcmd("client_buy_open", "hook_buy_vgu")
}

public hook_buy(id)
{
        return PLUGIN_HANDLED
}

public hook_buy_vgu(id)
{
        message_begin(MSG_ONE, 136, _, id)
        message_end()

        return PLUGIN_HANDLED
}

Hello, Our administration publishes only cannon content, put like under the post below and write the top comment, we are preparing the material just for you, Darling Гость.

Comments 3
  1. Ewer
    Ewer
    • -1
    Почему именно на B? На M, E, H, F отдельные статьи будут?
    Статья плохо оформлена
    • 21 April 2018 15:12
  2. LuXo KING Gaming
    It's a new way to make-based
    • 21 April 2018 18:21
  3. LGKiba
    LGKiba
    • -1
    thx por el tutorial yo recien comienzo en esto
    • 12 July 2018 04:22
Users belonging to group Guests cannot add comments to this article.
Base for Your Build
Information

Welcome to TB-TEAM.COM!

To become a full-fledged user of our portal, you need to register.
Register
Create your own account!

Register Now
Log In
Already registered? Go ahead and log in!

Log In