TerranQuest
/
Server-v1
Archiviert
1
0
Fork 0
PHP game server for TerranQuest (version 1) https://terranquest.net
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Dieses Repo ist archiviert. Du kannst Dateien sehen und es klonen, kannst aber nicht pushen oder Issues/Pull-Requests öffnen.
 
 
 
 
Skylar Ittner 23d2728449 Set Medoo version (TODO: refactor server for new version) vor 7 Jahren
admin Add admin panel system alert chat broadcasts vor 7 Jahren
lang Add place artifacts (See issue TerranQuest/1) vor 7 Jahren
nbproject Add private messaging (closes #8), add more formatting options to chat vor 8 Jahren
.gitignore places.php now has owner data, players can be kicked with a message vor 8 Jahren
.htaccess Add i18n vor 8 Jahren
README.md Update readme vor 8 Jahren
artifactplace.php Add place artifacts (See issue TerranQuest/1) vor 7 Jahren
attackplace.php Add "levelup" boolean to output of *place.php vor 7 Jahren
buyitem.php Add i18n vor 8 Jahren
capturemunzee.php Fix bug where we didn't actually save the new token after a Munzee vor 8 Jahren
chat.php Forgot to remove some debug output vor 8 Jahren
claimplace.php Add "levelup" boolean to output of *place.php vor 7 Jahren
cluster.php Add private messaging (closes #8), add more formatting options to chat vor 8 Jahren
code2item.php Add artifacts to database vor 7 Jahren
composer.json Set Medoo version (TODO: refactor server for new version) vor 7 Jahren
composer.lock Add private messaging (closes #8), add more formatting options to chat vor 8 Jahren
database.mwb Add artifacts to database vor 7 Jahren
dbsettings.php Tons of changes, enforce valid login for some API actions vor 8 Jahren
deletesession.php Add deletesession.php vor 8 Jahren
favicon.ico First Commit vor 8 Jahren
geocaches.php Tons of changes, enforce valid login for some API actions vor 8 Jahren
getbadges.php Tons of changes, enforce valid login for some API actions vor 8 Jahren
getstats.php Add kick code to getstats.php vor 7 Jahren
getterrain.php getterrain.php output variable names now same as GIS API output. (issue #3) vor 8 Jahren
getweather.php Move weather fetching and cache handling to weather_inc.php vor 8 Jahren
giveitem.php Add i18n vor 8 Jahren
index.php Change stuff, add Dockerfile (not ready yet) vor 8 Jahren
inventory.php Add place artifacts (See issue TerranQuest/1) vor 7 Jahren
latlong_validate.php Move lat/long validation to seperate file, add terrain data from gis vor 8 Jahren
login.php Add place artifacts (See issue TerranQuest/1) vor 7 Jahren
maptileurl.php Stuff vor 8 Jahren
minclientversion.php Add minimum client version check code vor 8 Jahren
munzee.php Remove munzee.log debugging vor 7 Jahren
nearby.php Add nearby players list vor 8 Jahren
onlyloggedin.php Add i18n vor 8 Jahren
ping.php Add i18n vor 8 Jahren
places.php places.php now has owner data, players can be kicked with a message vor 8 Jahren
placestats.php Fix artifact count bug vor 7 Jahren
privmsgs.php Add sending private messages without appearing in global chat vor 8 Jahren
processiap.php Add i18n vor 8 Jahren
refillplace.php Add place artifacts (See issue TerranQuest/1) vor 7 Jahren
required.php Add case for "en-US" vor 7 Jahren
response.php Move lat/long validation to seperate file, add terrain data from gis vor 8 Jahren
robots.txt Tons of changes, enforce valid login for some API actions vor 8 Jahren
setteam.php Add i18n vor 8 Jahren
settings.template.php Add private messaging (closes #8), add more formatting options to chat vor 8 Jahren
shopitems.php Add in-app purchases vor 8 Jahren
type_grid.php Attack strength now decreases far away from a location (closes #6) vor 8 Jahren
useitem.php Add i18n vor 8 Jahren
weather_inc.php Attack strength now decreases far away from a location (closes #6) vor 8 Jahren

README.md

TerranQuest Game Server

This is the server code for TerranQuest. See the TerranQuest game code for examples on how to interact with this server.

The server runs on a standard LAMP server. MariaDB is recommended.

To work with the database, download MySQL Workbench and open the database.mwb file. You can export the SQL create code from there.

Setup

  1. Have a standard LAMP server.
  2. Clone this repo into the webroot.
  3. Run PHP composer to make sure all the dependencies are installed.
  4. Create a SQL database.
  5. Copy settings.template.php to settings.php.
  6. Add the correct settings to settings.php:
  • Plug in your database settings.
  • Contact us for an API key for the GIS API. The GIS server has a global database of places and terrain. You could roll your own, but it's a lot to work with (30GB database and counting).
  • Add API keys for third-party services. You'll probably have to disable Munzee in the code2item.php file, as they don't give everyone capture permissions for their API. The DarkSky weather API is free for 1000 queries a day at darksky.net/dev (no credit card needed). The MapQuest key is for adding location search on the admin panel, if you don't need that don't use it. Ignore the Geocache key, it's not doing anything. Same for the Google Play key, that's only for validating Android in-app purchases.
  • Set an admin username and password, otherwise the admin interface won't work.
  1. Go to yourserver.com/admin and login. If everything works, you should be good to go.
  2. On the login screen of the app, tap the gear and type your server URL.

Codacy Badge