Taurian's Forum Posts

  • <img src="http://i47.tinypic.com/2sao4nk.jpg" border="0" />

    Anyone have any tips on how to keep objects bounded on the water and not on land?

    Thanks,

    -T

  • This is exactly what I was looking for:

    http://www.scirra.com/forum/topic48197_post331906.html#331906

  • This is just what I was needing. Amazing!

  • By select I mean mouse over each roster item and click. I'm not sure you can do that in an Array, Destitute.

    And I'm not sure you can do that with content in a text box, even if each name is separated by a "NewLine" command.

  • Anyone have any tips on how to create a list of items like a Chat Room roster and be able to "Select" each roster item? So you can do something with it later? Maybe an event where you can append a roster item.

    Just imagine a roster, and you can mouse over each user. Like in the C2 IRC Chat Room, but in Construct 2.

    Maybe this is possible somehow with the textbox.

  • This is great stuff Juantar.

    Would you be willing to show how to incorporate "Rooms" with SocketIO.

    See here(SocketIO Readme):

    ### Rooms

    Sometimes you want to put certain sockets in the same room, so that it's easy to broadcast to all of them together.

    Think of this as built-in channels for sockets. Sockets `join` and `leave` rooms in each socket.

    #### Server side

    js

    var io = require('socket.io').listen(80);

    io.sockets.on('connection', function (socket) {

    socket.join('justin bieber fans');

    socket.broadcast.to('justin bieber fans').emit('new fan');

    io.sockets.in('rammstein fans').emit('new non-fan');

    });

  • Hello!

    My name is Edward, I'm the lead developer with AmbientStream.com. Have some free time over the next 3 months to try and hone my Game Development skills.

    Know:

    C#

    PHP

    AS3

    Javascript

    Blender

    Photoshop

    and tons of others.

    Was able to naturally create a quick prototype of the game I wanted to make in just a few days. It isn't pretty now, but it's already a lot of fun and I hope to share it with the C2 community.

    Thanks!

    -Ed

  • I'm glad someone can see the benefit. I'll see if I can drum up some support on the other end(Photon) so that Scirra staff aren't alone trying to figure this out.

    But if you have any knowledge of Javascript, their JavaSDK and the Construct 2 SDK might be all that's needed.

    Easy Multiplayer = No Brainer

  • This would be a great addon. The ability to communicate with Exit Games: Photon Cloud Service.

    http://ExitGames.com

    They have a Photon Javascript SDK.

    https://exitgames.com/Download/Photon

    I'm just not quite sure yet how to make the two communicate.

  • We're actually currently working on custom preloaders for the next beta release. Hopefully won't be long!

    Awesome, I was looking for this the other day.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Awesome thanks!

  • if you have more than one sprite then you just need a For Each loop

    for each sprite

    if sprite is overlapping radar --> set sprite to visible

    else --> set sprite to invisible

    that way it'll check each individual sprite for the collision overlap, instead of checking to see if they're all overlapping at the same time

    hope this helps

    This worked, I did a for each loop for the sprite, and not the Radar.

    Complex Problems, simple solution, thanks.

  • Here's a quick example which I think does what you want:

    http://dl.dropbox.com/u/47015043/construct2/radar-example.capx

    The example changes opacity rather than visible/invisible, just so it's easier to see what's going on. I've also pinned each radar instance to a sentry object, but you could just as easily use the radar without those.

    I can't open as I have constuct version 90 and not 92. When I try to download the latest version of construct, it appears to be 90. Is this correct?

  • Well I have two instances of the same object.

    When one leaves overlap of the Radar circle, it won't disappear unless the other one does too.

    Any tips on how to get around this?

  • Hello,

    I'm trying to make a Radar solution. The basic premise is a Circle Sprite.

    When an Object is Overlapping the Radar Sprite, the Object Appears. Easy! Already works.

    But when the Object leaves the Radar, it should disappear. (Can't figure out)

    Does anyone have any tips? I tried simply inverting the event, but it doesn't work.

    Thanks,