• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Changing source to include a toid in quest missionstates

watkins577

As3, lua, xml scripter
Joined
Sep 20, 2008
Messages
130
Reaction score
0
I need to change... or add to... this...
Code:
if(readXMLInteger(stateNode, "id", intValue))
	missionId = intValue;
else
{
	std::cout << "[Warning - Quests::parseQuestNode] Missing missionId for mission state" << std::endl;
	stateNode = stateNode->next;
	continue;
}

So it includes a toid so I can do <missionstate id="0" toid="499" description="You have killed |ID|/500 minotaurs"/>... Any help with this?
 
Back
Top