Francisco Dias's Forum Posts

  • Thank U

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I used the code:

    try

    {

    //something

    }

    catch (exception &e)

    {

    //catch action

    }

    is it possible to send the catch information to the user while in debu mode? other then saying that the error was in plugin XYZ I wanted it to say for example: "Bad use of function K, no valid file was selected".. thank you in advance

  • I know the OR operator and I' used it ..but I used the double "|" like this:

    OF_NOCOMMONDEBUG || OF_NODRAW

    and it didn't work... and the variables I'm trying to define are to be global and used on all actions.

    thas was the only problem! And I've declared the variable. Thank you for supporting and motivating new people..

  • its the "myValue" that is undeclared!! I don't know why I've declared the action in main.h and gave it an entry in ACE Table.cpp and defined it in Actions.cpp but when I used the variable myValue it sais it is undeclared (the variable, I mean)!

  • One more question! I'm defining my at "Your edittime extension data goes here" for example:

    int myValue;

    and I want to use it in an action, but it says it is undeclared!! What should I do??

  • Thank you a lot.. I'm really sorry for posting so many questions lately. But I'm really trying to learn this.. cus I want to make great contributes to the foruns!

  • Hi there (AGAIN), to all!

    I wanted to know how can I combine IDE flags?!

  • Thank u! I think I got it

  • I'm trying to combine SQLite3 with SDK to create a database managing plugin!

    I'm using the SQLite.org (source) and a C++ wrapper.. but when compiling I get an "unresolved external" error!!

    the wrapper I'm using is SQLwxx, but this happens with all wrappers so I think it has nothing to do with the wrapper and it is a problem on the SDK configuration!! Thank you in advance

  • Hi everyone! I'm introducing myself to creating plugins, and I wanted to know how data values are returned to construct:

    • Are strings returned as std::string or const char[]??
    • How does the same apply to ints and floats, are they returned as normal floats/ints or should they be converted to something else?

    thank u all in advance,

    Francisco Dias (xD)

  • Ohh I finally got it to compile! but now I'm following the tutorial and the plugin doesn't show up in Construct.

  • I get an error compiling "can't include DXsnips.h no sush file or directory".. :/ some ideia?

  • I want to start myself to create some plugins, I learn very fast

    Thank you all in advance and keep up good work!

  • When compiling Construct builds a unique EXE. I twould be great to be able to create diferent kind os datastoring files... for example:

    Graphics.data (would contain all the pictures and graphics)

    Audio.data (sounds and music)

    Game.data (all the rest)

    the exe file would be only a linking file... for instance.

    ... this would turn the exe file smaller and the project would also be more organized. Maybe it is nothing important... but load times would be shorter because... only the needed graphics would be loaded from file, and RAM would be spared (or so I think)

    (this was also anonther way to protect the game data... I'm seeing game where the sounds stay in a folder... and can be easly obtained)

  • Thnks I think I got it! and sorry