REGoth icon indicating copy to clipboard operation
REGoth copied to clipboard

[G2] Pedro is still standing in front of the monastery in Chapter 3

Open ataulien opened this issue 7 years ago • 2 comments

He should have ran off with the eye of Innos...

ataulien avatar Oct 14 '17 19:10 ataulien

His routine should be changed to "tot" when Lord Hagen tells you about the stolen eye of Innos.

markusobi avatar Oct 16 '17 14:10 markusobi

Even after talking to Lord Hagen, he still stands there. Lord Hagen: B_StartOtherRoutine (Pedro,"Tot");

FUNC VOID B_StartOtherRoutine (var C_npc slf,var string newRoutine)
{
	AI_StandUp (slf);
	if	(Hlp_GetInstanceID(self)	!=	Hlp_GetInstanceID(slf)	)
	{
		if ((Hlp_IsValidNpc (slf))
		&& (!Npc_IsDead (slf)))
		{
			Npc_ExchangeRoutine  (slf,newRoutine);
			AI_ContinueRoutine (slf);
		};	
	}
	else
	{
		Npc_ExchangeRoutine  (slf,newRoutine);	//Joly: zur Sicherheit!
	};
};

Probably because AI_ContinueRoutine is unimplemented.

markusobi avatar Oct 16 '17 15:10 markusobi