Questions tagged as 'jogos'

0
answers

Which languages to use to create a Tibia / Spout style game (2D) [closed]

Hello, I've always wanted to play a 2D "game" in the type of Tibia a> or Spout (but for the PC), nothing so complex, just the basics (map, make the character move, motion animation, etc.) and I would like to know which languages I shoul...
asked by 11.06.2015 / 00:15
1
answer

What do I create in blender, can I sell? [duplicate]

What do I create in Blender, can I sell or use without worrying about licenses? (example creates templates, animations, videos and use in Unity 3D)     
asked by 29.07.2014 / 05:21
1
answer

error here in my script to make the character give respawn (load.level)

When I put this script in unity and soon after I associate it with a transparent form (without physics) and click on play to test, it gives an error saying that it can not play (look at print), someone can help me? Is something wrong with...
asked by 12.10.2015 / 22:57
3
answers

How can this be improved? (it's just a little game)

I tried to make this game based on Magic Cards. As I'm still learning, that's how I managed to do it. I would like to see other versions to know how I could have done and what I did "wrong". #include <stdio.h> #include <stdlib.h> #...
asked by 11.09.2017 / 03:53
1
answer

The old woman's game in C. The program ends before

I'm trying to make a game of the old language in C but in the first move of player 1 depending on where to put the 'X' the program already ends declaring the player one as a winner. Here is my code: #include <stdio.h> #include <string...
asked by 14.06.2017 / 23:15
1
answer

How to develop a basic game using opengl that accepts keyboard commands [closed]

I tried to follow the source of a tutorial Metar Gearn Nanna because it was interesting to create a game in opengl and c ++, could be something simple, with precarious validations, just so I can understand the concept, I learned to draw triang...
asked by 01.07.2014 / 21:55
1
answer

Help with leveling system (RPG)

Hello, I'm trying to build a leveling system (like an RPG). So far I have this: Math.floor(1000 * Math.pow(level, 1.5F)); Here I enter the level, and I get the EXP needed to reach it. But now I need to do the opposite, I need to enter the E...
asked by 17.02.2018 / 19:18
2
answers

How to access classes in Unity 3D (C #)

I'm doing a 3D game on Engine Unity, a FPS to be more specific and taking advantage of this experience to learn programming in C #, the one I'm having in school. But now I came across a problem, which I know is a simple solution, but since I...
asked by 26.03.2016 / 21:13
1
answer

How to check the winner in the old game [closed]

I'm playing an old game in C, I want to know how to check which player won by checking horizontal and vertical lines and diagonals. Here is my program done so far: #define tam 3 void desenhaTabuleiro(char M[tam][tam]); void zeraTabuleiro...
asked by 31.08.2014 / 02:49
1
answer

Problem creating minimax in chess game

I am coding a chess set only in pure C. The game itself is done, I've been trying to develop the minimax algorithm for some time. Currently the algorithm is almost ready, but it is not yet returning and I think the problem lies in the minimax fu...
asked by 22.05.2018 / 04:22