Urled's Forum Posts

  • Is this the new version of that xml reader?

  • I love the look of the title screen.

  • I got the same chrash when I used Z elevation on several objects at once. F.e I would set the blood particles Z elevation to their speed, and the game would chrash after a while.

    The only thing I could suggest for a re-write would be loading weapon data from external files. It just makes making weapons so much easier and fun.

    Also, shop's where you purchas weapons instead of just pressing E over a big icon on the floor. Why would you have to buy a weapon randomly lying on the floor? Or, you could do like they did in nethack, and have the avaliable items for sale lie on the floor inside the shop.

    happypenguin.org/images/vultures2shop.png

    Throwing some 3d or isometric elements into the mix would be sweet

  • To trigger sounds in a specific position. Create a sprite, then add a string variable to it called soundpath with the value f.e "scream.ogg"

    as you collide with the object, you autoplay appath&"Data\Sfx\"&soundpathvar at the position of the object. THat way, you can have multiple objects and give them different variables.

    If you want the scream to sound like it's travelling away from the player (if i

    understand you correctly?) you can lerp the position of the sound.

    THere is an expression called get last autoplayed audio and it is usefull for this

  • Hi! I tried it today and it won't let me play for more than about 5-6 seconds depending on how fast I go about shooting zombies, however milestone 6 and less works perfectly (i haven't gotten around to opening the milestones above 6 yet, as they have the path plugin which I lack).

    I have no idea what causes the bug, but hitting zombies with bullets appears to be the trigger.

    And, yeah. I use vista... That might be the problem.

  • Nah, but what certain events do that?WHat?! THe events used to make a game, can also be used to make a cutscene.

  • The same way you program your game.

    What do you expect? Do you want construct to do everything for you?

  • is right, it's not just on-screen objects that are in memory. The entire project is in memory, even off-screen images, and even images on different layouts.Why don't you load the images on diffrent layouts when the layout containing tose images is loaded?

    It seems like a waste of memory to me, but what do I know.

  • OK, but it doesn't work fine for me. This happened when i upgraded from 1.2 (i think?) to the latest version. It is a god damn pain in the ass.

    I've found away around it, though, by setting a global or object variable to one and then detecting if it is one and then adding the keypress event.

  • DO you understand how the tokenizer works?

    f.e a command could be

    string , token , string etc

    the token (any character of choice) will separate a string.

    So by loading the raw string you can extract multiple strings from it

    f.e

    hello#cat#monkey#

    if the token is # then the following strings can be extracted

    hello, cat and monkey

    hello is 1, cat 2 and monkey 3

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Damn it, I didn't have the required plugins to open the file. I'll try to download the executable now, and give you a review tomorrow (if it works)! <img src="smileys/smiley4.gif" border="0" align="middle" />

    OH, and thanks. Glad you appreciate it.

  • if jumping and if jumpButton is not down

    set vectory to vectory + additional fall speed

    Wouldn't that work?

  • I found a terrible bug, if using a keypress and an overlap in the same event, only the overlap counts

    like if

    if player is overlaping box

    and ENter is pressed

    Alos, textboxes must be added in size, so that if you resize the text box to the text size, and the chracter size is 15, you must add another 15 to the end as paddign, or it linebreaks or something

  • I'll give this a try tonight! I love zombie games.

  • Can you get a color at a specific pixel like in mmf?