stuck in river
Posted: Thu Feb 07, 2013 4:47 pm
i am stuck in the middle of the Rivermoot river. There is a rowboat on each shore, but I'm unable to 'use' them. Can walk on the sandbar up and down the river, but not exit it.
Faerun Lives
https://www.alandfaraway.info/phpBB3/
https://www.alandfaraway.info/phpBB3/viewtopic.php?f=248&t=49079
Code: Select all
void main()
{
object oPC = GetEnteringObject();
DelayCommand(300.0f, CheckForStragglers(oPC));
}
void CheckForStragglers(object oPC)
{
object oContents = GetFirstInPersistentObject(OBJECT_SELF);
while(GetIsObjectValid(oContents))
{
if(oContents == oPC)
AssignCommand(oPC, JumpToLocation(GetObjectByTag(GetLocalString(OBJECT_SELF, "FAILOVER_ESCAPE"))));
oContents = GetNextInPersistentObject(OBJECT_SELF);
}
}