The mysql tag has no usage guidance.
-5
votes
0answers
41 views
Pokemon Database [closed]
can someone please give me a pokemon database for the games. https://www.youtube.com/watch?v=lQsa-kvdCSQ I have tried this but it doesn't work for me, but that is exactly what I want.
1
vote
1answer
52 views
Libgdx Networking (http requests) - Login [duplicate]
I am new to Networking and Databases,
but im trying to learn MySQL and HTTP Requests to create a
user Login for a game.
My goal is to let users create accounts and login to them etc (for Highscores ...
0
votes
0answers
30 views
Map and Positions, Database Structure
The database structure:
maps
id
name
positions
id
map_id
x
y
The relation states: Each map have many positions, A character can be on a position.
So the idea is to store each x, y position on a ...
0
votes
2answers
417 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
35 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
205 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
148 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
305 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
345 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
131 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
1k 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
242 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
778 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
489 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
622 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 ...