SOLVED with that menu show up!
Now I have other problems with menu...
1th - When some one chooses from menu Extra Speed, they don't get it... This is how looks speed code:
PHP Code:
public ev_CurWeapon(id)
{
if(g_iSpeedy[id])
{
new iCheckWeapon = read_data(2)
if(iCheckWeapon != g_iCheckWeapon[id])
{
g_iCheckWeapon[id] = iCheckWeapon
new Float:fMaxSpeed = get_user_maxspeed(id)
if(fMaxSpeed < 450.0)
{
set_user_maxspeed(id, 450.0)
}
}
}
}
and:
PHP Code:
case 3:
{
set_user_maxspeed(id , 450.0);
client_print(id, print_center , "Your speed increased!");
g_iSpeedy[id] = true
}
Why this isn't working?!
2nd - How to make, that only CT's can choose weapon from menu?
P.S. Sorry for double-post.