Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

Unfortunately I'm low on ideas as I simply cannot reproduce the issue on my own end without changing the code intentionally to do so. All I can really suggest is that you place a breakpoint somewhere inside the  DoTurn() function in oBattle's create event, just after the point where it has decided that it's a player turn (like the if (_unit.enemy == false) line). and run debug mode. Then when you hit this breakpoint use the Step Into Function Call button to progress one line at a time until the error occurs which might give you more clues. As your error as posted is struggling to isolate the problem line.

I got it working, the problem was that it was running in the browser. Thank you for responding though.

Oh interesting, while I haven't tried or designed it for the browser specifically I'll try and take a look at that. Thanks for letting me know!

(1 edit)

Hello again! sorry to bother you, but I believe your bug may have been related to this issue that was reported recently. Was HTML5 the platform where you were hitting this bug? If so and you get a spare moment would you be able to either get the latest files or implement the fix mentioned in that post and let me know if you still get issues in the browser? 

-S

No dice, I was using the GX.games browser launcher, it might just be that system it seems pretty buggy. But I'm running into another issue with the regular launcher, after yours and the slime's turn it does this:

############################################################################################

ERROR in

action number 1

of  Step Event0

for object oBattle:

trying to index a variable which is not an array

 at gml_Script_anon_anon_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4071_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4117_anon_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4071_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0 (line 139) -                                           if (_option[0] == "Attack") return 99;

############################################################################################

gml_Script_anon_anon_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4071_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4117_anon_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4071_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0 (line 139)

gml_Script_anon_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0_4071_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0 (line 146) -                                    return _Priority(_b) - _Priority(_a);

gml_Script_anon_gml_Object_oBattle_Create_0_1502_gml_Object_oBattle_Create_0 (line 135)

gml_Object_oBattle_Step_0 (line 42) -               if (!instance_exists(oMenu)) DoTurn(units[turn]);

That, fortunately is the exact issue mentioned in the post above. Will look into the GX games thing but with the windows launcher if you implement the fix in the link in my previous post, or get the newest files it will fix that particular error. The mention of "  if (_option[0] == "Attack") return 99;" is the giveaway. 

I got an error when I interact with the slimes:

___________________________________________

############################################################################################

ERROR in

action number 1

of Create Event

for object oBattle:

argument 5 needs to be a struct

 at gml_Object_oBattle_Create_0 (line 37) -        enemyUnits[i] = instance_create_depth(x+250+((i mod 3)*10)+((i div 3)*25),y+68+((i mod 3)*20),unitDepth,oBattleUnitEnemy,enemies[i]);

############################################################################################

gml_Object_oBattle_Create_0 (line 37)

gml_Script_NewEncounter (line 3)

gml_Object_oSlime_Collision_oPlayer (line 3) -        NewEncounter(choose([oBattleUnitSlime,oBattleUnitSlime],[oBattleUnitSlime]), sBgField);

(1 edit)

You seem to have a mix of versions here for some reason. Line 37 of your oBattle creat event is from the new version, but the line in your slime collision event is from an old version.

Edit: i've also confirmed that the most recent version also works properly in Opera GX, so if you're still hitting errors this is a problem with your project specifically.

(+1)

Everything is working now, thank you for your help.

Awesome!