Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

28 lines
707 B
Plaintext

//::///////////////////////////////////////////////
//:: Default: On Spawn In
//:: NW_C2_DEFAULT9
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Determines the course of action to be taken
after having just been spawned in
*/
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: Oct 25, 2001
//:://////////////////////////////////////////////
#include "NW_O2_CONINCLUDE"
#include "NW_I0_GENERIC"
void main()
{
if(OBJECT_SELF == GetObjectByTag("BOXER_BLUE"))
ActionSit(GetObjectByTag("CHAIR_BLUE"));
else
ActionSit(GetObjectByTag("CHAIR_RED"));
SetIsDestroyable(FALSE);
}