PHP game server for TerranQuest (version 1) https://terranquest.net
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
Este repositorio está archivado. Puede ver los archivos y clonarlo, pero no puede subir cambios o reportar incidencias ni pedir Pull Requests.
 
 
 
 
Skylar Ittner 23d2728449 Set Medoo version (TODO: refactor server for new version) hace 7 años
admin Add admin panel system alert chat broadcasts hace 7 años
lang Add place artifacts (See issue TerranQuest/1) hace 7 años
nbproject Add private messaging (closes #8), add more formatting options to chat hace 8 años
.gitignore places.php now has owner data, players can be kicked with a message hace 8 años
.htaccess Add i18n hace 8 años
README.md Update readme hace 8 años
artifactplace.php Add place artifacts (See issue TerranQuest/1) hace 7 años
attackplace.php Add "levelup" boolean to output of *place.php hace 7 años
buyitem.php Add i18n hace 8 años
capturemunzee.php Fix bug where we didn't actually save the new token after a Munzee hace 8 años
chat.php Forgot to remove some debug output hace 8 años
claimplace.php Add "levelup" boolean to output of *place.php hace 7 años
cluster.php Add private messaging (closes #8), add more formatting options to chat hace 8 años
code2item.php Add artifacts to database hace 7 años
composer.json Set Medoo version (TODO: refactor server for new version) hace 7 años
composer.lock Add private messaging (closes #8), add more formatting options to chat hace 8 años
database.mwb Add artifacts to database hace 7 años
dbsettings.php Tons of changes, enforce valid login for some API actions hace 8 años
deletesession.php Add deletesession.php hace 8 años
favicon.ico First Commit hace 8 años
geocaches.php Tons of changes, enforce valid login for some API actions hace 8 años
getbadges.php Tons of changes, enforce valid login for some API actions hace 8 años
getstats.php Add kick code to getstats.php hace 7 años
getterrain.php getterrain.php output variable names now same as GIS API output. (issue #3) hace 8 años
getweather.php Move weather fetching and cache handling to weather_inc.php hace 8 años
giveitem.php Add i18n hace 8 años
index.php Change stuff, add Dockerfile (not ready yet) hace 8 años
inventory.php Add place artifacts (See issue TerranQuest/1) hace 7 años
latlong_validate.php Move lat/long validation to seperate file, add terrain data from gis hace 8 años
login.php Add place artifacts (See issue TerranQuest/1) hace 7 años
maptileurl.php Stuff hace 8 años
minclientversion.php Add minimum client version check code hace 8 años
munzee.php Remove munzee.log debugging hace 7 años
nearby.php Add nearby players list hace 8 años
onlyloggedin.php Add i18n hace 8 años
ping.php Add i18n hace 8 años
places.php places.php now has owner data, players can be kicked with a message hace 8 años
placestats.php Fix artifact count bug hace 7 años
privmsgs.php Add sending private messages without appearing in global chat hace 8 años
processiap.php Add i18n hace 8 años
refillplace.php Add place artifacts (See issue TerranQuest/1) hace 7 años
required.php Add case for "en-US" hace 7 años
response.php Move lat/long validation to seperate file, add terrain data from gis hace 8 años
robots.txt Tons of changes, enforce valid login for some API actions hace 8 años
setteam.php Add i18n hace 8 años
settings.template.php Add private messaging (closes #8), add more formatting options to chat hace 8 años
shopitems.php Add in-app purchases hace 8 años
type_grid.php Attack strength now decreases far away from a location (closes #6) hace 8 años
useitem.php Add i18n hace 8 años
weather_inc.php Attack strength now decreases far away from a location (closes #6) hace 8 años

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