Nevesbr's Forum Posts

  • You can use the system expression tokenat(src, index, separator).

    Thanks can you do a example?

    Src ?

    Index is the character count?

    Separador ir the Second count value ?

    I no understand the use.

  • hey guys i need help again this time i need to read a part of a textbox. I can't use block separation with globals or anything like that. As I'm using the multiplayer object my intention is to read the room and read the name of the room but this information goes in one wave just for example... if a textbox has

    " layout 2 / room 1 - europe"

    the player only has to read the layout so I would only have to read a part of that block... and in another case on the lobby screen a textbox would read only the name of the room but the string contained everything (layout 2 / room 1 - europe) summary: I need to read a part of a large text that may have the sum of information.

    hero1 - maxhp40 - maxmp80 - power30 - house1 - layout3 - age40 ...

  • Hello guys.

    Could you test my game and provide your feedback? I explored various multiplayer object mechanics and the game got interesting.

    construct.net/en/free-online-games/multi-tank-battle-online-50983/play

  • Is the same as an "Every Tick" event.

    I like to leave them empty so I can identify them quickly while looking through my events.

    Ok, it's because I wonder if empty doesn't tire the system more being a faster reading than every tick,

  • Hello everyone, what's the difference between leaving a condition box empty or using every tick? What is better?

  • Hey community, there is a way to get around this problem of the shot bursting early on the peer...

    This appears to be because the host destroyed the bullet and it had not landed on the peer's screen.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Good morning masters, how do I convert a text into keycodes for example...

    " Hello World " > show in a box > 7269767679 8779827668

    And if possible decode too...

    7269767679 8779827668 > "Hello World"

    How to do the website: pt.rakko.tools/tools/76

    IN EVENTS MODE PLS

  • Major Update in 15/03/2023.

    v1.0.7.7

    Toch changed to consumes gas.

    More names en and pt added.

  • have webp support on Arcade? I dont can upload a game with this selection active.

  • Genius Thanks

  • Basically I want to display the contents of a list in a text object.

    I tried that and it worked but I need something more automatic...

    Set text: list.textAt(0) &newline& list.textAt(1) &newline& list.textAt(2) &newline

    How can I get something more automatic because there will be more than 200 values. Thanks

  • Thanks a lot

    Are messages lighter than bits?

    I see that you send messages don't send the data through the original path of the realtime tutorial. I found it very interesting.

  • Thank you, your explanation was very well done, but it is not very easy to understand these commands.

    When I open the debug I see the variable Keysvar = 1 Nothing different from a normal variable that could be...

    Who knows, maybe one day we'll see something like...

    PEER:

    [On client update]

    On space pressed... > Multiplayer.Sendcomand("keySpace")

    HOST:

    On command received from peer("keySpace")

    Player.peerid≠MyID

    player : JUMP

  • Hello community...

    I already have a multiplayer game released: construct.net/en/free-online-games/nevess-multiplayer-pixel-42650/play

    I'm studying ways to save bandwidth as much as possible, and one thing I still don't understand is the SET and GET bit.

    It's no use me reading about them and how to use them I don't understand is how to face the idea that they are not in the multiplayer object for example:

    player.peerid("1234")

    Multiplayer.getbit(0,1) = = Jump

    Why do we write and read in system expressions and not in multiplayer... Why then don't we use variables ??

    Instead of set bit put a boolean ? I am not understanding this.