├── .gitignore ├── QIIIA Game Source License.doc ├── README.md ├── assets ├── entityplus.bat └── entityplus │ ├── description.txt │ ├── docs │ ├── entityplus-assets.txt │ ├── entityplus-backpack & debris models.txt │ ├── entityplus-keycard.txt │ ├── entityplus-logo.txt │ ├── entityplus-sfx.txt │ ├── entityplus-skeletonkeys.txt │ ├── manual.docx │ ├── readme.txt │ └── version history.txt │ ├── gfx │ ├── damage │ │ ├── bullet_mrk_paint.jpg │ │ ├── burn_med_mrk_paint.jpg │ │ ├── hole_lg_mrk_paint.jpg │ │ └── plasma_mrk_paint.jpg │ └── misc │ │ └── spark.tga │ ├── icons │ ├── icon_backpack.tga │ ├── iconr_green.tga │ ├── key_blue.tga │ ├── key_gold.tga │ ├── key_green.tga │ ├── key_iron.tga │ ├── key_master.tga │ ├── key_red.tga │ ├── key_silver.tga │ └── key_yellow.tga │ ├── levelshots │ └── ep_example.jpg │ ├── maps │ └── ep_example.map │ ├── menu │ ├── art │ │ ├── loading.tga │ │ ├── logo2.tga │ │ ├── mainoverlay.tga │ │ ├── scores_0.tga │ │ ├── scores_1.tga │ │ ├── skill1.tga │ │ ├── skill2.tga │ │ ├── skill3.tga │ │ ├── skill4.tga │ │ ├── skill5.tga │ │ └── table.tga │ ├── backgrounds │ │ ├── 01.jpg │ │ └── 02.jpg │ └── objectives │ │ ├── overlay.tga │ │ └── updated.tga │ ├── models │ ├── debris │ │ ├── concrete_b1.md3 │ │ ├── concrete_b1_large.md3 │ │ ├── concrete_b2.md3 │ │ ├── concrete_b2_large.md3 │ │ ├── concrete_b3.md3 │ │ ├── concrete_b3_large.md3 │ │ ├── concrete_b4.md3 │ │ ├── concrete_b5.md3 │ │ ├── concrete_b6.md3 │ │ ├── concrete_b7.md3 │ │ ├── concrete_b8.md3 │ │ ├── concrete_d1.md3 │ │ ├── concrete_d1_large.md3 │ │ ├── concrete_d2.md3 │ │ ├── concrete_d2_large.md3 │ │ ├── concrete_d3.md3 │ │ ├── concrete_d3_large.md3 │ │ ├── concrete_d4.md3 │ │ ├── concrete_d5.md3 │ │ ├── concrete_d6.md3 │ │ ├── concrete_d7.md3 │ │ ├── concrete_d8.md3 │ │ ├── debris_stone.jpg │ │ ├── debris_wood.jpg │ │ ├── glass_1.md3 │ │ ├── glass_1_large.md3 │ │ ├── glass_2.md3 │ │ ├── glass_2_large.md3 │ │ ├── glass_3.md3 │ │ ├── glass_3_large.md3 │ │ ├── glass_4.md3 │ │ ├── glass_4_large.md3 │ │ ├── glass_5.md3 │ │ ├── glass_5_large.md3 │ │ ├── stone_1.md3 │ │ ├── stone_2.md3 │ │ ├── stone_3.md3 │ │ ├── stone_4.md3 │ │ ├── stone_5.md3 │ │ ├── wood_b1.md3 │ │ ├── wood_b2.md3 │ │ ├── wood_b3.md3 │ │ ├── wood_b4.md3 │ │ └── wood_b5.md3 │ ├── entplus │ │ └── logo │ │ │ ├── entpluslogo.md3 │ │ │ └── materials │ │ │ ├── bigtext.tga │ │ │ ├── plusg.tga │ │ │ ├── plusw.tga │ │ │ ├── smalltext.tga │ │ │ ├── textb.tga │ │ │ └── textw.tga │ └── powerups │ │ ├── armor │ │ ├── armor_gre.md3 │ │ ├── armor_gre_1.md3 │ │ ├── armor_gre_2.md3 │ │ ├── energy_gre1.jpg │ │ └── newgreen.tga │ │ ├── backpack │ │ ├── backpack.jpg │ │ ├── backpack.md3 │ │ └── backpack_fx.jpg │ │ └── keys │ │ ├── envmap-b.tga │ │ ├── envmap-g.tga │ │ ├── envmap-r.tga │ │ ├── envmap-y.tga │ │ ├── key_gold.md3 │ │ ├── key_gold.tga │ │ ├── key_gold_snake.tga │ │ ├── key_iron.md3 │ │ ├── key_iron.tga │ │ ├── key_iron_snake.tga │ │ ├── key_master.md3 │ │ ├── key_master.tga │ │ ├── key_master_snake.tga │ │ ├── key_silver.md3 │ │ ├── key_silver.tga │ │ ├── key_silver_snake.tga │ │ ├── keycard-b.md3 │ │ ├── keycard-b.tga │ │ ├── keycard-g.md3 │ │ ├── keycard-g.tga │ │ ├── keycard-r.md3 │ │ ├── keycard-r.tga │ │ ├── keycard-y.md3 │ │ ├── keycard-y.tga │ │ ├── vector-b.tga │ │ ├── vector-g.tga │ │ ├── vector-r.tga │ │ └── vector-y.tga │ ├── scripts │ ├── entities.def │ ├── entityplus.shader │ ├── ep_example.arena │ ├── ep_example.shader │ └── shaderlist.txt │ ├── sound │ ├── items │ │ ├── key_01+02.wav │ │ └── keycard_03.wav │ └── misc │ │ └── objective_update_01.wav │ └── textures │ └── common │ └── ladderclip.tga ├── bin ├── lcc.exe ├── q3asm.exe ├── q3cpp.exe └── q3rcc.exe ├── code ├── EntityPlus.dsw ├── EntityPlus.sln ├── EntityPlus_VS2008.sln ├── buildall.bat ├── cgame │ ├── cg_consolecmds.c │ ├── cg_draw.c │ ├── cg_drawtools.c │ ├── cg_effects.c │ ├── cg_ents.c │ ├── cg_event.c │ ├── cg_info.c │ ├── cg_local.h │ ├── cg_localents.c │ ├── cg_main.c │ ├── cg_marks.c │ ├── cg_newdraw.c │ ├── cg_particles.c │ ├── cg_players.c │ ├── cg_playerstate.c │ ├── cg_predict.c │ ├── cg_public.h │ ├── cg_scoreboard.c │ ├── cg_servercmds.c │ ├── cg_snapshot.c │ ├── cg_syscalls.asm │ ├── cg_syscalls.c │ ├── cg_view.c │ ├── cg_weapons.c │ ├── cgame.bat │ ├── cgame.def │ ├── cgame.dsp │ ├── cgame.q3asm │ ├── cgame.vcproj │ ├── cgame.vcxproj │ ├── cgame.vcxproj.filters │ ├── cgame_ta.bat │ ├── cgame_ta.q3asm │ ├── tr_types.h │ └── vm │ │ ├── q3asm.exe │ │ ├── q3cpp.exe │ │ └── q3rcc.exe ├── game │ ├── ai_chat.c │ ├── ai_chat.h │ ├── ai_cmd.c │ ├── ai_cmd.h │ ├── ai_dmnet.c │ ├── ai_dmnet.h │ ├── ai_dmq3.c │ ├── ai_dmq3.h │ ├── ai_main.c │ ├── ai_main.h │ ├── ai_team.c │ ├── ai_team.h │ ├── ai_vcmd.c │ ├── ai_vcmd.h │ ├── be_aas.h │ ├── be_ai_char.h │ ├── be_ai_chat.h │ ├── be_ai_gen.h │ ├── be_ai_goal.h │ ├── be_ai_move.h │ ├── be_ai_weap.h │ ├── be_ea.h │ ├── bg_lib.c │ ├── bg_lib.h │ ├── bg_local.h │ ├── bg_misc.c │ ├── bg_pmove.c │ ├── bg_public.h │ ├── bg_slidemove.c │ ├── botlib.h │ ├── chars.h │ ├── g_active.c │ ├── g_arenas.c │ ├── g_bot.c │ ├── g_client.c │ ├── g_cmds.c │ ├── g_combat.c │ ├── g_items.c │ ├── g_local.h │ ├── g_main.c │ ├── g_mem.c │ ├── g_misc.c │ ├── g_missile.c │ ├── g_mover.c │ ├── g_public.h │ ├── g_rankings.c │ ├── g_rankings.h │ ├── g_session.c │ ├── g_spawn.c │ ├── g_svcmds.c │ ├── g_syscalls.asm │ ├── g_syscalls.c │ ├── g_target.c │ ├── g_team.c │ ├── g_team.h │ ├── g_trigger.c │ ├── g_utils.c │ ├── g_weapon.c │ ├── game.bat │ ├── game.def │ ├── game.dsp │ ├── game.q3asm │ ├── game.vcproj │ ├── game.vcxproj │ ├── game.vcxproj.filters │ ├── game_ta.bat │ ├── game_ta.q3asm │ ├── inv.h │ ├── match.h │ ├── q_math.c │ ├── q_shared.c │ ├── q_shared.h │ ├── surfaceflags.h │ ├── syn.h │ └── vm │ │ ├── q3asm.exe │ │ ├── q3cpp.exe │ │ └── q3rcc.exe ├── q3_ui │ ├── keycodes.h │ ├── q3_ui.bat │ ├── q3_ui.dsp │ ├── q3_ui.q3asm │ ├── q3_ui.vcproj │ ├── q3_ui.vcxproj │ ├── q3_ui.vcxproj.filters │ ├── ui.def │ ├── ui.q3asm │ ├── ui_addbots.c │ ├── ui_atoms.c │ ├── ui_cdkey.c │ ├── ui_cinematics.c │ ├── ui_confirm.c │ ├── ui_connect.c │ ├── ui_controls2.c │ ├── ui_credits.c │ ├── ui_demo2.c │ ├── ui_display.c │ ├── ui_epmenu.c │ ├── ui_gameinfo.c │ ├── ui_ingame.c │ ├── ui_loadconfig.c │ ├── ui_local.h │ ├── ui_login.c │ ├── ui_main.c │ ├── ui_menu.c │ ├── ui_mfield.c │ ├── ui_mods.c │ ├── ui_mutators.c │ ├── ui_network.c │ ├── ui_options.c │ ├── ui_playermodel.c │ ├── ui_players.c │ ├── ui_playersettings.c │ ├── ui_preferences.c │ ├── ui_qmenu.c │ ├── ui_rankings.c │ ├── ui_rankstatus.c │ ├── ui_removebots.c │ ├── ui_saveconfig.c │ ├── ui_scores.c │ ├── ui_serverinfo.c │ ├── ui_servers2.c │ ├── ui_setup.c │ ├── ui_signup.c │ ├── ui_sound.c │ ├── ui_sparena.c │ ├── ui_specifyleague.c │ ├── ui_specifyserver.c │ ├── ui_splevel.c │ ├── ui_sppostgame.c │ ├── ui_spreset.c │ ├── ui_spskill.c │ ├── ui_startserver.c │ ├── ui_team.c │ ├── ui_teamorders.c │ ├── ui_video.c │ └── vm │ │ ├── q3asm.exe │ │ ├── q3cpp.exe │ │ └── q3rcc.exe └── ui │ ├── keycodes.h │ ├── ui.bat │ ├── ui.def │ ├── ui.dsp │ ├── ui.q3asm │ ├── ui.vcproj │ ├── ui.vcxproj │ ├── ui.vcxproj.filters │ ├── ui_atoms.c │ ├── ui_gameinfo.c │ ├── ui_local.h │ ├── ui_main.c │ ├── ui_players.c │ ├── ui_public.h │ ├── ui_shared.c │ ├── ui_shared.h │ ├── ui_syscalls.asm │ ├── ui_syscalls.c │ └── ui_util.c ├── entitydefinitionconverter ├── BaseIO.cs ├── BaseReader.cs ├── BaseWriter.cs ├── Entity.cs ├── EntityDefinitionsConverter.cs ├── Key.cs ├── KeyGroup.cs ├── KeyTypes │ ├── default.xml │ └── entityplus.xml ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Reader14.cs ├── Spawnflag.cs ├── Writer15.cs ├── edc.csproj ├── edc.sln └── readme.txt ├── minversiontool ├── Entity.cs ├── MinVersionTool.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── mvt.csproj ├── mvt.sln └── readme.txt └── ui ├── addfilter.menu ├── botselection.menu ├── cdkey.menu ├── chip.menu ├── cinematic.menu ├── cinematicmenu.menu ├── connect.menu ├── controls.menu ├── controls2.menu ├── createfavorite.menu ├── createserver.menu ├── credit.menu ├── default.menu ├── demo.menu ├── demo_quit.menu ├── endofgame.menu ├── endofgame2.menu ├── error.menu ├── fight.menu ├── filter.menu ├── findplayer.menu ├── help.menu ├── help2.menu ├── hud.menu ├── hud.txt ├── hud2.txt ├── hud_old.menu ├── ingame.menu ├── ingame.txt ├── ingame_about.menu ├── ingame_addbot.menu ├── ingame_callvote.menu ├── ingame_callvote2.menu ├── ingame_controls.menu ├── ingame_join.menu ├── ingame_leave.menu ├── ingame_options.menu ├── ingame_orders.menu ├── ingame_orders2.menu ├── ingame_player.menu ├── ingame_scoreffa.menu ├── ingame_serverinfo.menu ├── ingame_system.menu ├── ingame_vote.menu ├── ingame_vote2.menu ├── joinserver.menu ├── main.menu ├── main2.menu ├── menudef.h ├── menus.txt ├── min_hud.menu ├── mod.menu ├── newleague.menu ├── options.menu ├── ordershelp.menu ├── password.menu ├── player.menu ├── powerup.menu ├── powerup2.menu ├── punkbuster.menu ├── quake3.menu ├── quit.menu ├── quitcredit.menu ├── rankings.menu ├── resetscore.menu ├── score.menu ├── score_results.menu ├── serverinfo.menu ├── serverinfo_old.menu ├── setup.menu ├── skirmish.menu ├── small.menu ├── system.menu ├── team.menu ├── teamscore.menu ├── testhud.menu └── vid_restart.menu /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /QIIIA Game Source License.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/QIIIA Game Source License.doc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/README.md -------------------------------------------------------------------------------- /assets/entityplus.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus.bat -------------------------------------------------------------------------------- /assets/entityplus/description.txt: -------------------------------------------------------------------------------- 1 | EntityPlus -------------------------------------------------------------------------------- /assets/entityplus/docs/entityplus-assets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/docs/entityplus-assets.txt -------------------------------------------------------------------------------- /assets/entityplus/docs/entityplus-backpack & debris models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/docs/entityplus-backpack & debris models.txt -------------------------------------------------------------------------------- /assets/entityplus/docs/entityplus-keycard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/docs/entityplus-keycard.txt -------------------------------------------------------------------------------- /assets/entityplus/docs/entityplus-logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/docs/entityplus-logo.txt -------------------------------------------------------------------------------- /assets/entityplus/docs/entityplus-sfx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/docs/entityplus-sfx.txt -------------------------------------------------------------------------------- /assets/entityplus/docs/entityplus-skeletonkeys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/docs/entityplus-skeletonkeys.txt -------------------------------------------------------------------------------- /assets/entityplus/docs/manual.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/docs/manual.docx -------------------------------------------------------------------------------- /assets/entityplus/docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/docs/readme.txt -------------------------------------------------------------------------------- /assets/entityplus/docs/version history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/docs/version history.txt -------------------------------------------------------------------------------- /assets/entityplus/gfx/damage/bullet_mrk_paint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/gfx/damage/bullet_mrk_paint.jpg -------------------------------------------------------------------------------- /assets/entityplus/gfx/damage/burn_med_mrk_paint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/gfx/damage/burn_med_mrk_paint.jpg -------------------------------------------------------------------------------- /assets/entityplus/gfx/damage/hole_lg_mrk_paint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/gfx/damage/hole_lg_mrk_paint.jpg -------------------------------------------------------------------------------- /assets/entityplus/gfx/damage/plasma_mrk_paint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/gfx/damage/plasma_mrk_paint.jpg -------------------------------------------------------------------------------- /assets/entityplus/gfx/misc/spark.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/gfx/misc/spark.tga -------------------------------------------------------------------------------- /assets/entityplus/icons/icon_backpack.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/icons/icon_backpack.tga -------------------------------------------------------------------------------- /assets/entityplus/icons/iconr_green.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/icons/iconr_green.tga -------------------------------------------------------------------------------- /assets/entityplus/icons/key_blue.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/icons/key_blue.tga -------------------------------------------------------------------------------- /assets/entityplus/icons/key_gold.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/icons/key_gold.tga -------------------------------------------------------------------------------- /assets/entityplus/icons/key_green.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/icons/key_green.tga -------------------------------------------------------------------------------- /assets/entityplus/icons/key_iron.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/icons/key_iron.tga -------------------------------------------------------------------------------- /assets/entityplus/icons/key_master.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/icons/key_master.tga -------------------------------------------------------------------------------- /assets/entityplus/icons/key_red.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/icons/key_red.tga -------------------------------------------------------------------------------- /assets/entityplus/icons/key_silver.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/icons/key_silver.tga -------------------------------------------------------------------------------- /assets/entityplus/icons/key_yellow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/icons/key_yellow.tga -------------------------------------------------------------------------------- /assets/entityplus/levelshots/ep_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/levelshots/ep_example.jpg -------------------------------------------------------------------------------- /assets/entityplus/maps/ep_example.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/maps/ep_example.map -------------------------------------------------------------------------------- /assets/entityplus/menu/art/loading.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/art/loading.tga -------------------------------------------------------------------------------- /assets/entityplus/menu/art/logo2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/art/logo2.tga -------------------------------------------------------------------------------- /assets/entityplus/menu/art/mainoverlay.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/art/mainoverlay.tga -------------------------------------------------------------------------------- /assets/entityplus/menu/art/scores_0.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/art/scores_0.tga -------------------------------------------------------------------------------- /assets/entityplus/menu/art/scores_1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/art/scores_1.tga -------------------------------------------------------------------------------- /assets/entityplus/menu/art/skill1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/art/skill1.tga -------------------------------------------------------------------------------- /assets/entityplus/menu/art/skill2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/art/skill2.tga -------------------------------------------------------------------------------- /assets/entityplus/menu/art/skill3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/art/skill3.tga -------------------------------------------------------------------------------- /assets/entityplus/menu/art/skill4.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/art/skill4.tga -------------------------------------------------------------------------------- /assets/entityplus/menu/art/skill5.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/art/skill5.tga -------------------------------------------------------------------------------- /assets/entityplus/menu/art/table.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/art/table.tga -------------------------------------------------------------------------------- /assets/entityplus/menu/backgrounds/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/backgrounds/01.jpg -------------------------------------------------------------------------------- /assets/entityplus/menu/backgrounds/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/backgrounds/02.jpg -------------------------------------------------------------------------------- /assets/entityplus/menu/objectives/overlay.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/objectives/overlay.tga -------------------------------------------------------------------------------- /assets/entityplus/menu/objectives/updated.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/menu/objectives/updated.tga -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_b1.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_b1.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_b1_large.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_b1_large.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_b2.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_b2.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_b2_large.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_b2_large.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_b3.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_b3.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_b3_large.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_b3_large.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_b4.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_b4.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_b5.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_b5.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_b6.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_b6.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_b7.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_b7.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_b8.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_b8.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_d1.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_d1.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_d1_large.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_d1_large.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_d2.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_d2.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_d2_large.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_d2_large.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_d3.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_d3.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_d3_large.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_d3_large.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_d4.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_d4.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_d5.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_d5.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_d6.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_d6.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_d7.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_d7.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/concrete_d8.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/concrete_d8.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/debris_stone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/debris_stone.jpg -------------------------------------------------------------------------------- /assets/entityplus/models/debris/debris_wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/debris_wood.jpg -------------------------------------------------------------------------------- /assets/entityplus/models/debris/glass_1.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/glass_1.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/glass_1_large.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/glass_1_large.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/glass_2.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/glass_2.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/glass_2_large.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/glass_2_large.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/glass_3.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/glass_3.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/glass_3_large.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/glass_3_large.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/glass_4.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/glass_4.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/glass_4_large.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/glass_4_large.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/glass_5.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/glass_5.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/glass_5_large.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/glass_5_large.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/stone_1.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/stone_1.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/stone_2.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/stone_2.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/stone_3.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/stone_3.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/stone_4.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/stone_4.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/stone_5.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/stone_5.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/wood_b1.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/wood_b1.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/wood_b2.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/wood_b2.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/wood_b3.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/wood_b3.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/wood_b4.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/wood_b4.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/debris/wood_b5.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/debris/wood_b5.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/entplus/logo/entpluslogo.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/entplus/logo/entpluslogo.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/entplus/logo/materials/bigtext.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/entplus/logo/materials/bigtext.tga -------------------------------------------------------------------------------- /assets/entityplus/models/entplus/logo/materials/plusg.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/entplus/logo/materials/plusg.tga -------------------------------------------------------------------------------- /assets/entityplus/models/entplus/logo/materials/plusw.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/entplus/logo/materials/plusw.tga -------------------------------------------------------------------------------- /assets/entityplus/models/entplus/logo/materials/smalltext.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/entplus/logo/materials/smalltext.tga -------------------------------------------------------------------------------- /assets/entityplus/models/entplus/logo/materials/textb.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/entplus/logo/materials/textb.tga -------------------------------------------------------------------------------- /assets/entityplus/models/entplus/logo/materials/textw.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/entplus/logo/materials/textw.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/armor/armor_gre.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/armor/armor_gre.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/armor/armor_gre_1.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/armor/armor_gre_1.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/armor/armor_gre_2.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/armor/armor_gre_2.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/armor/energy_gre1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/armor/energy_gre1.jpg -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/armor/newgreen.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/armor/newgreen.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/backpack/backpack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/backpack/backpack.jpg -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/backpack/backpack.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/backpack/backpack.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/backpack/backpack_fx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/backpack/backpack_fx.jpg -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/envmap-b.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/envmap-b.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/envmap-g.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/envmap-g.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/envmap-r.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/envmap-r.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/envmap-y.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/envmap-y.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/key_gold.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/key_gold.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/key_gold.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/key_gold.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/key_gold_snake.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/key_gold_snake.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/key_iron.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/key_iron.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/key_iron.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/key_iron.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/key_iron_snake.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/key_iron_snake.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/key_master.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/key_master.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/key_master.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/key_master.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/key_master_snake.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/key_master_snake.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/key_silver.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/key_silver.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/key_silver.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/key_silver.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/key_silver_snake.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/key_silver_snake.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/keycard-b.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/keycard-b.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/keycard-b.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/keycard-b.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/keycard-g.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/keycard-g.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/keycard-g.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/keycard-g.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/keycard-r.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/keycard-r.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/keycard-r.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/keycard-r.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/keycard-y.md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/keycard-y.md3 -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/keycard-y.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/keycard-y.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/vector-b.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/vector-b.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/vector-g.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/vector-g.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/vector-r.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/vector-r.tga -------------------------------------------------------------------------------- /assets/entityplus/models/powerups/keys/vector-y.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/models/powerups/keys/vector-y.tga -------------------------------------------------------------------------------- /assets/entityplus/scripts/entities.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/scripts/entities.def -------------------------------------------------------------------------------- /assets/entityplus/scripts/entityplus.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/scripts/entityplus.shader -------------------------------------------------------------------------------- /assets/entityplus/scripts/ep_example.arena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/scripts/ep_example.arena -------------------------------------------------------------------------------- /assets/entityplus/scripts/ep_example.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/scripts/ep_example.shader -------------------------------------------------------------------------------- /assets/entityplus/scripts/shaderlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/scripts/shaderlist.txt -------------------------------------------------------------------------------- /assets/entityplus/sound/items/key_01+02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/sound/items/key_01+02.wav -------------------------------------------------------------------------------- /assets/entityplus/sound/items/keycard_03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/sound/items/keycard_03.wav -------------------------------------------------------------------------------- /assets/entityplus/sound/misc/objective_update_01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/sound/misc/objective_update_01.wav -------------------------------------------------------------------------------- /assets/entityplus/textures/common/ladderclip.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/assets/entityplus/textures/common/ladderclip.tga -------------------------------------------------------------------------------- /bin/lcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/bin/lcc.exe -------------------------------------------------------------------------------- /bin/q3asm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/bin/q3asm.exe -------------------------------------------------------------------------------- /bin/q3cpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/bin/q3cpp.exe -------------------------------------------------------------------------------- /bin/q3rcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/bin/q3rcc.exe -------------------------------------------------------------------------------- /code/EntityPlus.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/EntityPlus.dsw -------------------------------------------------------------------------------- /code/EntityPlus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/EntityPlus.sln -------------------------------------------------------------------------------- /code/EntityPlus_VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/EntityPlus_VS2008.sln -------------------------------------------------------------------------------- /code/buildall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/buildall.bat -------------------------------------------------------------------------------- /code/cgame/cg_consolecmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_consolecmds.c -------------------------------------------------------------------------------- /code/cgame/cg_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_draw.c -------------------------------------------------------------------------------- /code/cgame/cg_drawtools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_drawtools.c -------------------------------------------------------------------------------- /code/cgame/cg_effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_effects.c -------------------------------------------------------------------------------- /code/cgame/cg_ents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_ents.c -------------------------------------------------------------------------------- /code/cgame/cg_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_event.c -------------------------------------------------------------------------------- /code/cgame/cg_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_info.c -------------------------------------------------------------------------------- /code/cgame/cg_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_local.h -------------------------------------------------------------------------------- /code/cgame/cg_localents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_localents.c -------------------------------------------------------------------------------- /code/cgame/cg_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_main.c -------------------------------------------------------------------------------- /code/cgame/cg_marks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_marks.c -------------------------------------------------------------------------------- /code/cgame/cg_newdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_newdraw.c -------------------------------------------------------------------------------- /code/cgame/cg_particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_particles.c -------------------------------------------------------------------------------- /code/cgame/cg_players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_players.c -------------------------------------------------------------------------------- /code/cgame/cg_playerstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_playerstate.c -------------------------------------------------------------------------------- /code/cgame/cg_predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_predict.c -------------------------------------------------------------------------------- /code/cgame/cg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_public.h -------------------------------------------------------------------------------- /code/cgame/cg_scoreboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_scoreboard.c -------------------------------------------------------------------------------- /code/cgame/cg_servercmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_servercmds.c -------------------------------------------------------------------------------- /code/cgame/cg_snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_snapshot.c -------------------------------------------------------------------------------- /code/cgame/cg_syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_syscalls.asm -------------------------------------------------------------------------------- /code/cgame/cg_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_syscalls.c -------------------------------------------------------------------------------- /code/cgame/cg_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_view.c -------------------------------------------------------------------------------- /code/cgame/cg_weapons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cg_weapons.c -------------------------------------------------------------------------------- /code/cgame/cgame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cgame.bat -------------------------------------------------------------------------------- /code/cgame/cgame.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry 4 | -------------------------------------------------------------------------------- /code/cgame/cgame.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cgame.dsp -------------------------------------------------------------------------------- /code/cgame/cgame.q3asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cgame.q3asm -------------------------------------------------------------------------------- /code/cgame/cgame.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cgame.vcproj -------------------------------------------------------------------------------- /code/cgame/cgame.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cgame.vcxproj -------------------------------------------------------------------------------- /code/cgame/cgame.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cgame.vcxproj.filters -------------------------------------------------------------------------------- /code/cgame/cgame_ta.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cgame_ta.bat -------------------------------------------------------------------------------- /code/cgame/cgame_ta.q3asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/cgame_ta.q3asm -------------------------------------------------------------------------------- /code/cgame/tr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/tr_types.h -------------------------------------------------------------------------------- /code/cgame/vm/q3asm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/vm/q3asm.exe -------------------------------------------------------------------------------- /code/cgame/vm/q3cpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/vm/q3cpp.exe -------------------------------------------------------------------------------- /code/cgame/vm/q3rcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/cgame/vm/q3rcc.exe -------------------------------------------------------------------------------- /code/game/ai_chat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_chat.c -------------------------------------------------------------------------------- /code/game/ai_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_chat.h -------------------------------------------------------------------------------- /code/game/ai_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_cmd.c -------------------------------------------------------------------------------- /code/game/ai_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_cmd.h -------------------------------------------------------------------------------- /code/game/ai_dmnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_dmnet.c -------------------------------------------------------------------------------- /code/game/ai_dmnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_dmnet.h -------------------------------------------------------------------------------- /code/game/ai_dmq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_dmq3.c -------------------------------------------------------------------------------- /code/game/ai_dmq3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_dmq3.h -------------------------------------------------------------------------------- /code/game/ai_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_main.c -------------------------------------------------------------------------------- /code/game/ai_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_main.h -------------------------------------------------------------------------------- /code/game/ai_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_team.c -------------------------------------------------------------------------------- /code/game/ai_team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_team.h -------------------------------------------------------------------------------- /code/game/ai_vcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_vcmd.c -------------------------------------------------------------------------------- /code/game/ai_vcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/ai_vcmd.h -------------------------------------------------------------------------------- /code/game/be_aas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/be_aas.h -------------------------------------------------------------------------------- /code/game/be_ai_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/be_ai_char.h -------------------------------------------------------------------------------- /code/game/be_ai_chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/be_ai_chat.h -------------------------------------------------------------------------------- /code/game/be_ai_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/be_ai_gen.h -------------------------------------------------------------------------------- /code/game/be_ai_goal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/be_ai_goal.h -------------------------------------------------------------------------------- /code/game/be_ai_move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/be_ai_move.h -------------------------------------------------------------------------------- /code/game/be_ai_weap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/be_ai_weap.h -------------------------------------------------------------------------------- /code/game/be_ea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/be_ea.h -------------------------------------------------------------------------------- /code/game/bg_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/bg_lib.c -------------------------------------------------------------------------------- /code/game/bg_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/bg_lib.h -------------------------------------------------------------------------------- /code/game/bg_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/bg_local.h -------------------------------------------------------------------------------- /code/game/bg_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/bg_misc.c -------------------------------------------------------------------------------- /code/game/bg_pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/bg_pmove.c -------------------------------------------------------------------------------- /code/game/bg_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/bg_public.h -------------------------------------------------------------------------------- /code/game/bg_slidemove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/bg_slidemove.c -------------------------------------------------------------------------------- /code/game/botlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/botlib.h -------------------------------------------------------------------------------- /code/game/chars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/chars.h -------------------------------------------------------------------------------- /code/game/g_active.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_active.c -------------------------------------------------------------------------------- /code/game/g_arenas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_arenas.c -------------------------------------------------------------------------------- /code/game/g_bot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_bot.c -------------------------------------------------------------------------------- /code/game/g_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_client.c -------------------------------------------------------------------------------- /code/game/g_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_cmds.c -------------------------------------------------------------------------------- /code/game/g_combat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_combat.c -------------------------------------------------------------------------------- /code/game/g_items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_items.c -------------------------------------------------------------------------------- /code/game/g_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_local.h -------------------------------------------------------------------------------- /code/game/g_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_main.c -------------------------------------------------------------------------------- /code/game/g_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_mem.c -------------------------------------------------------------------------------- /code/game/g_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_misc.c -------------------------------------------------------------------------------- /code/game/g_missile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_missile.c -------------------------------------------------------------------------------- /code/game/g_mover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_mover.c -------------------------------------------------------------------------------- /code/game/g_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_public.h -------------------------------------------------------------------------------- /code/game/g_rankings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_rankings.c -------------------------------------------------------------------------------- /code/game/g_rankings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_rankings.h -------------------------------------------------------------------------------- /code/game/g_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_session.c -------------------------------------------------------------------------------- /code/game/g_spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_spawn.c -------------------------------------------------------------------------------- /code/game/g_svcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_svcmds.c -------------------------------------------------------------------------------- /code/game/g_syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_syscalls.asm -------------------------------------------------------------------------------- /code/game/g_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_syscalls.c -------------------------------------------------------------------------------- /code/game/g_target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_target.c -------------------------------------------------------------------------------- /code/game/g_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_team.c -------------------------------------------------------------------------------- /code/game/g_team.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_team.h -------------------------------------------------------------------------------- /code/game/g_trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_trigger.c -------------------------------------------------------------------------------- /code/game/g_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_utils.c -------------------------------------------------------------------------------- /code/game/g_weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/g_weapon.c -------------------------------------------------------------------------------- /code/game/game.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/game.bat -------------------------------------------------------------------------------- /code/game/game.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | dllEntry 3 | vmMain 4 | -------------------------------------------------------------------------------- /code/game/game.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/game.dsp -------------------------------------------------------------------------------- /code/game/game.q3asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/game.q3asm -------------------------------------------------------------------------------- /code/game/game.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/game.vcproj -------------------------------------------------------------------------------- /code/game/game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/game.vcxproj -------------------------------------------------------------------------------- /code/game/game.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/game.vcxproj.filters -------------------------------------------------------------------------------- /code/game/game_ta.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/game_ta.bat -------------------------------------------------------------------------------- /code/game/game_ta.q3asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/game_ta.q3asm -------------------------------------------------------------------------------- /code/game/inv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/inv.h -------------------------------------------------------------------------------- /code/game/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/match.h -------------------------------------------------------------------------------- /code/game/q_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/q_math.c -------------------------------------------------------------------------------- /code/game/q_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/q_shared.c -------------------------------------------------------------------------------- /code/game/q_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/q_shared.h -------------------------------------------------------------------------------- /code/game/surfaceflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/surfaceflags.h -------------------------------------------------------------------------------- /code/game/syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/syn.h -------------------------------------------------------------------------------- /code/game/vm/q3asm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/vm/q3asm.exe -------------------------------------------------------------------------------- /code/game/vm/q3cpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/vm/q3cpp.exe -------------------------------------------------------------------------------- /code/game/vm/q3rcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/game/vm/q3rcc.exe -------------------------------------------------------------------------------- /code/q3_ui/keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/keycodes.h -------------------------------------------------------------------------------- /code/q3_ui/q3_ui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/q3_ui.bat -------------------------------------------------------------------------------- /code/q3_ui/q3_ui.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/q3_ui.dsp -------------------------------------------------------------------------------- /code/q3_ui/q3_ui.q3asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/q3_ui.q3asm -------------------------------------------------------------------------------- /code/q3_ui/q3_ui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/q3_ui.vcproj -------------------------------------------------------------------------------- /code/q3_ui/q3_ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/q3_ui.vcxproj -------------------------------------------------------------------------------- /code/q3_ui/q3_ui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/q3_ui.vcxproj.filters -------------------------------------------------------------------------------- /code/q3_ui/ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry 4 | -------------------------------------------------------------------------------- /code/q3_ui/ui.q3asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui.q3asm -------------------------------------------------------------------------------- /code/q3_ui/ui_addbots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_addbots.c -------------------------------------------------------------------------------- /code/q3_ui/ui_atoms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_atoms.c -------------------------------------------------------------------------------- /code/q3_ui/ui_cdkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_cdkey.c -------------------------------------------------------------------------------- /code/q3_ui/ui_cinematics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_cinematics.c -------------------------------------------------------------------------------- /code/q3_ui/ui_confirm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_confirm.c -------------------------------------------------------------------------------- /code/q3_ui/ui_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_connect.c -------------------------------------------------------------------------------- /code/q3_ui/ui_controls2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_controls2.c -------------------------------------------------------------------------------- /code/q3_ui/ui_credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_credits.c -------------------------------------------------------------------------------- /code/q3_ui/ui_demo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_demo2.c -------------------------------------------------------------------------------- /code/q3_ui/ui_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_display.c -------------------------------------------------------------------------------- /code/q3_ui/ui_epmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_epmenu.c -------------------------------------------------------------------------------- /code/q3_ui/ui_gameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_gameinfo.c -------------------------------------------------------------------------------- /code/q3_ui/ui_ingame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_ingame.c -------------------------------------------------------------------------------- /code/q3_ui/ui_loadconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_loadconfig.c -------------------------------------------------------------------------------- /code/q3_ui/ui_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_local.h -------------------------------------------------------------------------------- /code/q3_ui/ui_login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_login.c -------------------------------------------------------------------------------- /code/q3_ui/ui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_main.c -------------------------------------------------------------------------------- /code/q3_ui/ui_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_menu.c -------------------------------------------------------------------------------- /code/q3_ui/ui_mfield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_mfield.c -------------------------------------------------------------------------------- /code/q3_ui/ui_mods.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_mods.c -------------------------------------------------------------------------------- /code/q3_ui/ui_mutators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_mutators.c -------------------------------------------------------------------------------- /code/q3_ui/ui_network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_network.c -------------------------------------------------------------------------------- /code/q3_ui/ui_options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_options.c -------------------------------------------------------------------------------- /code/q3_ui/ui_playermodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_playermodel.c -------------------------------------------------------------------------------- /code/q3_ui/ui_players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_players.c -------------------------------------------------------------------------------- /code/q3_ui/ui_playersettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_playersettings.c -------------------------------------------------------------------------------- /code/q3_ui/ui_preferences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_preferences.c -------------------------------------------------------------------------------- /code/q3_ui/ui_qmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_qmenu.c -------------------------------------------------------------------------------- /code/q3_ui/ui_rankings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_rankings.c -------------------------------------------------------------------------------- /code/q3_ui/ui_rankstatus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_rankstatus.c -------------------------------------------------------------------------------- /code/q3_ui/ui_removebots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_removebots.c -------------------------------------------------------------------------------- /code/q3_ui/ui_saveconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_saveconfig.c -------------------------------------------------------------------------------- /code/q3_ui/ui_scores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_scores.c -------------------------------------------------------------------------------- /code/q3_ui/ui_serverinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_serverinfo.c -------------------------------------------------------------------------------- /code/q3_ui/ui_servers2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_servers2.c -------------------------------------------------------------------------------- /code/q3_ui/ui_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_setup.c -------------------------------------------------------------------------------- /code/q3_ui/ui_signup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_signup.c -------------------------------------------------------------------------------- /code/q3_ui/ui_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_sound.c -------------------------------------------------------------------------------- /code/q3_ui/ui_sparena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_sparena.c -------------------------------------------------------------------------------- /code/q3_ui/ui_specifyleague.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_specifyleague.c -------------------------------------------------------------------------------- /code/q3_ui/ui_specifyserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_specifyserver.c -------------------------------------------------------------------------------- /code/q3_ui/ui_splevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_splevel.c -------------------------------------------------------------------------------- /code/q3_ui/ui_sppostgame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_sppostgame.c -------------------------------------------------------------------------------- /code/q3_ui/ui_spreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_spreset.c -------------------------------------------------------------------------------- /code/q3_ui/ui_spskill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_spskill.c -------------------------------------------------------------------------------- /code/q3_ui/ui_startserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_startserver.c -------------------------------------------------------------------------------- /code/q3_ui/ui_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_team.c -------------------------------------------------------------------------------- /code/q3_ui/ui_teamorders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_teamorders.c -------------------------------------------------------------------------------- /code/q3_ui/ui_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/ui_video.c -------------------------------------------------------------------------------- /code/q3_ui/vm/q3asm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/vm/q3asm.exe -------------------------------------------------------------------------------- /code/q3_ui/vm/q3cpp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/vm/q3cpp.exe -------------------------------------------------------------------------------- /code/q3_ui/vm/q3rcc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/q3_ui/vm/q3rcc.exe -------------------------------------------------------------------------------- /code/ui/keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/keycodes.h -------------------------------------------------------------------------------- /code/ui/ui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui.bat -------------------------------------------------------------------------------- /code/ui/ui.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | vmMain 3 | dllEntry 4 | -------------------------------------------------------------------------------- /code/ui/ui.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui.dsp -------------------------------------------------------------------------------- /code/ui/ui.q3asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui.q3asm -------------------------------------------------------------------------------- /code/ui/ui.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui.vcproj -------------------------------------------------------------------------------- /code/ui/ui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui.vcxproj -------------------------------------------------------------------------------- /code/ui/ui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui.vcxproj.filters -------------------------------------------------------------------------------- /code/ui/ui_atoms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui_atoms.c -------------------------------------------------------------------------------- /code/ui/ui_gameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui_gameinfo.c -------------------------------------------------------------------------------- /code/ui/ui_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui_local.h -------------------------------------------------------------------------------- /code/ui/ui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui_main.c -------------------------------------------------------------------------------- /code/ui/ui_players.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui_players.c -------------------------------------------------------------------------------- /code/ui/ui_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui_public.h -------------------------------------------------------------------------------- /code/ui/ui_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui_shared.c -------------------------------------------------------------------------------- /code/ui/ui_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui_shared.h -------------------------------------------------------------------------------- /code/ui/ui_syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui_syscalls.asm -------------------------------------------------------------------------------- /code/ui/ui_syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui_syscalls.c -------------------------------------------------------------------------------- /code/ui/ui_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/code/ui/ui_util.c -------------------------------------------------------------------------------- /entitydefinitionconverter/BaseIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/BaseIO.cs -------------------------------------------------------------------------------- /entitydefinitionconverter/BaseReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/BaseReader.cs -------------------------------------------------------------------------------- /entitydefinitionconverter/BaseWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/BaseWriter.cs -------------------------------------------------------------------------------- /entitydefinitionconverter/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/Entity.cs -------------------------------------------------------------------------------- /entitydefinitionconverter/EntityDefinitionsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/EntityDefinitionsConverter.cs -------------------------------------------------------------------------------- /entitydefinitionconverter/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/Key.cs -------------------------------------------------------------------------------- /entitydefinitionconverter/KeyGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/KeyGroup.cs -------------------------------------------------------------------------------- /entitydefinitionconverter/KeyTypes/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/KeyTypes/default.xml -------------------------------------------------------------------------------- /entitydefinitionconverter/KeyTypes/entityplus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/KeyTypes/entityplus.xml -------------------------------------------------------------------------------- /entitydefinitionconverter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/Program.cs -------------------------------------------------------------------------------- /entitydefinitionconverter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /entitydefinitionconverter/Reader14.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/Reader14.cs -------------------------------------------------------------------------------- /entitydefinitionconverter/Spawnflag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/Spawnflag.cs -------------------------------------------------------------------------------- /entitydefinitionconverter/Writer15.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/Writer15.cs -------------------------------------------------------------------------------- /entitydefinitionconverter/edc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/edc.csproj -------------------------------------------------------------------------------- /entitydefinitionconverter/edc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/edc.sln -------------------------------------------------------------------------------- /entitydefinitionconverter/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/entitydefinitionconverter/readme.txt -------------------------------------------------------------------------------- /minversiontool/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/minversiontool/Entity.cs -------------------------------------------------------------------------------- /minversiontool/MinVersionTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/minversiontool/MinVersionTool.cs -------------------------------------------------------------------------------- /minversiontool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/minversiontool/Program.cs -------------------------------------------------------------------------------- /minversiontool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/minversiontool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /minversiontool/mvt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/minversiontool/mvt.csproj -------------------------------------------------------------------------------- /minversiontool/mvt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/minversiontool/mvt.sln -------------------------------------------------------------------------------- /minversiontool/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/minversiontool/readme.txt -------------------------------------------------------------------------------- /ui/addfilter.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/addfilter.menu -------------------------------------------------------------------------------- /ui/botselection.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/botselection.menu -------------------------------------------------------------------------------- /ui/cdkey.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/cdkey.menu -------------------------------------------------------------------------------- /ui/chip.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/chip.menu -------------------------------------------------------------------------------- /ui/cinematic.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/cinematic.menu -------------------------------------------------------------------------------- /ui/cinematicmenu.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/cinematicmenu.menu -------------------------------------------------------------------------------- /ui/connect.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/connect.menu -------------------------------------------------------------------------------- /ui/controls.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/controls.menu -------------------------------------------------------------------------------- /ui/controls2.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/controls2.menu -------------------------------------------------------------------------------- /ui/createfavorite.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/createfavorite.menu -------------------------------------------------------------------------------- /ui/createserver.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/createserver.menu -------------------------------------------------------------------------------- /ui/credit.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/credit.menu -------------------------------------------------------------------------------- /ui/default.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/default.menu -------------------------------------------------------------------------------- /ui/demo.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/demo.menu -------------------------------------------------------------------------------- /ui/demo_quit.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/demo_quit.menu -------------------------------------------------------------------------------- /ui/endofgame.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/endofgame.menu -------------------------------------------------------------------------------- /ui/endofgame2.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/endofgame2.menu -------------------------------------------------------------------------------- /ui/error.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/error.menu -------------------------------------------------------------------------------- /ui/fight.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/fight.menu -------------------------------------------------------------------------------- /ui/filter.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/filter.menu -------------------------------------------------------------------------------- /ui/findplayer.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/findplayer.menu -------------------------------------------------------------------------------- /ui/help.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/help.menu -------------------------------------------------------------------------------- /ui/help2.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/help2.menu -------------------------------------------------------------------------------- /ui/hud.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/hud.menu -------------------------------------------------------------------------------- /ui/hud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/hud.txt -------------------------------------------------------------------------------- /ui/hud2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/hud2.txt -------------------------------------------------------------------------------- /ui/hud_old.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/hud_old.menu -------------------------------------------------------------------------------- /ui/ingame.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame.menu -------------------------------------------------------------------------------- /ui/ingame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame.txt -------------------------------------------------------------------------------- /ui/ingame_about.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_about.menu -------------------------------------------------------------------------------- /ui/ingame_addbot.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_addbot.menu -------------------------------------------------------------------------------- /ui/ingame_callvote.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_callvote.menu -------------------------------------------------------------------------------- /ui/ingame_callvote2.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_callvote2.menu -------------------------------------------------------------------------------- /ui/ingame_controls.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_controls.menu -------------------------------------------------------------------------------- /ui/ingame_join.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_join.menu -------------------------------------------------------------------------------- /ui/ingame_leave.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_leave.menu -------------------------------------------------------------------------------- /ui/ingame_options.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_options.menu -------------------------------------------------------------------------------- /ui/ingame_orders.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_orders.menu -------------------------------------------------------------------------------- /ui/ingame_orders2.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_orders2.menu -------------------------------------------------------------------------------- /ui/ingame_player.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_player.menu -------------------------------------------------------------------------------- /ui/ingame_scoreffa.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_scoreffa.menu -------------------------------------------------------------------------------- /ui/ingame_serverinfo.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_serverinfo.menu -------------------------------------------------------------------------------- /ui/ingame_system.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_system.menu -------------------------------------------------------------------------------- /ui/ingame_vote.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_vote.menu -------------------------------------------------------------------------------- /ui/ingame_vote2.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ingame_vote2.menu -------------------------------------------------------------------------------- /ui/joinserver.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/joinserver.menu -------------------------------------------------------------------------------- /ui/main.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/main.menu -------------------------------------------------------------------------------- /ui/main2.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/main2.menu -------------------------------------------------------------------------------- /ui/menudef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/menudef.h -------------------------------------------------------------------------------- /ui/menus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/menus.txt -------------------------------------------------------------------------------- /ui/min_hud.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/min_hud.menu -------------------------------------------------------------------------------- /ui/mod.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/mod.menu -------------------------------------------------------------------------------- /ui/newleague.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/newleague.menu -------------------------------------------------------------------------------- /ui/options.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/options.menu -------------------------------------------------------------------------------- /ui/ordershelp.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/ordershelp.menu -------------------------------------------------------------------------------- /ui/password.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/password.menu -------------------------------------------------------------------------------- /ui/player.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/player.menu -------------------------------------------------------------------------------- /ui/powerup.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/powerup.menu -------------------------------------------------------------------------------- /ui/powerup2.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/powerup2.menu -------------------------------------------------------------------------------- /ui/punkbuster.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/punkbuster.menu -------------------------------------------------------------------------------- /ui/quake3.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/quake3.menu -------------------------------------------------------------------------------- /ui/quit.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/quit.menu -------------------------------------------------------------------------------- /ui/quitcredit.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/quitcredit.menu -------------------------------------------------------------------------------- /ui/rankings.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/rankings.menu -------------------------------------------------------------------------------- /ui/resetscore.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/resetscore.menu -------------------------------------------------------------------------------- /ui/score.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/score.menu -------------------------------------------------------------------------------- /ui/score_results.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/score_results.menu -------------------------------------------------------------------------------- /ui/serverinfo.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/serverinfo.menu -------------------------------------------------------------------------------- /ui/serverinfo_old.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/serverinfo_old.menu -------------------------------------------------------------------------------- /ui/setup.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/setup.menu -------------------------------------------------------------------------------- /ui/skirmish.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/skirmish.menu -------------------------------------------------------------------------------- /ui/small.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/small.menu -------------------------------------------------------------------------------- /ui/system.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/system.menu -------------------------------------------------------------------------------- /ui/team.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/team.menu -------------------------------------------------------------------------------- /ui/teamscore.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/teamscore.menu -------------------------------------------------------------------------------- /ui/testhud.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/testhud.menu -------------------------------------------------------------------------------- /ui/vid_restart.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheEnginesOfCreation/EntityPlus/HEAD/ui/vid_restart.menu --------------------------------------------------------------------------------