Connection ErrorBad RequestSession ExpiredSign in requiredForbiddenNot FoundToo Many RequestsServer ErrorBad GatewayService UnavailableGateway TimeoutHTTP Version Not Supported
Session Expired
Your session has expired. Please log in to continue.
Sign in required
You need an account to do that. Sign in or create one — it only takes a minute.
Request Failed
We encountered an issue while processing your request.
Please check your internet connection and try again.
How do you create main and secondary quests in the editor? I tried using the prophet's hut as well. It seems like everything is set up correctly, but I can't assign it to the monster that needs to be killed!:smile04:
Alright, so as I understand it, the quest itself is displayed, but it's not working? When setting up the quest, you need to set the 'kind' property to OBJECTIVE_KIND_DEFEAT_NEUTRALS, and in the 'parameters' property, add the script name of the monster (right-click, Add) (which can be edited in the 'Name' field of the monster).
Free Wanderer
I have another question. In my case, the letter opens after the monster is killed. How do I make it so that the letter appears first, and then the battle or the option to recruit the monster?
This is done through a script. Here's how:
SetObjectEnabled('mon',nil); function Bat(hero) MessageBox(GetMapDataPath()..'mes.txt'); MakeHeroIntractWithObject(hero,'mon'); end; Trigger(OBJECT_TOUCH_TRIGGER,'mon','Bat');
mes.txt -- the text of the message, mon -- the script name of the monster.