The mysql tag has no wiki summary.
0
votes
2answers
128 views
Mysql database reading and writing [closed]
In my Libgdx application I would like to be able to connect to a mysql server securely and read and write data from it without other users injecting, or changing information. I've found this: ...
1
vote
0answers
30 views
reduce/eliminate sql queries using server game engine/ram [closed]
I am playing around with php on server and html/js client for a game/experiment. Right now, real time data is being updated and queried from mysql but in the very near future I want to expand from a ...
0
votes
1answer
86 views
What is the correct way to authenticate a player with password from Unity to a php api server?
So, I have a game in Unity for mobiles that gives you the possibility to sign-up with username, email and password to unlock extra features.
The datas are sent, through a POST request, to a PHP+MYSQL ...
0
votes
1answer
117 views
Collectible Card Game Card Text To Code Association
I am making a collectible card game using a command pattern for using card abilities and creating a class for each card text ability. The game is setup to work with an authoritative server structure. ...
1
vote
2answers
208 views
RPG: store dialog
I'm creating a single player web RPG. I was originally storing NPC dialog in a JS object. I could cycle through lengthy dialog in an array as I wanted. I can also store objects with K:V pairs.
That ...
2
votes
1answer
237 views
Pokemon Game - MySQL Data Structure
I'm making a Pokemon MMO Game with Unity + SmartFoxServer/MySQL and at the moment i'm creating the base structure for the database.
But i'm stuck because i don't know the best structure for the moves ...
2
votes
1answer
114 views
When to read/write to database with a game server
My question is fairly simple but maybe hard to answer. I'm currently building my own game server and I've done to login server now. So, on to the actual game server. I have a question for this server ...
3
votes
2answers
769 views
Why should I not use MySQL for a browser based game?
I keep reading on here that I shouldn't use MySQL for game development/play on the Internet, a browser game. I understand MySQL wasn't made necessarily for that and for big relational needs. Ok. ...
0
votes
1answer
193 views
Structure examples for web-based chat for web-based game [closed]
What would be the best tools to use to create a web based chat/messaging system ?
for client we have :
Browser (any JS solution - preferably without using flash like in jsocket)
for server we have :
...
2
votes
2answers
613 views
how to implement pvp(text based rpg in php/mySQL)
I'm creating a text based rpg in php/mySQL and I've come up to a dead end in regards implementing the pvp aspect of the game. First off is this even possible in php/mysql? If so, how would I go about ...
1
vote
1answer
464 views
How to handle a player's level and its consequent privileges?
I'm building a game similar to Mafia Wars where a player can do tasks for his gang and gain experience and thus advancing his level.
The game is built using PHP and a Mysql database.
In the game I ...
-1
votes
1answer
497 views
Server Based High Scores
I'm currently using the following MySQL example to make a server side high score table: Unity Server Side high score
The above example allows me to create a top 5 player high score table that sorts ...