11 lines
363 B
Plaintext
Raw Normal View History

2024-08-03 14:13:18 -04:00
// -----------------------------------------------------------------------------
// MAIN - Example OnClientEnter script
// -----------------------------------------------------------------------------
#include "se_inc_pc_loc"
void main()
{
object oPC = GetEnteringObject();
if(GetLocalInt(oPC, "ENTERED") == FALSE)
SE_PersistantPCLocation(oPC);
}