Auto-translated
Besides the official manual, you can find some guides in our file archive, even in Russian.
New here? I'm Roha — want a quick tour?
Should the file with the text message be in Unicode or txt format?
Is it possible to download the map editor separately for the add-on featuring orcs, without downloading the add-on itself?
Added 25 minutes later
Can scripts be used to remove objects from the map, such as trees?
Added 3 minutes later
I have a question: how can I use scripts to remove an object, such as a tree or a peasant's house?
Trigger(REGION_ENTER_AND_STOP_TRIGGER , 'trigger name' , 'function name')
function function name (heroname)
if heroname == 'heroname' (hero name) then
--now the check has triggered, identifying which hero entered the region. Write whatever you want here. If you need to complete a quest:
SetObjectiveState ('objname' , OBJECTIVE_COMPLETED)
Trigger(REGION_ENTER_AND_STOP_TRIGGER , 'trigger name' , nil)
end
end