LoD_PRC8/_module/nss/portal_bind.nss

12 lines
317 B
Plaintext
Raw Normal View History

2023-09-21 21:20:34 -04:00
//:: 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.");
}