1 problem is fixed !
In .cfg file add new line:
PHP Code:
#define MAX_PISTOLS_MENU2 0
In .sma file change:
PHP Code:
g_remember_selection[id] = MAX_PISTOLS_MENU;
--->
PHP Code:
g_remember_selection[id] = MAX_PISTOLS_MENU2;
2 lines
PHP Code:
if ( PlayerLevel[id] > MAX_PISTOLS_MENU - 1 )
--->
PHP Code:
if ( PlayerLevel[id] > MAX_PISTOLS_MENU2 - 1 )
2 lines
PHP Code:
if ( !is_user_alive(id) || PlayerLevel[id] < MAX_PISTOLS_MENU )
--->
PHP Code:
if ( !is_user_alive(id) || PlayerLevel[id] < MAX_PISTOLS_MENU2 )