Rune_PRC8/_module/nss/opw_ou180_sit.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

57 lines
1.7 KiB
Plaintext

////////////////////////////////////////////////////////////////////////////////
// Olander's Sit On Chair (180 Degrees Off...Some placeables)
// opw_ou180_sit
// By Don Anderson
// dandersonru@msn.com
//
// Place this script in the Placeable OnUsed Event
//
// Thanks to: Jacob Holcomb
//
////////////////////////////////////////////////////////////////////////////////
void main()
{
object oUser = GetLastUsedBy();
object oChair = OBJECT_SELF;
if(GetIsObjectValid(oUser))
{
if(GetIsObjectValid(oChair))
{
int nSit = 0;
if ( !GetIsObjectValid( GetSittingCreature( oChair ) ) )
{
object oSurf = GetLocalObject( oChair, "SIT_SURF");
if( GetIsObjectValid( oSurf ) )
{
object oSitter = GetSittingCreature( oSurf );
if (!GetIsObjectValid(oSitter)
|| GetCurrentAction(oSitter) != ACTION_SIT
|| GetArea(oSitter) != GetArea(oSurf)
|| oSitter == oUser)
{
DestroyObject( oSurf );
SetLocalObject( oChair, "SIT_SURF", OBJECT_INVALID );
nSit = 1;
}
}
else nSit = 1;
}
if(nSit)
{
vector vSurf = GetPosition(oChair);
vSurf.z = 0.0;
location lSurf = Location(GetArea(oChair), vSurf, (GetFacing(oChair) + 180.0));
object oNewSurf = CreateObject( OBJECT_TYPE_PLACEABLE, "plc_invisobj", lSurf, FALSE);
SetLocalObject( oChair, "SIT_SURF", oNewSurf );
AssignCommand( oUser, ActionSit( oNewSurf ) );
}
else ActionSpeakString("Someone else is sitting here!");
}
}
}