23 lines
621 B
Plaintext
23 lines
621 B
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Talus Menu on Rest
|
|
// tal_conv_targ0
|
|
// OPW Integration and Clean Up By Don Anderson
|
|
// dandersonru@msn.com
|
|
//
|
|
// Used in Rest Menu Conversation
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "x0_i0_position"
|
|
void main()
|
|
{
|
|
object oPC=GetPCSpeaker();
|
|
object oTarg=GetLocalObject(oPC,"targ"+IntToString(GetLocalInt(oPC,"convtarg")));
|
|
|
|
AssignCommand(oPC,ClearAllActions());
|
|
SetLocalInt(oPC,"convtarg",0);
|
|
TurnToFaceObject(oTarg,oPC);
|
|
SetCustomToken(7100,GetName(oTarg));
|
|
}
|