Whiteclaws's Forum Posts

  • But they might have to install the web DirectX contents coming with the NW.js installer if I know right.

    Most games demand that.

    I would assume that a Steam gamer userbase would know to keep their graphics drivers updated

  • Interesting.

    There are many pedometers algorithms out there, they basically take in the accelerometer values, find any patterns and add steps

    I would give it a jab although I don't have access to ny PC right now, if this question doesn't get answered tommorow, I'll give it a go.

    Edit: I did some digging around, it seems that implementing a pedometet yourself would be a huge headache, you'd need data, so that means plotting graphs of accelerometer values, finding a pattern for steps in multiple conditions and designing an algorithm around that data pattern. Waste of time. The best you can do is basically write a plugin around a popular js pedometer library and hope for the best

  • Oh, you can't bind port 80 and 443 on public cloud servers, most of them have proxies that redirect http and https content to your application port, basically instead of 182.61.38.18:80, you gotta bind the port that is provided by your webservice (8080 maybe), (edit it in sigserv.js) so that you bind to 182.61.38.18:8080

  • Or you could just set that new variable to:

    Supercoins = floor(coins/1000000)

  • You use SSL, as in, depending on your application, it would simply be adding https:// at the beginning of the url,

    Tell me more about your infrastructure. Where do yu host your PHP files? Heroku? Openshift? Most of the Paas' already have proxies with SSL certificstes and reroute the traffic from port 443 to 8080 (or other) so you don't need to do any SSL configuration other than maybe security via basic http headers.

    Secure login systems are a complex subject, I wouldn't recommend them for an intermediate/beginner.

  • Um Hello,

    Idk where i should've put this but I'm sending an AJAX request to my website (goapp-wbackend.rhcloud.com), it's running Go 1.6.3 on the Apache Server with "Content-Security-Policy": "default-src https://goapp-wbackend.rhcloud.com", and I'm trying a GET or POST request on the website, now, it works well in localhost mode, but when I export via Cordovia/IntelXDK, and I build or debug, it gives me an AJAX 404. Plain that. You can test the website and I'll send you a HelloWorld! (as I said, it works well in localhost:8080)

    Other Headers: "Access-Control-Allow-Origin":"*"

    My Whitelist on Intel XDK:

    i've been hitting my head on the wall for a while now, maybe Ashley can help,

    although maybe it's because I need to update JQuery.

    EDIT: If anybody got it working, Please post your stuff, I'd greatly appreciate it.

  • No errors on build, no warnings, nothing?

    We can't help you man, if the problem is this vague

    I'd assume that if there was a general bug in the linux export, Ashley would know.

  • newt

    Beh, as long as no one finds out

  • I believe you would have to register as an adult and pay a fee, so yes, you'd have to let your parent register for you

    https://www.scirra.com/blog/136/constru ... -available

  • More like multiple dialogs such as "Give me the item/Hello, who are you?/What was that explosion?" For NPC Dialogs and "Yes#No#What Item?/Harry the wizard#It's a secret#MrRodgers/An explosion#What?#Tnt"

    Where to get the NPC dialogs and all responses you use index X and separator /; but if you wanted a response, you'd have to use index Y and separator # over the responses you just got.

    Edit: The cool thing is that you are not blocked by the array being rectangular for example you could have the first dialog have 2 responses and the second 52 and it would be ok, whereas in a 2d array you'd have one of the columns with 50 free spaces or if you had a 1D you'd have to save the index or go thru the array to find the token to be able to access second dialog (which tokenat already does for you)

  • The index is like that of an array 0/1/2/3 etc assuming your separator is /, it could also be just blank "", which would give you the letter at a number, you can even make a nested array using different separators, its very useful, also, if you want to convert the text to number, you can either do int() or float()

  • tokenat() is useful if you don't want to create a JSON or manually populate an array, with a text variable, it basically acts like the At command of a one-dimensional array.

    I use it a lot, but I don't know if performance gets affected by it.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Well then, you have an idea, give it a shot and if it doesn't work, we'll be glad to help you,

    Also, I recommend Rojohound's excellent canvas plugin for anything involving paint or drawing

  • Well, this was fun.

    I made a TicTacToe game in nine events

    Here you go, have a look!

    Sorry about crappy host, I don't have a dropbox.

  • You could use the func object, or just place your events at the end of the event sheet; C2 reads events from top to bottom so events on every tick will be done in order from top to bottom