wildmedia's Forum Posts

  • Why don't you load every character into a 1d array, and work your way around into a repetitive loop.

  • can you show us the googleMaps_plugin.js ?

  • Why do you have to use jQuery, you can create some events, that will change the elements height, and append the content. On the next click, you reset the layout and then append text to the container that was clicked after.

  • thank you very much xD

  • Hello guys, I wasn't able to find the reverse function of sine/cos, you know sine at -1, also called arcsine...

    Anyone knows what's the name of the function please?

  • if it's needed, you will have to move the health bar in the opposide direction, sprite_name.X - [hearth width]

  • okay, I suggest you to crop a hearth and use a TiledBackground.

    Let's say you will use a 25px by 25px hearth(2 transparent px on each side in order to establish a margin) and your player will strat with 3 lifes.

    so you will set the bar: width = 25 * [number of lifes]

  • I don't have time right now to look over your project, but here's how to do it!

    Create 2 global variables,

    SCORE

    BESTSCORE

    when you run your game you will operate with the score(init with 0), and at the end of the game, compare score with bestscore, if score > bestscore then bestscore = score

  • Hello guys,

    I want to know if it's possible to create a 3d sphere that can be rotated using keyboard input in c2.

    Thx,

  • We will really like a perspective shader and a Z axis inverter xD

  • thx for the replay,

    The biggest problem I have is the deph of field, it looks like C2 is not going to support the render tech needed... I must come up with smth

    xD

  • Hello guys, I want to create a survival game.

    A brief description:

    You spawn on a map(a huge map smth like minecraft world, tile based) and you must find your way to survive, cut trees, kill beasts, eat etc.

    You will see you character from a third persion camera that is above you and ponited at you, smth like a birds eye.

    I have to store objects position on the map, because the player will have the ability to drop items, and create wherever he wants.

    I want to know if anyone ever tried to do smth like this and some ideas on how to create the map and how to create a positioning system.

    I will apreciate any advice and if anyone would like to help me create the engine and make it public, please tell me.

    Btw.. I found a game that suits my vision: dontstarvegame.com

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Nope, the game is pretty complex, I have smth similar to a shell, where the player must enter functions, such as: move, fire, turn(left)

    those functions are loaded into my array, so when he triggers "the script(list of fuctions)" I have to make go all over the array and do those functions. And I want to have a little break between those functions.

  • Kazan, If you want to use the game only on your PC you don't need a CSS, but the game will be played by people who don't have the font installed, so the CSS will tell the browser how to render the font, and where he can find the font. If you use my method, you won't need google fake fonts, or whatever is called because the font will pe placed inside your game data, please tell me if you managed to solve your problem. xD

  • Hy, I have a loop that will go over an array(1d, width:10) and after every cycle I want the loop to wait 1 second in order to execute my animation. Well, it looks like the wait action doesn't work in a loop, any ideas?