GeorgeZaharia's Forum Posts

  • merry christmas everyone, and thanks for the convertor and the good work ... ... 2 years have passed :O unbelievable i remember when this topic was made! how time passes by sorry for zombifying it!

  • i gave it a +3 cause i think it might help with collisions maybe in future, however... the current collision system construct has in C3 atleast works pretty well ... and as i commented on the voting... never actually seen a game made in Construct that is so complex that needs a raycasting system ... but i know this been a old problem from many peoples view, so im guessing +3 till it happens ^_^.

  • it might be that u are using the free version, or it might be that u are using some custom plugins? which are not available in C3. not really sure.

    try with another project that doesn't have any custom plugins and no more than 50 or 30 events.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • you don't need to create a keyfile for each game you make. the keyfile is sort of a self signature for the developer to tell the store, you are the owner (like a ssl certificate for websites). you can re-use the same keyfile on multiple android games. make sure though you don't lose the password and id of it... in case someone claims your game. and don't give that information to nobody else.

  • - I did this, and the game it works. The only problem is that the % load of the game stay to 0 until the game is loaded.

    the % load of game sits at 0 till game loads ... is actually the facebook sdk not loading holding your game loading till it solves its response, you might off not implemented the facebook instant properly, i worked around that issue by manually opening the index.html file and puttin the <import facebook_instant.sdk> thing right in the header(you can find the code for importing the sdk in the facebook help section). it is not your game from my experience so far.

    its normal. don't worry about it. as long as it loads eventually.

  • in order to bypass the ssl thing just type your adress without http in front... like

  • there is a spritefont creator somewhere on the forum ... i think C2 section, you can make your own bitmap font with it. get the size and all.

    not sure if is this one sprite font generator v3

  • you don't need a server to integrate paypal purchases/donations, you need a paypal button that you can setup in the paypal, then use browser object or ajax to get the response the user bought or paid for something then save that data on cloud somewhere ... excell from google is a good alternative if you can't get a free hosting somewhere to keep a database online.

    try look at Construct 2 tutorial section for more information on how ajax or paypal setup works with Construct.

    i remember on construct 2 there was a paypal plugin not sure if is available for C3 though.

  • Hi, when i try to add the admob banner ad at the bottom of the game, the banner covers the game control buttons Any help please!

    put banner at the top? or change from static banner to a full screen advert once in a while when player dies? move the controls? its a matter of design.

  • Yeah, but the game is for more than 2 players, so if there are 20 players focusing on killing 1 I wont know who killed that guy. That is what I was looking for. Btw, thanks! Ill check it out.

    take a look at the multiplayer example construct has it is a battle royal type of multiplayer game, the host is a priority, and the guest code applies to each other player individually.

  • hey freddy, c3 yea doesn't have the beginner area yet, but you can find more tutorials examples and stuff on youtube, and even C2 beginner area, C2 and C3 are very similar, almost identical with a few changes that are making them somewhat very different, but those changes are not about how the logic of the game creation is more of features like official plugins different platform exporting and so on.

    so if u find a tutorial for C2 it should work for C3 as well...

    however if u want C3 specific stuff u can find some on the FAQ area C3 dissecting tutorials and examples should bring you up to speed, also make sure you keep an eye on the learn section on top of website you can find the manual the official youtube channel and other cool stuff there that helps your learning get up to speed.

    Welcome to the construct community ^_^!

  • outside custom plugins nothing i can think off.

    all custom plugins u use in C2 are not ported to C3 unofficial ones, even some official ones are probably subject to change.

    so u might want to check for those before converting ur project. to C3. it won't damage ur original file but make a copy of it in any case.

  • i think this is what you meant, by centering both objects... this was a bit tricky... never had to align them i always used topleft screen for stuff and not middle. i think you will find them pretty close to center....

    anyway this was ~60 minutes of fun ^_^ hope it fixes your issue, and you understand something from it :D

    download coin+text-center

    Edited: this was not tested on retina x2 or ios devices... but my browser pc... so any desktop or android should work...

  • Edited 4: i cant really fix your file unless i know what u mean by showing < howmanytoshow, the problem is obviously there. if u can upload that portion of code in a file somewhere i can fix it for u.

  • made u a quick example

    hope it still helps you

    download item_loop_creation_random

    is probably not the best way, but is somewhat the easier way, best way to do this would be working with arrays and dictionary probably if is for inventory purposes. if not the example above should do the trick.