├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── config.h.in ├── config.rpath ├── configure.ac ├── doc ├── quest_enhancements.md └── scripting.md ├── git_version.am ├── git_version.sh ├── l10n ├── Makefile.am └── ship-strings.txt ├── legits.xml ├── m4 ├── ax_pthread.m4 ├── cflags.m4 └── iconv.m4 └── src ├── Makefile.am ├── admin.c ├── admin.h ├── bans.c ├── bans.h ├── block.c ├── block.h ├── clients.c ├── clients.h ├── commands.c ├── commands.h ├── flopen.c ├── gm.c ├── gm.h ├── items.c ├── items.h ├── list.c ├── lobby.c ├── lobby.h ├── mapdata.c ├── mapdata.h ├── packets.h ├── pidfile.c ├── player.h ├── pmtdata.c ├── pmtdata.h ├── ptdata.c ├── ptdata.h ├── quest_functions.c ├── quest_functions.h ├── quests.c ├── quests.h ├── rtdata.c ├── rtdata.h ├── scripts.c ├── scripts.h ├── ship.c ├── ship.h ├── ship_packets.c ├── ship_packets.h ├── ship_server.c ├── shipgate.c ├── shipgate.h ├── smutdata.c ├── smutdata.h ├── subcmd-dcnte.c ├── subcmd.c ├── subcmd.h ├── utils.c ├── utils.h ├── word_select-dc.h ├── word_select-gc.h ├── word_select-pc.h ├── word_select.c └── word_select.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/config.h.in -------------------------------------------------------------------------------- /config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/config.rpath -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/quest_enhancements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/doc/quest_enhancements.md -------------------------------------------------------------------------------- /doc/scripting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/doc/scripting.md -------------------------------------------------------------------------------- /git_version.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/git_version.am -------------------------------------------------------------------------------- /git_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/git_version.sh -------------------------------------------------------------------------------- /l10n/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/l10n/Makefile.am -------------------------------------------------------------------------------- /l10n/ship-strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/l10n/ship-strings.txt -------------------------------------------------------------------------------- /legits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/legits.xml -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/cflags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/m4/cflags.m4 -------------------------------------------------------------------------------- /m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/m4/iconv.m4 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/admin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/admin.c -------------------------------------------------------------------------------- /src/admin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/admin.h -------------------------------------------------------------------------------- /src/bans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/bans.c -------------------------------------------------------------------------------- /src/bans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/bans.h -------------------------------------------------------------------------------- /src/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/block.c -------------------------------------------------------------------------------- /src/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/block.h -------------------------------------------------------------------------------- /src/clients.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/clients.c -------------------------------------------------------------------------------- /src/clients.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/clients.h -------------------------------------------------------------------------------- /src/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/commands.c -------------------------------------------------------------------------------- /src/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/commands.h -------------------------------------------------------------------------------- /src/flopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/flopen.c -------------------------------------------------------------------------------- /src/gm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/gm.c -------------------------------------------------------------------------------- /src/gm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/gm.h -------------------------------------------------------------------------------- /src/items.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/items.c -------------------------------------------------------------------------------- /src/items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/items.h -------------------------------------------------------------------------------- /src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/list.c -------------------------------------------------------------------------------- /src/lobby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/lobby.c -------------------------------------------------------------------------------- /src/lobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/lobby.h -------------------------------------------------------------------------------- /src/mapdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/mapdata.c -------------------------------------------------------------------------------- /src/mapdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/mapdata.h -------------------------------------------------------------------------------- /src/packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/packets.h -------------------------------------------------------------------------------- /src/pidfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/pidfile.c -------------------------------------------------------------------------------- /src/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/player.h -------------------------------------------------------------------------------- /src/pmtdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/pmtdata.c -------------------------------------------------------------------------------- /src/pmtdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/pmtdata.h -------------------------------------------------------------------------------- /src/ptdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/ptdata.c -------------------------------------------------------------------------------- /src/ptdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/ptdata.h -------------------------------------------------------------------------------- /src/quest_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/quest_functions.c -------------------------------------------------------------------------------- /src/quest_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/quest_functions.h -------------------------------------------------------------------------------- /src/quests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/quests.c -------------------------------------------------------------------------------- /src/quests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/quests.h -------------------------------------------------------------------------------- /src/rtdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/rtdata.c -------------------------------------------------------------------------------- /src/rtdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/rtdata.h -------------------------------------------------------------------------------- /src/scripts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/scripts.c -------------------------------------------------------------------------------- /src/scripts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/scripts.h -------------------------------------------------------------------------------- /src/ship.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/ship.c -------------------------------------------------------------------------------- /src/ship.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/ship.h -------------------------------------------------------------------------------- /src/ship_packets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/ship_packets.c -------------------------------------------------------------------------------- /src/ship_packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/ship_packets.h -------------------------------------------------------------------------------- /src/ship_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/ship_server.c -------------------------------------------------------------------------------- /src/shipgate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/shipgate.c -------------------------------------------------------------------------------- /src/shipgate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/shipgate.h -------------------------------------------------------------------------------- /src/smutdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/smutdata.c -------------------------------------------------------------------------------- /src/smutdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/smutdata.h -------------------------------------------------------------------------------- /src/subcmd-dcnte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/subcmd-dcnte.c -------------------------------------------------------------------------------- /src/subcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/subcmd.c -------------------------------------------------------------------------------- /src/subcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/subcmd.h -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/word_select-dc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/word_select-dc.h -------------------------------------------------------------------------------- /src/word_select-gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/word_select-gc.h -------------------------------------------------------------------------------- /src/word_select-pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/word_select-pc.h -------------------------------------------------------------------------------- /src/word_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/word_select.c -------------------------------------------------------------------------------- /src/word_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sylverant/ship_server/HEAD/src/word_select.h --------------------------------------------------------------------------------