hey.. i coded in some minutes (1 min^^) simple menu panic feature..
1. you need a arry for your featues.. like this:
Code:
#define MaxFeatures 20 // here you have to set your features (how much u have)
int Features[MaxFeatures]; // now your array is done!
2. you have to give your features a ID
Code:
int aimbot = 1;
int wallhack = 2;
int chams = 3;
... and so on
3. if you have a crap menu like topblast v 1.0 (idk.. HL_BOT use it & some other guys)
(i use my own

)
idk how to make the menu entry...
Code:
"Wallhack" ... &Feature[wallhack]
// and later if you like to use your wallhack
if (Feature[wallhack] == 1)
{
// wallhack code
}
4. then in your hack thread, function, we
(we only set all array ID´s the value 0!)
(your font settings should be react by chageing the value and not by using mouse or hotkay.. (mouse & hotkey reaction are ga* )
Code:
if (Feature[MenuPanic] == 1)
{
for(int i = 0; i < MaxFeatures; i++)
{
if(i == MenuPanic) {}
else
{
Feature[i] = 0;
}
}
}
yeah so simple was menu panic to set all features "off"
coded by me @
Code[VB]