Frenetique Posted December 28, 2015 Posted December 28, 2015 Hi everyone ! I have a little issue with MIST version 4.0.55 or 4.0.57 (tested with both). It seems that I can't load Mist at mission start anymore. The following has been made in the ME trigger edition: Mission start -> time more than 1 -> do script file mist_4_0_55.lua Once ->time more than 10 -> do script file test.lua test.lua is just the following: do local msg = {} msg.text = 'Hello World' msg.displayTime = 25 msg.msgFor = {coa = {'all'}} mist.message.add(msg) endBut when I am at 10 seconds from the start, mist is not recognized and I get the standard error popup window (mist returning a nil value). Am I doing something wrong or has there been any changes recently ? It worked a few months ago. Thanks in advance for your reply :smilewink:
Grimes Posted December 29, 2015 Posted December 29, 2015 Change it to "time less than 1" for the mission start trigger. Time can't be higher than 0 at mission start therefore the trigger never occurs. The right man in the wrong place makes all the difference in the world. Current Projects: Grayflag Server, Scripting Wiki Useful Links: Mission Scripting Tools MIST-(GitHub) MIST-(Thread) SLMOD, Wiki wishlist, Mission Editing Wiki!, Mission Building Forum
Frenetique Posted December 29, 2015 Author Posted December 29, 2015 Haha how stupid of me ! At least I learned something. Thanks Grimes !
Recommended Posts