├── .gitattributes ├── .gitignore ├── Functions ├── GameModes │ ├── AllTheWeapons.gsc │ ├── ModeCommonScripts.gsc │ └── Sharpshooter.gsc ├── MapScripts │ ├── Ascension.gsc │ ├── BusDepot.gsc │ ├── CommonMapScripts.gsc │ ├── DerEisendrache.gsc │ ├── DieRise.gsc │ ├── Diner.gsc │ ├── GorodKrovi.gsc │ ├── KinoDerToten.gsc │ ├── MobOfTheDead.gsc │ ├── Moon.gsc │ ├── Nacht.gsc │ ├── Origins.gsc │ ├── Revelations.gsc │ ├── ShadowsOfEvil.gsc │ ├── ShangriLa.gsc │ ├── Shino.gsc │ ├── TheGiant.gsc │ ├── Tunnel.gsc │ ├── Verruckt.gsc │ └── ZetsubouNoShima.gsc ├── Spawnables │ ├── drop_tower.gsc │ ├── merry_go_round.gsc │ ├── skybase.gsc │ └── spawnable_system.gsc ├── advanced_scripts.gsc ├── aimbot.gsc ├── aispawner.gsc ├── allplayers.gsc ├── basic.gsc ├── bullet.gsc ├── forge.gsc ├── fun.gsc ├── message.gsc ├── model_manipulation.gsc ├── player.gsc ├── powerups.gsc ├── profile.gsc ├── server.gsc ├── server_tweakables.gsc ├── teleport.gsc ├── weaponry.gsc └── zombies.gsc ├── Menu ├── StringTables.gsc ├── base.gsc ├── menu.gsc ├── menu_customization.gsc ├── overrides.gsc ├── structures.gsc ├── utilities.gsc └── verification.gsc ├── README.md └── main.gsc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/.gitignore -------------------------------------------------------------------------------- /Functions/GameModes/AllTheWeapons.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/GameModes/AllTheWeapons.gsc -------------------------------------------------------------------------------- /Functions/GameModes/ModeCommonScripts.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/GameModes/ModeCommonScripts.gsc -------------------------------------------------------------------------------- /Functions/GameModes/Sharpshooter.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/GameModes/Sharpshooter.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/Ascension.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/Ascension.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/BusDepot.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/BusDepot.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/CommonMapScripts.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/CommonMapScripts.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/DerEisendrache.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/DerEisendrache.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/DieRise.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/DieRise.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/Diner.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/Diner.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/GorodKrovi.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/GorodKrovi.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/KinoDerToten.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/KinoDerToten.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/MobOfTheDead.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/MobOfTheDead.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/Moon.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/Moon.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/Nacht.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/Nacht.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/Origins.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/Origins.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/Revelations.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/Revelations.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/ShadowsOfEvil.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/ShadowsOfEvil.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/ShangriLa.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/ShangriLa.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/Shino.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/Shino.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/TheGiant.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/TheGiant.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/Tunnel.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/Tunnel.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/Verruckt.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/Verruckt.gsc -------------------------------------------------------------------------------- /Functions/MapScripts/ZetsubouNoShima.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/MapScripts/ZetsubouNoShima.gsc -------------------------------------------------------------------------------- /Functions/Spawnables/drop_tower.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/Spawnables/drop_tower.gsc -------------------------------------------------------------------------------- /Functions/Spawnables/merry_go_round.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/Spawnables/merry_go_round.gsc -------------------------------------------------------------------------------- /Functions/Spawnables/skybase.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/Spawnables/skybase.gsc -------------------------------------------------------------------------------- /Functions/Spawnables/spawnable_system.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/Spawnables/spawnable_system.gsc -------------------------------------------------------------------------------- /Functions/advanced_scripts.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/advanced_scripts.gsc -------------------------------------------------------------------------------- /Functions/aimbot.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/aimbot.gsc -------------------------------------------------------------------------------- /Functions/aispawner.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/aispawner.gsc -------------------------------------------------------------------------------- /Functions/allplayers.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/allplayers.gsc -------------------------------------------------------------------------------- /Functions/basic.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/basic.gsc -------------------------------------------------------------------------------- /Functions/bullet.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/bullet.gsc -------------------------------------------------------------------------------- /Functions/forge.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/forge.gsc -------------------------------------------------------------------------------- /Functions/fun.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/fun.gsc -------------------------------------------------------------------------------- /Functions/message.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/message.gsc -------------------------------------------------------------------------------- /Functions/model_manipulation.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/model_manipulation.gsc -------------------------------------------------------------------------------- /Functions/player.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/player.gsc -------------------------------------------------------------------------------- /Functions/powerups.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/powerups.gsc -------------------------------------------------------------------------------- /Functions/profile.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/profile.gsc -------------------------------------------------------------------------------- /Functions/server.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/server.gsc -------------------------------------------------------------------------------- /Functions/server_tweakables.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/server_tweakables.gsc -------------------------------------------------------------------------------- /Functions/teleport.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/teleport.gsc -------------------------------------------------------------------------------- /Functions/weaponry.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/weaponry.gsc -------------------------------------------------------------------------------- /Functions/zombies.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Functions/zombies.gsc -------------------------------------------------------------------------------- /Menu/StringTables.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Menu/StringTables.gsc -------------------------------------------------------------------------------- /Menu/base.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Menu/base.gsc -------------------------------------------------------------------------------- /Menu/menu.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Menu/menu.gsc -------------------------------------------------------------------------------- /Menu/menu_customization.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Menu/menu_customization.gsc -------------------------------------------------------------------------------- /Menu/overrides.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Menu/overrides.gsc -------------------------------------------------------------------------------- /Menu/structures.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Menu/structures.gsc -------------------------------------------------------------------------------- /Menu/utilities.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Menu/utilities.gsc -------------------------------------------------------------------------------- /Menu/verification.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/Menu/verification.gsc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/README.md -------------------------------------------------------------------------------- /main.gsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CF4x99/Apparition/HEAD/main.gsc --------------------------------------------------------------------------------