Role playing game. A game where the player assumes a character or role, that evolves through story or character development.

learn more… | top users | synonyms

0
votes
1answer
28 views

problem updating labels

I am using the following code to handle xp gains: reqXP = (Level ^ 2 + Level + 3) * 4 If (currXP >= reqXP) Then Level = Level + 1 expPoints = expPoints + 3 excessXP ...
3
votes
0answers
233 views

How to prevent the main character to push other characters with Bullet Physics?

I am doing a 3D RPG game, and I want the player to be unable to push the other characters in the game like if they were inside the static geometry of the level, but I want the other characters to push ...
2
votes
0answers
235 views

RPG Maker VX - How to increase tileset limit?

On RPG Maker VX the default setup allows you to have 5 tilesets for the map layout. I know it's possible to make "fake" tiles by using events overlaid on the real tiles to show different images. ...
1
vote
0answers
129 views

iOS cocos2d - sprite gets stuck in collision detection

I'm developing a top down game in cocos2d and I have collision code that checks collisions between enemies and the player so that they don't go through each other. The code seems to work but the ...