WackyToaster's Forum Posts

  • but most of the activity is bad people growing a community discord and most people go there because the bad people hoard any projects they can get their hands on and distribute it to the discord and people overlook the bad evil things for the free loot

    You may want to find them, get what you want/need and use them and then scram as fast as possible but make sure to think about your mental health and stress levels first and take care of yourself okay?

    Really no need to exaggerate this much, none of them are bad or evil people. Some can be quite a bit stuck-up but that´s the worst I´ve seen. Your mental health should not be affected by that ¯\_(ツ)_/¯ Or do I seem like such an evil person to you?

    I agree otherwise, scirra is doing good things. I can´t wait for them to "finish" the new runtime because then it means they can focus on new features and whatnot. Defenitely great times ahead!

  • I think the "Load from URL" is not instance based. You can create a sprite with several frames (one for each image you want to laod) and then load them into each frame. An instance version of this would be awesome though. Ashley

    wackytoaster.at/parachute/instancesLoadFromURL.c3p

    This may not be too useful though depending on what exactly you need to accomplish.

  • Where exactly is the series of numbers stored initially?

    Anyway, assuming you have them inside a variable: You can use "set Text" and put in the name of the variable in the field (without "")

    Automatically seperating them into a series of variables, probably not since you cannot define variables during the runtime. You could use a dictionary though instead of variables and use tokenat to write the "variables" into the dictionary. And access them again via "dictionary.Get('varname')"

    Here´s an example

    wackytoaster.at/parachute/numbers.c3p

  • Ah, totally overlooked that! Didn´t expect the first node to be -1 actually :)

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Push all available cards into an array, then pick a random one out of it and delete that row from the array so it cannot be picked again.

  • I did that a while ago, since you can access the pathfinding nodes (= corners/turnpoints) you can use a tiled background to draw lines from node to node. I´ve done a slight modification to the pathfinding example project.

    wackytoaster.at/parachute/pathfindingShowPath.c3p

  • In theory you can make a simple analytic thingy with a little bit of very simple sql/php using AJAX. Basically you can use "On start of Layout" and POST a small bit of data to the server, that then counts up a value by 1 and you know how often a certain layout is visited. You can basically add this to any trigger event (buttons, game won/lost,...) and count all the individual actions.

  • The easiest is probably this, just make sure you have "set angle" enabled on the bullet behavior.

  • Iirc you can setup the button within the browser object. It's a bit hidden there...

  • On that note, a useful tool right now for everyone searching the forums for links and such. The wayback machine, like google cache, except you can choose the date of the snapshot. Interesting to see how the website looked back in 2008, lol.

    archive.org/web

  • lennaert you seem triggered, take a walk...

  • I think this one is already known, right?

    Anyway, an "add image to post" would be awesome after uploading an image.

    WebWiz -> PHPBB -> Custom

    Custom? But why? Don't get me wrong, it's cool to do your custom stuff. I often do that myself, but sometimes it seems to be a case of "reinventing the wheel". Often you will have to solve problems that are already solved in established products.

  • I can agree with you, construct is very nice to pick up. But...

    all you have to do is include the layout layer and walla

    It´s voilà... you really made me laugh >:D

    en.wiktionary.org/wiki/voil%C3%A0

  • You call the function after you requested the file via AJAX, but AJAX might take a moment to complete. So you call the function before the arrays are loaded. Put the function fall below "Load from JSON string" inside the On "INV" completed.

  • Well, here´s my attempt. You do have to fake some stuff, and that usually comes with tradeoffs. So if you want a globe just like google earth, you won´t get around using something like threejs. If you are ok with the tradeoffs, you can fake it. Now I don´t know what you intend to create, but if it´s not crucial, you should consider changing it to something that works fine in 2D and doesn´t require too much faking or third party libraries, it will safe you a lot of headaches.

    wackytoaster.at/parachute/globe.c3p