Posts from Current questions and answers regarding the map editor.
Is it possible to play with a friend in an alliance against the computer? If so, how? I would be grateful to anyone who answers.
Added 15 minutes ago
Hello, esteemed colleagues. Please help me with the following questions: 1) Is it possible to place objects from the .ArenaObjects tab on a map for a scenario created in the map editor (since many of them are not displayed on the map when it is tested directly in the game)? 2) How can I set the number of neutral creatures to depend on the difficulty level?
Added 2 minutes ago
When creating a hero for a duel, I cannot give the hero more than 16 archers/15 assassins. What is the problem?
Added 5 minutes ago
Hello! Can I insert the Agrail model in the "Lords of the Horde" editor? I couldn't find it in the list.
Added 15 minutes ago
Can I use combat scripts to force the AI to cast the desired spells?
1. Create a new Lua script and .xdb 2. In the main script, write SetHeroCombatScript("nAIheroname","/Path/To/Script/Script.xdb#xpointer(/Script)). 3. In the new script, write, for example,
function mass_curse(myhero)
UnitCastGlobalSpell(myhero, SPELL_MASS_CURSE)
end;
function Start()
myh=GetAttackerHero();
if myh=="compname" then
startThread(mass_curse);
end;
end;It seems that's about it... This script automatically forces the computer with the specified name to cast mass weakening at the beginning of the battle.
_________________
Группа картостроителей
Там ответы на вопросы, руководства, гайды и прочее
Discord-сервер "Герои 5: S.T.A.L.K.E.R"
Сервер по модификации "Герои 5: S.T.A.L.K.E.R"
_________________
But 16 assassins is a ridiculous number. Pre-built heroes have many more.
5×16=80, and I think you can have 90 goblins. So, it seems everything is correct.
_________________
Группа картостроителей
Там ответы на вопросы, руководства, гайды и прочее
Discord-сервер "Герои 5: S.T.A.L.K.E.R"
Сервер по модификации "Герои 5: S.T.A.L.K.E.R"
_________________
The game runs stably on Windows 7 with a single drive and version 3.1.
If any of the above is not the case, there may be various bugs, such as maps disappearing. Well, try saving as a different file instead of a regular save, and specify a different folder (e.g., the desktop). And, of course, the map should contain at least two players.
Then, another question. How do I properly change the hero model? That is, let's say I want a swordsman to appear instead of the knight hero, and the swordsman should be recolored. I found and recolored the model, but I need only the hero to be recolored, not all swordsmen.
Added after 12 hours 28 minutes
I seem to have more and more questions...
Please tell me how to properly set the parameters for the OBJECTIVE_KIND_BUILD_BUILDING_IN_TOWN task, which requires building a capitol in a town. If I set the city name in Parameter [0], the task is completed immediately when the map starts. If I add anything else, it stops relating to that city. I've already broken my head over this.