This commit is contained in:
Charles 2001-06-28 21:24:02 +00:00
parent fabee927ad
commit 47c27c870b
6 changed files with 44 additions and 2 deletions

View file

@ -19,6 +19,10 @@
#include "utils\utils.h"
#endif
#ifndef __LEVEL_LEVEL_H__
#include "level\level.h"
#endif
#ifndef __GAME_CONVO_H__
#include "game\convo.h"
#endif
@ -28,12 +32,34 @@
#endif
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcSandyFriend::postInit()
{
switch( CLevel::getCurrentChapter() )
{
case 3:
{
m_conversation = SCRIPTS_CH3L2_01_DAT;
break;
}
default:
{
m_conversation = SCRIPTS_CH1L2_03_DAT;
break;
}
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcSandyFriend::startConderversation()
{
if( !CConversation::isActive() )
{
CConversation::trigger( SCRIPTS_CH1L2_03_DAT );
CConversation::trigger( m_conversation );
}
}