Bl4ckSh33p's Forum Posts

  • Hi. I tried to add the date addon but it does not show up in C3 with C3 runtime. Is it possible to update the addon to work in the new engine with a few minor changes or does this require a rewrite? :(

  • Hi. I installed the Date addon but I cant add it to my projects to use it. Any idea why or how to fix this?

  • I tried with and without and just removed http but it does not show up in preview. :(

    from the help file: If you want AJAX requests to your server to work from any domain, or in preview, you can configure it to send the following HTTP header:

    Access-Control-Allow-Origin: *

    I added this but it does not work in preview.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Thank you very much! totally forgot this, did not use ajax for some time. Exported NW.js worked, hope its the same for Win10 UWP and Android.

    but I just got my included ssl certificate and should be able to use SSL in the future for my apps. :)

  • no, its http. does c3 require https?

    I tried loading the file from the folder of my old c2 project and it shows error. so it seems to be a c3 issue and not server related.

  • Hi. My old project loads a text to display news and works fine but my new project does not load the file from my server. Is it possible to get a more detailed error message for Ajax actions? On error triggers but what's the error?

    I checked that the server has the proper.htaccess with allow origin * like for my old c2 project. I uploaded it as utf8 and ANSI file and checked chmod etc but I can't figure out why it does not load the textfile (just 1 line of text). Any ideas? 🤔 It's hosted on a 1&1 Server.

  • Hi. It happened in my desktop version but even in chrome its very tiny and CTRL+0 does not fix it. Only the layout in the center is zoomed but the panels around are extremely tiny.

    after deleting browser cache and all hosted app data it works again. But is it possible to fix this without clearing everything?

  • I dont get a crash or error when I use GetLeaderboard. And I did not add other packages and just followed the tutorial to add the Nuget pack and assign it to the store.

    Did you check if the Xbox Live Plugin has the right values assigned in Construct? The game IDs you get from the Xbox Live service page in Dev Center.

  • Exporting the animations to separate spritesheets and importing them to your sprite as animations should work? But its extra work you need to do.

    I want to use many of the Spriter animations and some of the sprites I bought in my next project. Any news about the Plugin?

  • Any news about Spriter plugin for C3?

  • rayray Hi. I had problems submitting scores a few weeks ago but it seems it was fixed by Microsoft. Getting Leaderboars, submitting scores and getting profile info works fine for me. I use Construct 3 and the latest Visual Studio Community with the Win10 UWP SDK.

    Did you install the Microsoft.Xbox.Live.SDK.WinRT.UWP package and assign it to the store entry?

    https://www.scirra.com/tutorials/9540/u ... n-uwp-apps

    I have crashes on startup quite often but restarting the game 1-2 times usually is enough to fix it and the game did only crash when the construct loading icon with the progress bar is shown.

  • rayray No. Seems you need to close the game. Sign in with another profile and then start the game again.

    Using the profile selection most other games use would be nice. But I dont know if this is possible with a plugin update.

  • Hi! Did anyone already use the Xbox Live Leaderboards to make custom boards with multiple pages?

    It was very easy to add the Top10 highscores with GetLeaderboards and limit it to 10.

    But will it download all entries if I use the default value of 0 for number of entries for GetLeaderboard? Or do I still need to use a number like 10 (on screen at once) and use the LeaderboardTotalRows to determine the total amount of entries? Would be nice to see how you solved this since there are no examples how to use the plugin.

    Right now I have 10 entries on a page and want to switch pages with LB/RB. Do I need multiple GetLeaderboard actions for every page and use "Skip to rank" for each page?

    I also use the Flush action on start of layout on the highscore layout and then just "Wait 6 sec" before getting leaderboard data to get the latest numbers.

    Any better solutions for this? Or wait more/less?

  • Hi. I'm still trying to find the option in Visual Studio to keep local storage (and savegames?) when updating a uwp (win10/xbox) game.

    Did anyone find this already and can tell me where I can set it please?

  • Hi. The help states its not available immediately after sign in but you never know if it takes 1 or 10 seconds if internet is slow or anything. Is it possible to add a trigger for "Statistics Available" (or updated)? I use it to display the current highscore of a player on the menu layout and before submitting a highscore an event checks if NewHighscore > GetStatistic(Highscore) to only submit bigger values (does overwrite if lower?). But if the GetStatistic is not ready yet it could return nothing (0 for number?) and submit a lower score and maybe overwrite your higher score.