LoD_PRC8/_module/nss/portal_bind.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

12 lines
317 B
Plaintext

//:: Portal bind script
//:: Created by: Helge "DarkFame" Ingvoldstad
//::
//:: Purpose: Binds the player to the location.
void main()
{
object oPC = GetPCSpeaker();
SetLocalInt(oPC,"Bound",1);
SetLocalLocation(oPC, "Backportal", GetLocation(OBJECT_SELF));
ActionSpeakString("You are now bound to this location.");
}