├── .vscode └── tasks.json ├── BO4-Lucy-Menu.code-workspace ├── BO4-Lucy-Menu.zip ├── Challenges.gsc ├── README.md ├── compiled.gscc ├── compiled.omap ├── gsc.conf ├── hashes.txt ├── images └── logo.png └── scripts ├── functions ├── Elixirs.gsc ├── Gamemodes.gsc ├── Lobby.gsc ├── Teleports.gsc ├── account.gsc ├── basic.gsc ├── clients.gsc ├── fun.gsc ├── host.gsc ├── magicbox.gsc ├── powerups.gsc ├── weapons.gsc └── zombies.gsc ├── headers.gsc ├── main.gsc ├── menu.gsc ├── structs.gsc ├── utilities.gsc └── verification.gsc /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /BO4-Lucy-Menu.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/BO4-Lucy-Menu.code-workspace -------------------------------------------------------------------------------- /BO4-Lucy-Menu.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/BO4-Lucy-Menu.zip -------------------------------------------------------------------------------- /Challenges.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/Challenges.gsc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/README.md -------------------------------------------------------------------------------- /compiled.gscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/compiled.gscc -------------------------------------------------------------------------------- /compiled.omap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gsc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/gsc.conf -------------------------------------------------------------------------------- /hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/hashes.txt -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/images/logo.png -------------------------------------------------------------------------------- /scripts/functions/Elixirs.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/Elixirs.gsc -------------------------------------------------------------------------------- /scripts/functions/Gamemodes.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/Gamemodes.gsc -------------------------------------------------------------------------------- /scripts/functions/Lobby.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/Lobby.gsc -------------------------------------------------------------------------------- /scripts/functions/Teleports.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/Teleports.gsc -------------------------------------------------------------------------------- /scripts/functions/account.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/account.gsc -------------------------------------------------------------------------------- /scripts/functions/basic.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/basic.gsc -------------------------------------------------------------------------------- /scripts/functions/clients.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/clients.gsc -------------------------------------------------------------------------------- /scripts/functions/fun.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/fun.gsc -------------------------------------------------------------------------------- /scripts/functions/host.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/host.gsc -------------------------------------------------------------------------------- /scripts/functions/magicbox.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/magicbox.gsc -------------------------------------------------------------------------------- /scripts/functions/powerups.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/powerups.gsc -------------------------------------------------------------------------------- /scripts/functions/weapons.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/weapons.gsc -------------------------------------------------------------------------------- /scripts/functions/zombies.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/functions/zombies.gsc -------------------------------------------------------------------------------- /scripts/headers.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/headers.gsc -------------------------------------------------------------------------------- /scripts/main.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/main.gsc -------------------------------------------------------------------------------- /scripts/menu.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/menu.gsc -------------------------------------------------------------------------------- /scripts/structs.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/structs.gsc -------------------------------------------------------------------------------- /scripts/utilities.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/utilities.gsc -------------------------------------------------------------------------------- /scripts/verification.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheUnknownCod3r/BO4-Lucy-Menu/HEAD/scripts/verification.gsc --------------------------------------------------------------------------------