Gdevelop events in plain Text

Hi! i want to know if there is a way to see or extract the code of my game in plain text? i need to print it (part of it) for legal issues.

Thank you in advance :slight_smile:

Gdevelop don’t do this.
Events sentence are generated with the parameters.
It’s possible with a hack but far to be perfect, forget this you will loose more time to try than take screenshots of your events.

On another note, is there a way to extract the event in gdjs code.

Either.
Event are defined in multiple file like this one.

Other events are define at other places. All is generated.
If you wish extract the events your better solution is to open developper debugger tools, go to eventsheet, add all events you wish extract, get the HTML code of the page, remove all html tag.
Convert it in plain text, and format with you hand the text because all is on one line and whitespace/breakline doen’t exist.

Yeah it’s not perfect, a bit long to do, and you need format the data by hand.
In other terms print screen is more fast :slight_smile:
Or print screen with a OCR maybe ?

Thank you for your reply, i think i will take the screenshots :slight_smile: