Auto-translated
Then I believe the problem isn't with adding files; something changed while editing the map in the editor. Most likely.
New here? I'm Roha — want a quick tour?
Then I believe the problem isn't with adding the files; something changed while editing the map in the editor. Most likely.
It's easy to check: remove the file and see if the map works. What file did you add?
Does anyone have a link or can upload the ids_for_scripts file for Tribes of the East, which contains the IDs for the third tier and new artifacts?
I couldn't find it anywhere, and I downloaded two Hammers of Fate files. Thanks in advance.
I would write it using auxiliary values. For example, at the very beginning of the map, I would place:
a = 0;
In the second trigger, I would add a check:
if a == 1 then
Your function
Trigger reset
else
if a == 0 then
Text: You have not visited the first hut
end;
end;
And in the first hut, write your function, and at the end add:
a = 1;
If it's not clear, I can write a detailed template later.