Je Fawk's Forum Posts

  • gumshoe2029 i really hope those are not your real DB credentials

  • It's easy, first display that top 10 select. Under it add another textbox or whatever C2 object you use to display the first 10, so add one under it (i guess it's a textbox).

    Make it smaller and assign the following select to it

    SELECT

    *

    FROM scores

    where Name = <C2 variable holding his nickname>

    This will display one line with the player's nickname, and since you put the textbox under it, it will show as separate.

    It is possible to make a select to display everything in the same C2 object but i'm in a bit of a hurry right now. I'll see if I can make that work as well a bit later.

  • FlagmanJeremy your game has as much in common with C2 as my tree with politics.

  • Gigatron could you upload the effect you fixed there please? +internets for you man!

  • There's a sphere map fx from Gigatron that can rotate the texture around. It's in the "[EFFECT]- webglSphere+Glsl version " thread.

  • Thanks for sharing the workaround, should be a sticky or something god dammit.

  • I'm mostly asking for other's thoughts on how one could create a modable game (with a system similar to Skyrim for example).

    I have a rough idea of what could work as I've explained above and I'm looking forward for other people's implementation suggestions

  • So I've been working with C2 for a few years now, and I've come to the point where I want to make some really interesting stuff that's based a lot on mods that the community around my game would make.

    The way I see it, since it's for PC only, I would go around in the game's folder (I'm already making a saved folder with a save file in the User's folder/Saved Games) so I'd go around there and look for other folders inside my game's folder. Then I'd go through them and try to read the files in it.

    Now comes the tricky part, since those files, as much as I can think of, would only alter things in a minor way, and I'd have to pre-implement that, like, if my there's a file named Background_Level_1.jpg in a folder there, my game would load that image as a background for the level 1.

    I could go so far as to implement a primitive syntax, so if a file named say... Spell_01_Code would have written inside it something like "spell 01 damage = 100", the game would increase the damage of Spell 01 to 100.

    What are your thoughts on this?

  • Update: it seems to happen mostly when the window is fully covered by some other full screen gpu intensive application.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I am getting this in the console

  • Greetings.

    Before I consider posting it as a bug I would like some feedback about this problem if it occurs to others. My game sometimes turns black, when previewed with NWjs if I alt tab out of it usually.

    Has this happened to people before?

  • I would guess you need to make a global variable IsPlayerTurn = -1. This would mean it's time for the cinematic to play.

    At the start of layout if the IsPlayerTurn = - 1 then start a function where you disable the movement of the sprite, and assign your own.

    After each attack set the IsPlayerTurn either to 0 or to 1. 0 for the boss's turn for example, 1 for the player's.

  • Either compare the Y or make tiled background, spread it under your layout and make a on collision event to destroy the sprite

  • Nice! Thanks!!!

  • Could you add an "if string is empty then trigger the Load fail" please?