PHP is a general-purpose programming language that is especially suited for web development.
25
votes
5answers
11k views
How to create a hexagon world map in PHP from a database for a browser based strategy game
I'm trying to create a hexagon world map for my PHP browser based strategy game. I've created a table in my database with the following data per row: id, type, x, y and occupied. Where type is the ...
22
votes
2answers
10k views
Understanding Perlin Noise
I'm toying with Perlin Noise after some work with Diamond Square. I followed the implementation by Hugo Elias that basically, makes a series of functions with x,y as input to throw each coordinate ...
9
votes
4answers
5k views
How relevant is PHP today for browser games?
I was the lead developer of 2 moderately successful browser games quite a few years back, and plan on working on a new game soon. At the time, I wrote them in pure PHP (no template engine or anything ...
8
votes
3answers
882 views
Calculating Experience Points earned after a battle
I'm developing a simple text battle game and having some issues calculating how much XP should be earned after a battle, theres a few factors that i want to consider:
1) Players should of course earn ...
8
votes
4answers
987 views
Securing HTTP data from a JavaScript game to server
Suppose I am doing a JavaScript game, and I wish the game to update the server if the user has successfully completes the game and his outcome.
How should I ensure that the request came from the ...
8
votes
1answer
536 views
Separating logic and data in browser game
I've been thinking this over for days and I'm still not sure what to do. I'm trying to refactor a combat system in PHP (...sorry.) Here's what exists so far:
There are two (so far) types of entities ...
7
votes
3answers
3k views
Javascript and PHP for real-time multiplayer?
I'm wondering if combining Javascript clientside with PHP/mysql serverside is a good idea for HTML5 real-time multiplayer (small scale) browser games?
My technical knowledge is very limited, and even ...
6
votes
4answers
2k views
Text-based game using JavaScript and/or PHP
I'd like to make a simple text-based game using either JavaScript or PHP. Ideally I'd like to be able to render ASCII text in a kind of blackscreen "console" style (think console roguelikes such as ...
5
votes
3answers
1k views
Securing JavaScript / PHP game data
Followup to securing-http-data-from-a-javascript-game-to-server.
I'm working on something similar, in that I have a PHP backend and a JavaScript frontend, which plays around with the HTML5 canvas ...
5
votes
5answers
631 views
PHP Browser Game Question - Pretty General Language Suitability and Approach Question
I'm developing a browser game, using PHP, but I'm unsure if the way I'm going about doing it is to be encouraged anymore.
It's basically one of those MMOs where you level up various buildings and ...
5
votes
6answers
2k views
How to implement a component based system for items in a web game
Reading several other questions and answers on using a component based system to define items I want to use one for the items and spells in a web game written in PHP. I'm just stuck on the ...
5
votes
4answers
703 views
Browser-board-game and server push
I want to start developing a browser game. Not for success, just for the sake of doing it and learning something from it.
Now, a point where I have serious problems figuring out how to deal with it ...
4
votes
2answers
435 views
What platform should I use for a master server?
We are making a small FPS, and want people to be able to play it online and fetch a list of all servers from a master server. We only have experience in C#, and we have already written a master server ...
4
votes
2answers
2k views
Control diamond square algorithm to generate islands/pangea
I generated a height map with the diamond square algorithm. The thing is i do not manage to create islands, this is, restrict the height other than water level range to a certain value in the center ...
3
votes
3answers
1k views
Facebook Game database design
I'm currently develop a facebook mafia like PHP game(of course, a light weight version), here is a simplify database(MySQL) of the game
id-a <int3> <for index>
uid ...
3
votes
3answers
874 views
Will running cron jobs every minute a good practice?
I'm trying to create a browser-based game (made in PHP, MySQL, Js, HTML, and CSS) that is heavily dependent on user's actions being carried out after a certain amount of time passed whether online or ...
3
votes
2answers
1k views
Advice on a PHP RPG System
I am looking to make a php/mysql/javascript based rpg on a site. I am trying to figure out the best method when it comes to items, quests, etc. For instance should I make classes for each item type ...
3
votes
3answers
293 views
How can I randomly generate arbitrary “rules” for a creative card game
My friends and I in school play this interesting card game, which we call 'the game without rules' (ironically, of course). The game is like this: in the beginning of a school year, we start with one ...
3
votes
2answers
571 views
Drag and Drop Team Selection
I have a Fantasy F1 Website, currently users select their teams using dropdown menus. It works OK but isn't as user friendly as I would like.
I would like to implement a drag and drop type of ...
3
votes
1answer
216 views
Game based on Ajax polling for 12 players
I am planning on writing a small browser game.
The webserver is a shared server, with no root / install possible.
I want to use AJAX for client/server communication. There will be 12 players.
So ...
3
votes
1answer
196 views
PHP city-sim castle layout
I am currently contemplating the layout system for my php based game but i've run into a couple of worries. So my idea is a 9X9 grid where the center 3X3 are inner castle. The inner castle will be 6X6 ...
2
votes
2answers
165 views
Web application interacts bi-directional with server program?
I want to write a web application to play chess against the engine Crafty. I'm not new to PHP and javascript, but must learn how to interact with a server process : how can a web application and/or ...
2
votes
2answers
435 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 ...
2
votes
2answers
334 views
PHP Browser Game Private Messages?
First off, I'm asking this question here because gaming and messaging are intimately connected. Why win if you can't gloat? Nevertheless, I won't be offended if this needs to be moved to overflow.
...
2
votes
1answer
90 views
How to display a hierarchical skill tree in php [on hold]
If I have skill data set up in a tree format (where earlier skills are prerequisites for later ones), how would I display it as a tree, using php? The parent would be on top and have 3 children. Each ...
1
vote
2answers
439 views
PHP and Javascript/HTML5 Collaboration [closed]
I've recently been working on a fairly complicated game. I've stored information with local storage, but that allows the player to edit it, and does not transfer from computer to computer. The two ...
1
vote
1answer
241 views
How can I keep track of a battle log on a web game?
Recently I started working on a Web turn-based PvP RPG game. Now I'm working on the battle system but I encountered some issues:
How can I keep track of everything that happens in the battle? It ...
1
vote
3answers
448 views
Calculation of a fight with many entities
User A can have many entities
A Entity is a object that has properties such as health, attack, defence, agility, stamina, etcetera.
When User A want to attack User B with x entities I am looking ...
1
vote
2answers
875 views
How do I generate a 2d grid-based map without screwing it up?
I'm relatively new to the mechanics of game development - catching up fast, but there are still some things that escape me. For example: generating a fully-accessible map on a 2d grid.
See the ...
1
vote
1answer
279 views
How to decide who wins a race?
I'im thinking of building a text-based browser game.
A racing game.like F1 or rally.
users can set-up a car.
thinks like tyres, fuel, driver,brakes.
every attribute gets a value.
the part where i ...
1
vote
2answers
4k views
Multiplayer card game using PHP/Ajax and mysql
I am designing a map game, using PHP and MYSQL. I don't know how to make the players who sign-in to the website to see other players who are also connected to the site and be able to chat with one ...
1
vote
2answers
115 views
How to figure out a users earnt exp based upon calculating the difference by user and player by x?
How would I figure out a users earnt EXP based upon calculating the difference by user and player by x using this format?
If the user is 60 levels less than me, I would get 0 exp (as that's just ...
1
vote
1answer
168 views
What tech will enable a script to run after a certain amount of time elapsed following a user's action?
I'm trying to experiment in creating an MMO browser-based game using PHP, MySQL, Javascript, HTML5, and CSS.
There is this certain functionality that I want in my game that I'm having trouble with.
...
1
vote
1answer
435 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
vote
1answer
456 views
php multiplayer game - server&client model
I'm working on a simple round&web-based multiplayer game. The idea of the game is very simple: The players get an array of audio files which they listen to and write the transcripts for in 5 ...
1
vote
1answer
389 views
Architectural advice - websockets javascript/php integration
Myself and a friend have started making a game, he's likely to be using impact.js for the user interaction etc, but we need multiplayer functionality so some form of websockets for TCP connections ...
1
vote
2answers
465 views
Passive skills and items
I'm making a small text browser RPG game using PHP, MySQL and Java Script (and jQuery). All the items are saved in the MySQL database.
Every now and then a character have to make a skill roll (Talk, ...
1
vote
1answer
620 views
hexagon tiles to square tiled map
in a previous question asked here:how-to-create-a-hexagon-world-map @Tim Holt has provided code that does the job that i'm wanted to do, the only difference I would like is to have it as squares ...
1
vote
1answer
812 views
PHP battle script
I have custom built as a little personal project a website coded in php that is a MMORPG.
It is at the minute just a personal private project but I am stuck as what to do when it comes to users ...
1
vote
0answers
315 views
How can I secure a high score table? [duplicate]
Possible Duplicate:
How can I prevent cheating on global highscore tables?
So, I create a game in Flash and I want to keep a hi-score table for people to compete in.
After a player has ...
0
votes
3answers
214 views
Using an engine to create content with PHP - but how should it happen?
I need to create an engine that will allow me to add content to a website. The website is a browser-based game. This is a verbose engine that should be able to handle many different aspects of the ...
0
votes
3answers
2k views
For making an online multiplayer browser-based game, what tech would be more efficient to use? [closed]
I asked a partial question on stackoverflow, and then realized that this would be the place to get a better answer because this is the game dev website, and you all may know more than the programmers ...
0
votes
3answers
496 views
Web Card Game , MySQL vs SQLite performance wise
Been thinking of creating a js/PHP/MySQL game, with multiple players / games happening concurrently. Is there any chance SQLite might be faster for something like this than MySQL? Keep in mind that ...
0
votes
1answer
552 views
SQl, noSQL, and Doctrine with Symfony 2.0
I've had the idea of creating a webgame for a while now, and as it becomes more and more accurate i started playing around with Symfony 2.0.
First question :
it seems that it is recommanded to use ...
0
votes
2answers
252 views
What's the best way to keep battle log in a browser based game written in PHP?
I've searched for it, but I couldn't find any question about this.
I'm working on a game where PvP fights are possible. The game is written in PHP/MySQL.
What I want to implement is to save all the ...
0
votes
1answer
71 views
Send request for Turned Based Battle
I want to create a turn based battle system for Pokemon online rpg!
I will some how implement the coding of the battle..but I want to know how can a user send request for a battle to other user?
If ...
0
votes
1answer
59 views
How would one outline an alpha transparency layer in javscript and/or php? [duplicate]
I simply want an outline/edge detection of the character/item/object that is selected or doing something.
I'm seeing lots of versions of this question for different languages, but I would appreciate ...
0
votes
1answer
145 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 :
...
0
votes
1answer
135 views
What strategies can I use to update the visuals of my game to be more modern? [closed]
I'm making a browser strategy game.
Now my problem is that I have a feeling that my design is dated.
For now I have only used background colors and borders to make things look nice, but I have ...
0
votes
1answer
75 views
Build / Destroy function design & security checks
I'm working on a browser based strategy game. For the moment I'm working on the build/destroy functions and I have a couple of questions about this. The main question is do you have advice on how I ...