DuckfaceNinja's Forum Posts

  • Line52:

    Set value at currentlevel to max(2+star, int(levels.at(currentlevel)))

    When you store in webstorage values will be converted into string, so you have to convert them back to number using int() to load it into number variables.

  • 5) Before the price it is 99$ and now is 129$ it's me or the bug and why ?

    You're probably seeing different currency, there 3 main which are GBP USD and EURO. Just to say that the current sale is the best so far, you don't want to miss this for sure.

  • This certainly very unique job application... I bet this kind of presentation will get a lot of attention in creative-driven companies... The ads department surely need someone like you..

  • I don't know how to answer this but since the day I came across C2, I've been asking myself entire time, why am I not making games before...

    This is actually the first time I'm having fun and enjoying stressful thinking.

    I guess different people, different stories.

  • Try changing you Line10 action sequence. The second action never trigger because you went to another layout before it triggers. You don't have to redo your project, you can serve the tutorial as a working example.

  • If you want to multi develop, divide the project up into workable sections and have the team focus on those sections, then put those sections together when needed.

    *cough.. ..modularity... ...*cough...

    Edit: Ashley ninjae'd the ninja...

  • Maybe this?

  • 1. You can limit max peer number when host create the room.

    2. Look for tic-tac-toe multiplayer tutorial, it's what you're looking for.

  • I think you are unaware that the arcade is being reworked by Tom. Don't expect it's going to be fixed soon, you're getting a "new" one anyway.

  • Store APK? I can't help it but I'm suspicious of what your software actually does. Mind providing elaborate details?

  • How long have you been working to reach that 6000 events? Must be a really big game... MMO?

  • *Pat on your shoulder. A lot of people have been through that lol.

    I think you've reach the point which you want/need to make the manual as your "go to first" dictionary

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I've seen similar question before and I think the answer is you can't because it's a webgl thing, thus it is not accessible through system expression. I can't find the thread but if I'm not mistaken, there's a workaround by assigning the effect parameter with instance variable or normal variable. This way, you can get the effect value through variable.

    I'm probably wrong on the webgl thing, probably Ashley himself can explain why it is not accessible.

    Btw, it is interesting on how do you intend to use it in mathematical expression, can you share what are you trying to achieve?

  • This can be done with one of the most useful array expression combo:

    Array.at(Array.IndexOf("30"), 4)

    However, indexOf only works to search value in the 0th column only. You have to be careful and consistent in using array when storing numbers or strings.

  • Im still getting the problem, even though Nlaakald's capx helped a bit the problem is still there I only see Text as the result.

    You're probably having a NaN loaded into number variable.

    Anything you store in webstorage is going to be a string, when you load it back, if the localkey supposed to be numerical, you have to convert it using int(webstorage.localvalue("XXX")).