Radkampfwagen's Forum Posts

  • thx alot dop2000 for sending me that link

    DarkViGaCi

    I wanted to make a leaderboard for the player who plays it

    I dont want the leader board for people across the web

    So i would want the player to play the quiz and the leader board will have

    the players top 10 highest scores with the time he took to play it

    Radkampfwagen

  • Hi,

    I am trying to make a local leader board but I am stuck,

    I know you're probably thinking there's loads of forums already about this but when I try to download the examples, the link are all expired.

    So I know that you need to use Local Storage but how do I make it?

    Can anyone explain it to me or please give me a C3 example file?

    Thanks in advance,

    Radkampfwagen

    Tagged:

  • Thanks a lot dude.

  • Use the Local Storage plugin.

    Thanks a lot for that I can't believe I never noticed that plugin before!

  • Hi,

    I just want to ask how I save variables to the players PC or whatever its called.

    Like I don't mean set variable

    So for example:

    The game just got updated

    A tab pops up saying "New update"

    it also has a button saying "don't show again"

    When the player clicks "don't show again" how do I code so that the next time the player plays the game it won't pop up again?

    Thanks in advance,

    Radkampfwagen

  • No, it's not.

    So you meant lowest Y?

  • I am not sure

    I just made a new project with the same code but all works fine with me

    Also when you said Z order is this a 3D game?

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Yes this kind of thing happened to me

    So even though the timescale was 0, when I fired a bullet the bullet spawned but didn't move.

    I guess I could have tried using a variable like

    IF timescale is 1 → timescale_var == 1

    And then in the events add

    While timescale_var == 1 AND on space pressed (or whatever your one is) → Spawn bullet

    I'm not sure whether this will work,

    Tell me if it doesn't

    Radkampfwagen

  • well could you show us a screenshot of your event sheet please so we can help

  • So you want to know when the text changes?

    If so then you could try coding :

    IF Variable <Variable

    I am actuallt not too sure whether this works

    but it is worth trying if you would want

    Radkampfwagen

  • well before the +5 did you not put the object's X or Y?

    so e.g.:

    set Object.X to Object.X+5

  • construct.net/en/make-games/addons/84/greenworks-for-nw-js/versions

    look through the version history and download the plug-in.

  • I finally finished making this clicker game called Factory Clicker.

    Thanks a lot to the construct 3 developers for answering my forums.

    In this project I used all my 50 events so sadly I can't really improve it, however please do give me ideas in case I might buy the Construct 3 plan.

    Please rate the game/10.

    construct.net/en/free-online-games/factory-clicker-78914/play

    edit - for best game results play in full-screen

    Tagged:

  • so you don't want the player to face left even when its past the wall?

    and also when you said same for the right side did you mean it was facing right both times?

  • You probably could try

    IF Object.X == Wall.X+(how far away you would want it to detect)

    edit - or of course you could try it with Y or both , XY

    edit -

    i also forgot to mention:

    if the Wall is in the center and the Object is on the right you would use(+)

    IF Object.X == Wall.X+(how far away you would want it to detect)

    and if the Object is on the left you would use (-):

    IF Object.X == Wall.X-(how far away you would want it to detect)

    and if the wall is in the center and the Object is above you would use(+):

    IF Object.Y == Wall.Y+(how far away you would want it to detect)

    and if the Object is beneath the wall you would use (-):

    IF Object.Y == Wall.Y-(how far away you would want it to detect)

    i hope this is what you want to find out about

    Radkampfwagen