artheads's Forum Posts

  • Hi folks! I have a variable 'MyVariable' that increases by a random number every 1 second. I wish to display it with comma separator (e.g. 750,000,000) and I do:

    Set Text > RegexReplace(str(MyVariable), "\B(?=(\d{3})+(?!\d))", "g", ",")

    However, I also wish to update this text every tick, so it will "count very fast" 1 by 1, despite the fact that I can add to MyVariable larger numbers than 1. How to achieve this saving my text formatting (comma separator)?

  • Thanks bro! Actually it lay right on the surface :)

  • Hi all! There is a variable in which the number 10 is added once every 1 second. This variable is rendered using a sprite font. How to make the text displayed not by adding 10 at once, but by 1, such as "counter"? That is, I added 10 to the variable, but the text "counts" from 0 to 10, then from 10 to 20 and so on.

  • I realised I had to make a 'Stylesheet' file

    Why not add the code to the game's existing style.css file?

  • For example, you have a dictionary...

    Thanks for a good explanation, but this works with keys. But I need to get entire Dictionary.AsJSON in my script. Is it even possible without using extra variable?

  • Try something like this

    Thank you, but what if I need to get only one special Dictionary object, while there are several in my game? And what is 'foo'?

  • I'm trying to set a variable in my script (scripts in Events) with Dictionary.AsJSON,

    I did this but it doesn't seem to return the correct data (JSON with keys/values):

    var gameData = runtime.objects["dictGameData"].getFirstInstance()

    How to get exact dictionary object as JSON using its name (e.g. "dictGameData") or maybe its UID and then get its all keys/values as JSON to set a variable?

  • You do not have permission to view this post

  • I finally found a solution: just move all your music files from the "Music" folder to the "Sound" folder and that annoying player on Android won't bother you anymore!

    Ashley

    p.s. How to mark this thread as "Solved"?

  • howtoconstructdemos.com/two-virtual-thumbstick-capx

    Just checked this example on 3 year old smartphone and it shows pretty poor performance with almost empty layout, about 50% cpu (high draw calls) and fps drop to 30 when thumbsticks is "in touch". Any idea how to improve this?

  • I'm afraid there's no way to disable this at the moment.

    Hi Ashley, sad to hear. Maybe there are some ways to do this in an exported html5 game?

  • Hi bros! How to remove this annoying audio player in notifications of Android for a web game (not an app)?

    I tried this but with no luck:

    On suspended > Stop "tag"

  • If you choose templates, they definitely need to be in the same project, on another layout.

    A template can consist of several objects combined into a hierarchy. So you will have to create two templates for each room. One template with a tilemap, and a second template with a hierarchy containing all other objects from that room - enemies, loot etc.

    Thanks for the direction! Your post is helpful as always :)

  • So there is a condition at 105 that enemy has LOS in that event which you've decided to cut off in the screenshot?

    No, all the events for this effect is under [if weapon = "shock"], event 105 is for another weapon. However I already solved the problem by creating these two beams [on "enemy spawn" function] and then set it invisible with width zero. Then when the enemy fires, I take further action.

    Thank you guys for your answers anyway!😄

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • ...you want it to create just 2 beams only. The question is when?..

    So, I have a few enemies on layout. They can shoot when they see the player (instance boolean "is shooting"), so when some of the enemies "is shooting" and their weapon is "shock" - they spawn two beams (each of enemy who shoot with "shock").