Skip to content

Current questions and answers regarding the map editor.

User Avatar
#2526
Auto-translated
In the trigger, the function 1massageF is called, but in your code, its name is different: 1messegerF, which are completely different things. And it should be SetObjectEnabled, not ArgObjectEnabled. And it should be message, not massage. ``` function 1messegerF () MessageBox ("/Maps/SingleMissions/BettaQuestMap/1massage.txt"); Trigger(OBJECT_TOUCH_TRIGGER,"NothPost",nil); end; SetObjectEnabled("NothPost",false); Trigger(OBJECT_TOUCH_TRIGGER,"NothPost","1messegerF"); ``` This is how it should be done correctly.

Whatever