Page 1 of 1

[FIXED] New player facing some bugs…

Posted: Sat Apr 23, 2022 6:44 pm
by St4r8ucK
I’m a new player trying to play through the tutorials. I’ve faced two very annoying bugs :

1/ All submarine tutorials (at least) : First special message (describing what to do to start the scenario) doesn’t popup despite correct configuration in the options. Other special messages are then ok (immediate popup when added to message log). This was not the case several months ago when I first played…

2/ Submarine tutorial 1.3 : Battery level should be 500 according to the scenario description (which aims to teach us schnorchel operations) but it is 8000. By typing the right code in the LUA console, I’m able to fix it but should’nt be necessary to do that…

Code: Select all

local unit = ScenEdit_SetUnit({name='B-237 Rostov-on-Don', guid='4779747a-a270-4412-897a-32fa9952f431', fuel={{'Battery',500}}})
This bug seems to be quite new as it was not existing when some youtube videos I’ve found were recorded.

Could someone confirm those bugs? Do I miss something? I’ve tested on 2 different machines with clean install.

Regards,

Re: New player facing some bugs…

Posted: Sun Apr 24, 2022 12:27 pm
by eclair
Welcome to CMO!

They are scenario-inherent issue and easy to fix.
1/ You can check the scenario events in editor mode Menu "Editor – Event Editor -Events" and find "1_Welcome" event is not active (which is very common when trigger is "Scenario is loaded", and author saved the scenario after loading it).
Please check "is Active" checkbox and save the scenario.

2/ That may because author used "Force Deep-Rebuild" mode (which resets weapon/fuel/damage status of units) when updating scenario database. Your nice Lua code can update the fuel status.

Hope that scenario author notice and fix them.

Re: New player facing some bugs…

Posted: Sun Apr 24, 2022 2:49 pm
by St4r8ucK
Thank you! Everything is fixed thanks to your help ;)