• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

JavaScript exported with HTML5 Game

J. Heyne

Member
Hi all,
Forgive me if this post is in the wrong section. I was wondering if anyone has been able to take the exported .js file from an html5 game in game maker and edit things like the main function, etc....
I took the code and ran it though a code beautifier, but really could make a lot of sense of it. :bash:
Most of the functions labeled like this function _hf() {
}
I'm really just trying to identify the main function of my game for tinkering around with it in the javascript.
Thanks in advance for any insight into this. ;)
J.

(i can upload the code if necessary)
 

Roa

Member
sounds like a fun passtime.

Should be able to find where methods are defined and work it from there, ussualy in the main method and if you understand basic rules, you can follow it pretty thuroughly throughout. I'm no java script expert though.
 

True Valhalla

Full-Time Developer
GMC Elder
Run the game in debug mode, then find the temporary directory which the game is stored in. This version of the game will be unobfuscated.
 
Top