├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── build.yaml │ └── ci.yaml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json └── tasks.json ├── CMakeLists.txt ├── Dockerfile ├── LICENSE.txt ├── README.md ├── admin.ini ├── autogen-pch.sh ├── cmake ├── DownloadBcrypt.cmake ├── DownloadGoogleTest.cmake ├── EOSERV_PCH.cmake ├── EOSERV_PCH_MSVC.cpp.in ├── FindMariaDB.cmake ├── FindSQLite3.cmake ├── SourceFileList.cmake ├── bcryptproj.cmake └── gtestproj.cmake ├── config.ini ├── config ├── boards.ini ├── console.ini ├── database.ini ├── database │ ├── mysql.ini │ ├── sqlite.ini │ └── sqlserver.ini ├── extra.ini ├── files.ini ├── guilds.ini ├── limits.ini ├── misc.ini ├── npc.ini ├── pk.ini ├── rates.ini ├── server.ini └── sln.ini ├── config_local └── .gitignore ├── data ├── arenas.ini ├── drops.ini ├── formulas.ini ├── home.ini ├── maps │ └── .gitignore ├── news.txt ├── pub │ ├── .gitignore │ ├── empty.ecf │ ├── empty.eif │ ├── empty.enf │ └── empty.esf ├── quests │ └── .gitignore ├── shops.ini ├── skills.ini └── speech.ini ├── deploy ├── ci-test.sh └── test-connection.py ├── install.sql ├── install_sqlserver.sql ├── lang ├── en.ini ├── nl.ini └── pl.ini ├── project ├── icon.ico ├── mingw.cbp └── winres.rc ├── scripts ├── install-deps.ps1 └── install-deps.sh ├── src ├── arena.cpp ├── arena.hpp ├── character.cpp ├── character.hpp ├── command_source.cpp ├── command_source.hpp ├── commands │ ├── admin.cpp │ ├── char_mod.cpp │ ├── commands.cpp │ ├── commands.hpp │ ├── debug.cpp │ ├── info.cpp │ ├── map.cpp │ ├── moderation.cpp │ ├── server.cpp │ └── warp.cpp ├── config.cpp ├── config.hpp ├── console.cpp ├── console.hpp ├── database.cpp ├── database.hpp ├── database_impl.hpp ├── dialog.cpp ├── dialog.hpp ├── eoclient.cpp ├── eoclient.hpp ├── eodata.cpp ├── eodata.hpp ├── eoplus.cpp ├── eoplus.hpp ├── eoplus │ ├── context.cpp │ ├── context.hpp │ ├── fwd │ │ ├── context.hpp │ │ ├── lex.hpp │ │ └── parse.hpp │ ├── lex.cpp │ ├── lex.hpp │ ├── parse.cpp │ └── parse.hpp ├── eoserv_config.cpp ├── eoserv_config.hpp ├── eoserv_windows.h ├── eoserver.cpp ├── eoserver.hpp ├── extra │ ├── ntservice.cpp │ ├── ntservice.hpp │ ├── seose_compat.cpp │ └── seose_compat.hpp ├── fwd │ ├── arena.hpp │ ├── character.hpp │ ├── command_source.hpp │ ├── config.hpp │ ├── console.hpp │ ├── database.hpp │ ├── dialog.hpp │ ├── eoclient.hpp │ ├── eodata.hpp │ ├── eoplus.hpp │ ├── eoserver.hpp │ ├── guild.hpp │ ├── hook.hpp │ ├── i18n.hpp │ ├── map.hpp │ ├── nanohttp.hpp │ ├── npc.hpp │ ├── npc_data.hpp │ ├── packet.hpp │ ├── party.hpp │ ├── player.hpp │ ├── quest.hpp │ ├── sln.hpp │ ├── socket.hpp │ ├── timer.hpp │ ├── wedding.hpp │ └── world.hpp ├── guild.cpp ├── guild.hpp ├── handlers │ ├── Account.cpp │ ├── AdminInteract.cpp │ ├── Attack.cpp │ ├── Bank.cpp │ ├── Barber.cpp │ ├── Board.cpp │ ├── Book.cpp │ ├── Chair.cpp │ ├── Character.cpp │ ├── Chest.cpp │ ├── Citizen.cpp │ ├── Connection.cpp │ ├── Door.cpp │ ├── Emote.cpp │ ├── Face.cpp │ ├── Global.cpp │ ├── Guild.cpp │ ├── Init.cpp │ ├── Internal.cpp │ ├── Item.cpp │ ├── Jukebox.cpp │ ├── Locker.cpp │ ├── Login.cpp │ ├── Marriage.cpp │ ├── Message.cpp │ ├── Paperdoll.cpp │ ├── Party.cpp │ ├── Players.cpp │ ├── Priest.cpp │ ├── Quest.cpp │ ├── Refresh.cpp │ ├── Shop.cpp │ ├── Sit.cpp │ ├── Spell.cpp │ ├── StatSkill.cpp │ ├── Talk.cpp │ ├── Trade.cpp │ ├── Walk.cpp │ ├── Warp.cpp │ ├── Welcome.cpp │ ├── handlers.cpp │ └── handlers.hpp ├── hash.cpp ├── hash.hpp ├── i18n.cpp ├── i18n.hpp ├── loginmanager.cpp ├── loginmanager.hpp ├── main.cpp ├── map.cpp ├── map.hpp ├── nanohttp.cpp ├── nanohttp.hpp ├── npc.cpp ├── npc.hpp ├── npc_data.cpp ├── npc_data.hpp ├── packet.cpp ├── packet.hpp ├── party.cpp ├── party.hpp ├── platform.h ├── player.cpp ├── player.hpp ├── quest.cpp ├── quest.hpp ├── sha256.c ├── sha256.h ├── sln.cpp ├── sln.hpp ├── socket.cpp ├── socket.hpp ├── socket_impl.hpp ├── stdafx.h ├── test │ ├── config_test.cpp │ ├── handlers │ │ └── Login_test.cpp │ ├── integration │ │ ├── change_passwords.eob │ │ ├── create_accounts.eob │ │ ├── create_delete_char.eob │ │ ├── double_login.eob │ │ └── login_queue_busy.eob │ ├── testhelper │ │ ├── mocks.hpp │ │ └── setup.hpp │ ├── util │ │ ├── semaphore_test.cpp │ │ └── threadpool_test.cpp │ └── worlddump_test.cpp ├── timer.cpp ├── timer.hpp ├── util.cpp ├── util.hpp ├── util │ ├── async.hpp │ ├── rpn.cpp │ ├── rpn.hpp │ ├── secure_string.hpp │ ├── semaphore.cpp │ ├── semaphore.hpp │ ├── threadpool.cpp │ ├── threadpool.hpp │ ├── variant.cpp │ └── variant.hpp ├── version.h ├── wedding.cpp ├── wedding.hpp ├── world.cpp └── world.hpp ├── tu ├── commands.cpp ├── eoplus.cpp ├── game_1.cpp ├── game_2.cpp ├── game_3.cpp ├── handlers.cpp ├── main.cpp ├── sha256.c └── system.cpp └── upgrade ├── 0.5.2_to_0.5.3.sql ├── 0.6.2_to_0.7.0.sql ├── 0.7.0_to_0.7.1.sql └── 0.7.0_to_0.7.1_sqlserver.sql /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/README.md -------------------------------------------------------------------------------- /admin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/admin.ini -------------------------------------------------------------------------------- /autogen-pch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/autogen-pch.sh -------------------------------------------------------------------------------- /cmake/DownloadBcrypt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/cmake/DownloadBcrypt.cmake -------------------------------------------------------------------------------- /cmake/DownloadGoogleTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/cmake/DownloadGoogleTest.cmake -------------------------------------------------------------------------------- /cmake/EOSERV_PCH.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/cmake/EOSERV_PCH.cmake -------------------------------------------------------------------------------- /cmake/EOSERV_PCH_MSVC.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/cmake/EOSERV_PCH_MSVC.cpp.in -------------------------------------------------------------------------------- /cmake/FindMariaDB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/cmake/FindMariaDB.cmake -------------------------------------------------------------------------------- /cmake/FindSQLite3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/cmake/FindSQLite3.cmake -------------------------------------------------------------------------------- /cmake/SourceFileList.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/cmake/SourceFileList.cmake -------------------------------------------------------------------------------- /cmake/bcryptproj.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/cmake/bcryptproj.cmake -------------------------------------------------------------------------------- /cmake/gtestproj.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/cmake/gtestproj.cmake -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config.ini -------------------------------------------------------------------------------- /config/boards.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/boards.ini -------------------------------------------------------------------------------- /config/console.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/console.ini -------------------------------------------------------------------------------- /config/database.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/database.ini -------------------------------------------------------------------------------- /config/database/mysql.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/database/mysql.ini -------------------------------------------------------------------------------- /config/database/sqlite.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/database/sqlite.ini -------------------------------------------------------------------------------- /config/database/sqlserver.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/database/sqlserver.ini -------------------------------------------------------------------------------- /config/extra.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/extra.ini -------------------------------------------------------------------------------- /config/files.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/files.ini -------------------------------------------------------------------------------- /config/guilds.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/guilds.ini -------------------------------------------------------------------------------- /config/limits.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/limits.ini -------------------------------------------------------------------------------- /config/misc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/misc.ini -------------------------------------------------------------------------------- /config/npc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/npc.ini -------------------------------------------------------------------------------- /config/pk.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/pk.ini -------------------------------------------------------------------------------- /config/rates.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/rates.ini -------------------------------------------------------------------------------- /config/server.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/server.ini -------------------------------------------------------------------------------- /config/sln.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config/sln.ini -------------------------------------------------------------------------------- /config_local/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/config_local/.gitignore -------------------------------------------------------------------------------- /data/arenas.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/arenas.ini -------------------------------------------------------------------------------- /data/drops.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/drops.ini -------------------------------------------------------------------------------- /data/formulas.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/formulas.ini -------------------------------------------------------------------------------- /data/home.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/home.ini -------------------------------------------------------------------------------- /data/maps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/maps/.gitignore -------------------------------------------------------------------------------- /data/news.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/news.txt -------------------------------------------------------------------------------- /data/pub/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/pub/.gitignore -------------------------------------------------------------------------------- /data/pub/empty.ecf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/pub/empty.ecf -------------------------------------------------------------------------------- /data/pub/empty.eif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/pub/empty.eif -------------------------------------------------------------------------------- /data/pub/empty.enf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/pub/empty.enf -------------------------------------------------------------------------------- /data/pub/empty.esf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/pub/empty.esf -------------------------------------------------------------------------------- /data/quests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/quests/.gitignore -------------------------------------------------------------------------------- /data/shops.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/shops.ini -------------------------------------------------------------------------------- /data/skills.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/skills.ini -------------------------------------------------------------------------------- /data/speech.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/data/speech.ini -------------------------------------------------------------------------------- /deploy/ci-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/deploy/ci-test.sh -------------------------------------------------------------------------------- /deploy/test-connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/deploy/test-connection.py -------------------------------------------------------------------------------- /install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/install.sql -------------------------------------------------------------------------------- /install_sqlserver.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/install_sqlserver.sql -------------------------------------------------------------------------------- /lang/en.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/lang/en.ini -------------------------------------------------------------------------------- /lang/nl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/lang/nl.ini -------------------------------------------------------------------------------- /lang/pl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/lang/pl.ini -------------------------------------------------------------------------------- /project/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/project/icon.ico -------------------------------------------------------------------------------- /project/mingw.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/project/mingw.cbp -------------------------------------------------------------------------------- /project/winres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/project/winres.rc -------------------------------------------------------------------------------- /scripts/install-deps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/scripts/install-deps.ps1 -------------------------------------------------------------------------------- /scripts/install-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/scripts/install-deps.sh -------------------------------------------------------------------------------- /src/arena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/arena.cpp -------------------------------------------------------------------------------- /src/arena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/arena.hpp -------------------------------------------------------------------------------- /src/character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/character.cpp -------------------------------------------------------------------------------- /src/character.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/character.hpp -------------------------------------------------------------------------------- /src/command_source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/command_source.cpp -------------------------------------------------------------------------------- /src/command_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/command_source.hpp -------------------------------------------------------------------------------- /src/commands/admin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/commands/admin.cpp -------------------------------------------------------------------------------- /src/commands/char_mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/commands/char_mod.cpp -------------------------------------------------------------------------------- /src/commands/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/commands/commands.cpp -------------------------------------------------------------------------------- /src/commands/commands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/commands/commands.hpp -------------------------------------------------------------------------------- /src/commands/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/commands/debug.cpp -------------------------------------------------------------------------------- /src/commands/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/commands/info.cpp -------------------------------------------------------------------------------- /src/commands/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/commands/map.cpp -------------------------------------------------------------------------------- /src/commands/moderation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/commands/moderation.cpp -------------------------------------------------------------------------------- /src/commands/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/commands/server.cpp -------------------------------------------------------------------------------- /src/commands/warp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/commands/warp.cpp -------------------------------------------------------------------------------- /src/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/config.cpp -------------------------------------------------------------------------------- /src/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/config.hpp -------------------------------------------------------------------------------- /src/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/console.cpp -------------------------------------------------------------------------------- /src/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/console.hpp -------------------------------------------------------------------------------- /src/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/database.cpp -------------------------------------------------------------------------------- /src/database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/database.hpp -------------------------------------------------------------------------------- /src/database_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/database_impl.hpp -------------------------------------------------------------------------------- /src/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/dialog.cpp -------------------------------------------------------------------------------- /src/dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/dialog.hpp -------------------------------------------------------------------------------- /src/eoclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoclient.cpp -------------------------------------------------------------------------------- /src/eoclient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoclient.hpp -------------------------------------------------------------------------------- /src/eodata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eodata.cpp -------------------------------------------------------------------------------- /src/eodata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eodata.hpp -------------------------------------------------------------------------------- /src/eoplus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoplus.cpp -------------------------------------------------------------------------------- /src/eoplus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoplus.hpp -------------------------------------------------------------------------------- /src/eoplus/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoplus/context.cpp -------------------------------------------------------------------------------- /src/eoplus/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoplus/context.hpp -------------------------------------------------------------------------------- /src/eoplus/fwd/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoplus/fwd/context.hpp -------------------------------------------------------------------------------- /src/eoplus/fwd/lex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoplus/fwd/lex.hpp -------------------------------------------------------------------------------- /src/eoplus/fwd/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoplus/fwd/parse.hpp -------------------------------------------------------------------------------- /src/eoplus/lex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoplus/lex.cpp -------------------------------------------------------------------------------- /src/eoplus/lex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoplus/lex.hpp -------------------------------------------------------------------------------- /src/eoplus/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoplus/parse.cpp -------------------------------------------------------------------------------- /src/eoplus/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoplus/parse.hpp -------------------------------------------------------------------------------- /src/eoserv_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoserv_config.cpp -------------------------------------------------------------------------------- /src/eoserv_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoserv_config.hpp -------------------------------------------------------------------------------- /src/eoserv_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoserv_windows.h -------------------------------------------------------------------------------- /src/eoserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoserver.cpp -------------------------------------------------------------------------------- /src/eoserver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/eoserver.hpp -------------------------------------------------------------------------------- /src/extra/ntservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/extra/ntservice.cpp -------------------------------------------------------------------------------- /src/extra/ntservice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/extra/ntservice.hpp -------------------------------------------------------------------------------- /src/extra/seose_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/extra/seose_compat.cpp -------------------------------------------------------------------------------- /src/extra/seose_compat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/extra/seose_compat.hpp -------------------------------------------------------------------------------- /src/fwd/arena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/arena.hpp -------------------------------------------------------------------------------- /src/fwd/character.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/character.hpp -------------------------------------------------------------------------------- /src/fwd/command_source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/command_source.hpp -------------------------------------------------------------------------------- /src/fwd/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/config.hpp -------------------------------------------------------------------------------- /src/fwd/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/console.hpp -------------------------------------------------------------------------------- /src/fwd/database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/database.hpp -------------------------------------------------------------------------------- /src/fwd/dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/dialog.hpp -------------------------------------------------------------------------------- /src/fwd/eoclient.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/eoclient.hpp -------------------------------------------------------------------------------- /src/fwd/eodata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/eodata.hpp -------------------------------------------------------------------------------- /src/fwd/eoplus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/eoplus.hpp -------------------------------------------------------------------------------- /src/fwd/eoserver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/eoserver.hpp -------------------------------------------------------------------------------- /src/fwd/guild.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/guild.hpp -------------------------------------------------------------------------------- /src/fwd/hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/hook.hpp -------------------------------------------------------------------------------- /src/fwd/i18n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/i18n.hpp -------------------------------------------------------------------------------- /src/fwd/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/map.hpp -------------------------------------------------------------------------------- /src/fwd/nanohttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/nanohttp.hpp -------------------------------------------------------------------------------- /src/fwd/npc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/npc.hpp -------------------------------------------------------------------------------- /src/fwd/npc_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/npc_data.hpp -------------------------------------------------------------------------------- /src/fwd/packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/packet.hpp -------------------------------------------------------------------------------- /src/fwd/party.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/party.hpp -------------------------------------------------------------------------------- /src/fwd/player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/player.hpp -------------------------------------------------------------------------------- /src/fwd/quest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/quest.hpp -------------------------------------------------------------------------------- /src/fwd/sln.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/sln.hpp -------------------------------------------------------------------------------- /src/fwd/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/socket.hpp -------------------------------------------------------------------------------- /src/fwd/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/timer.hpp -------------------------------------------------------------------------------- /src/fwd/wedding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/wedding.hpp -------------------------------------------------------------------------------- /src/fwd/world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/fwd/world.hpp -------------------------------------------------------------------------------- /src/guild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/guild.cpp -------------------------------------------------------------------------------- /src/guild.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/guild.hpp -------------------------------------------------------------------------------- /src/handlers/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Account.cpp -------------------------------------------------------------------------------- /src/handlers/AdminInteract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/AdminInteract.cpp -------------------------------------------------------------------------------- /src/handlers/Attack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Attack.cpp -------------------------------------------------------------------------------- /src/handlers/Bank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Bank.cpp -------------------------------------------------------------------------------- /src/handlers/Barber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Barber.cpp -------------------------------------------------------------------------------- /src/handlers/Board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Board.cpp -------------------------------------------------------------------------------- /src/handlers/Book.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Book.cpp -------------------------------------------------------------------------------- /src/handlers/Chair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Chair.cpp -------------------------------------------------------------------------------- /src/handlers/Character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Character.cpp -------------------------------------------------------------------------------- /src/handlers/Chest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Chest.cpp -------------------------------------------------------------------------------- /src/handlers/Citizen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Citizen.cpp -------------------------------------------------------------------------------- /src/handlers/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Connection.cpp -------------------------------------------------------------------------------- /src/handlers/Door.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Door.cpp -------------------------------------------------------------------------------- /src/handlers/Emote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Emote.cpp -------------------------------------------------------------------------------- /src/handlers/Face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Face.cpp -------------------------------------------------------------------------------- /src/handlers/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Global.cpp -------------------------------------------------------------------------------- /src/handlers/Guild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Guild.cpp -------------------------------------------------------------------------------- /src/handlers/Init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Init.cpp -------------------------------------------------------------------------------- /src/handlers/Internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Internal.cpp -------------------------------------------------------------------------------- /src/handlers/Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Item.cpp -------------------------------------------------------------------------------- /src/handlers/Jukebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Jukebox.cpp -------------------------------------------------------------------------------- /src/handlers/Locker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Locker.cpp -------------------------------------------------------------------------------- /src/handlers/Login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Login.cpp -------------------------------------------------------------------------------- /src/handlers/Marriage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Marriage.cpp -------------------------------------------------------------------------------- /src/handlers/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Message.cpp -------------------------------------------------------------------------------- /src/handlers/Paperdoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Paperdoll.cpp -------------------------------------------------------------------------------- /src/handlers/Party.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Party.cpp -------------------------------------------------------------------------------- /src/handlers/Players.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Players.cpp -------------------------------------------------------------------------------- /src/handlers/Priest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Priest.cpp -------------------------------------------------------------------------------- /src/handlers/Quest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Quest.cpp -------------------------------------------------------------------------------- /src/handlers/Refresh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Refresh.cpp -------------------------------------------------------------------------------- /src/handlers/Shop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Shop.cpp -------------------------------------------------------------------------------- /src/handlers/Sit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Sit.cpp -------------------------------------------------------------------------------- /src/handlers/Spell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Spell.cpp -------------------------------------------------------------------------------- /src/handlers/StatSkill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/StatSkill.cpp -------------------------------------------------------------------------------- /src/handlers/Talk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Talk.cpp -------------------------------------------------------------------------------- /src/handlers/Trade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Trade.cpp -------------------------------------------------------------------------------- /src/handlers/Walk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Walk.cpp -------------------------------------------------------------------------------- /src/handlers/Warp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Warp.cpp -------------------------------------------------------------------------------- /src/handlers/Welcome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/Welcome.cpp -------------------------------------------------------------------------------- /src/handlers/handlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/handlers.cpp -------------------------------------------------------------------------------- /src/handlers/handlers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/handlers/handlers.hpp -------------------------------------------------------------------------------- /src/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/hash.cpp -------------------------------------------------------------------------------- /src/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/hash.hpp -------------------------------------------------------------------------------- /src/i18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/i18n.cpp -------------------------------------------------------------------------------- /src/i18n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/i18n.hpp -------------------------------------------------------------------------------- /src/loginmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/loginmanager.cpp -------------------------------------------------------------------------------- /src/loginmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/loginmanager.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/map.cpp -------------------------------------------------------------------------------- /src/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/map.hpp -------------------------------------------------------------------------------- /src/nanohttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/nanohttp.cpp -------------------------------------------------------------------------------- /src/nanohttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/nanohttp.hpp -------------------------------------------------------------------------------- /src/npc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/npc.cpp -------------------------------------------------------------------------------- /src/npc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/npc.hpp -------------------------------------------------------------------------------- /src/npc_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/npc_data.cpp -------------------------------------------------------------------------------- /src/npc_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/npc_data.hpp -------------------------------------------------------------------------------- /src/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/packet.cpp -------------------------------------------------------------------------------- /src/packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/packet.hpp -------------------------------------------------------------------------------- /src/party.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/party.cpp -------------------------------------------------------------------------------- /src/party.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/party.hpp -------------------------------------------------------------------------------- /src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/platform.h -------------------------------------------------------------------------------- /src/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/player.cpp -------------------------------------------------------------------------------- /src/player.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/player.hpp -------------------------------------------------------------------------------- /src/quest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/quest.cpp -------------------------------------------------------------------------------- /src/quest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/quest.hpp -------------------------------------------------------------------------------- /src/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/sha256.c -------------------------------------------------------------------------------- /src/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/sha256.h -------------------------------------------------------------------------------- /src/sln.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/sln.cpp -------------------------------------------------------------------------------- /src/sln.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/sln.hpp -------------------------------------------------------------------------------- /src/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/socket.cpp -------------------------------------------------------------------------------- /src/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/socket.hpp -------------------------------------------------------------------------------- /src/socket_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/socket_impl.hpp -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/stdafx.h -------------------------------------------------------------------------------- /src/test/config_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/test/config_test.cpp -------------------------------------------------------------------------------- /src/test/handlers/Login_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/test/handlers/Login_test.cpp -------------------------------------------------------------------------------- /src/test/integration/change_passwords.eob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/test/integration/change_passwords.eob -------------------------------------------------------------------------------- /src/test/integration/create_accounts.eob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/test/integration/create_accounts.eob -------------------------------------------------------------------------------- /src/test/integration/create_delete_char.eob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/test/integration/create_delete_char.eob -------------------------------------------------------------------------------- /src/test/integration/double_login.eob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/test/integration/double_login.eob -------------------------------------------------------------------------------- /src/test/integration/login_queue_busy.eob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/test/integration/login_queue_busy.eob -------------------------------------------------------------------------------- /src/test/testhelper/mocks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/test/testhelper/mocks.hpp -------------------------------------------------------------------------------- /src/test/testhelper/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/test/testhelper/setup.hpp -------------------------------------------------------------------------------- /src/test/util/semaphore_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/test/util/semaphore_test.cpp -------------------------------------------------------------------------------- /src/test/util/threadpool_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/test/util/threadpool_test.cpp -------------------------------------------------------------------------------- /src/test/worlddump_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/test/worlddump_test.cpp -------------------------------------------------------------------------------- /src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/timer.cpp -------------------------------------------------------------------------------- /src/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/timer.hpp -------------------------------------------------------------------------------- /src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/util.cpp -------------------------------------------------------------------------------- /src/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/util.hpp -------------------------------------------------------------------------------- /src/util/async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/util/async.hpp -------------------------------------------------------------------------------- /src/util/rpn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/util/rpn.cpp -------------------------------------------------------------------------------- /src/util/rpn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/util/rpn.hpp -------------------------------------------------------------------------------- /src/util/secure_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/util/secure_string.hpp -------------------------------------------------------------------------------- /src/util/semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/util/semaphore.cpp -------------------------------------------------------------------------------- /src/util/semaphore.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/util/semaphore.hpp -------------------------------------------------------------------------------- /src/util/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/util/threadpool.cpp -------------------------------------------------------------------------------- /src/util/threadpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/util/threadpool.hpp -------------------------------------------------------------------------------- /src/util/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/util/variant.cpp -------------------------------------------------------------------------------- /src/util/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/util/variant.hpp -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/version.h -------------------------------------------------------------------------------- /src/wedding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/wedding.cpp -------------------------------------------------------------------------------- /src/wedding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/wedding.hpp -------------------------------------------------------------------------------- /src/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/world.cpp -------------------------------------------------------------------------------- /src/world.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/src/world.hpp -------------------------------------------------------------------------------- /tu/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/tu/commands.cpp -------------------------------------------------------------------------------- /tu/eoplus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/tu/eoplus.cpp -------------------------------------------------------------------------------- /tu/game_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/tu/game_1.cpp -------------------------------------------------------------------------------- /tu/game_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/tu/game_2.cpp -------------------------------------------------------------------------------- /tu/game_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/tu/game_3.cpp -------------------------------------------------------------------------------- /tu/handlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/tu/handlers.cpp -------------------------------------------------------------------------------- /tu/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/tu/main.cpp -------------------------------------------------------------------------------- /tu/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/tu/sha256.c -------------------------------------------------------------------------------- /tu/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/tu/system.cpp -------------------------------------------------------------------------------- /upgrade/0.5.2_to_0.5.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/upgrade/0.5.2_to_0.5.3.sql -------------------------------------------------------------------------------- /upgrade/0.6.2_to_0.7.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/upgrade/0.6.2_to_0.7.0.sql -------------------------------------------------------------------------------- /upgrade/0.7.0_to_0.7.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/upgrade/0.7.0_to_0.7.1.sql -------------------------------------------------------------------------------- /upgrade/0.7.0_to_0.7.1_sqlserver.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanmoffat/etheos/HEAD/upgrade/0.7.0_to_0.7.1_sqlserver.sql --------------------------------------------------------------------------------