Arma 3 Scroll Menu
Hello,
I did a Scoll menu like :
if(isNil "LYSTIC_MENU_LOADED") then {
player addAction["Repair",{vehicle player setDamage 0;hint "REPAIRED!";}];
player addAction["Heal",{player setDamage 0;hint "HEALED!";}];
player addAction["Give Life Cash",{life_cash = life_cash + 5000;hint "YOU ARE NOW $5,000 RICHER!";}];
player addAction["Unlock Vehicle",{cursorTarget lock false;vehicle player lock false;hint "UNLOCKED";}];
player addAction["Destroy Target",{cursorTarget setDamage 1;hint "DESTROYED!";}];
LYSTIC_MENU_LOADED = true;
};
But How I can Make Categories ?
Like Main, Weapon,Super Scripts
and then If I pres on Main I get more functions like ESp ...