Hello, I have a problem with your 4.0 version of the engine. The FMOD is not working correctly, it gives me the following error when the game plays a sound inside a room where the player is.
___________________________________________
ERROR in
action number 1
of Step Event
for object player:
In script playerJump:
Illegal argument count calling script "FMODSoundPlay".
Script requires 2 arguments, 1 have been supplied.
Here pictures:
https://imgur.com/tSFZ1bN,buWUjYF,wbIAyLh,WYynq39
Running on Windows 7.
Pirate version of GM8.1
What do I do? Thanks.
Try going to Resources > Global Game Setting and under the "Errors" tab check "Treat uninitialized variables as 0".
Or a better way to fix it would be to do it manually by going into the code and changing:
FMODSoundPlay(global.sndPlayerJump);
to
FMODSoundPlay(global.sndPlayerJump,0,0);
There should also be one for double jump, shoot and death in the playerJump, playerShoot and killPlayer scripts.
Sorry about that, this was definitely my bad.
Good to see you getting back into making games, good luck.