forums | blogs | polls | tutorials | downloads | rules | help

Add new comment

garthagain's picture

A Flick for opening Veteran and Elite levels in your map

There may modders still trying to figure out how to open the Veteran and Elite levels in their map. There is a relevant post on Siege The Day that helped me figure it out.
https://www.siegetheday.org/?q=node/152

This is the flick I made for Dawn of the Third Age. It is as simple as you can get it, in fact you can have it open Veteran and Elite levels for your map the very first time you open the map in Mercenary. I did this when testing. While it has no requirements or qualifyers in order to trigger, I tied it to the last quest in a string of quests. I have put the map name in capitol letters (DAWN), this is where you would insert the name of your map to get it to work.

[endgame]
{
role (actor) catalyst;

thread main
{
catalyst:

if WhenModeNormal
{
Report "setting Mercenary bool";
SetLocalJournalBool ( catalyst,DAWN_completed_mercenary, true, true );
}
else if WhenModeVeteran
{
Report "setting Veteran bool";
SetLocalJournalBool ( catalyst,DAWN_completed_veteran, true, true );
}
else if WhenModeElite
{
Report "setting Elite bool";
SetLocalJournalBool ( catalyst, DAWN_completed_elite, true, true );
}
}
}

blogs: