23 lines
557 B
Plaintext
23 lines
557 B
Plaintext
|
/*
|
||
|
* Script generated by LS Script Generator, v.TK.0
|
||
|
*
|
||
|
* For download info, please visit:
|
||
|
* http://nwvault.ign.com/View.php?view=Other.Detail&id=1502
|
||
|
*/
|
||
|
// Put this script OnEnter.
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
// Get the creature who triggered this event.
|
||
|
object oPC = GetEnteringObject();
|
||
|
|
||
|
// Only fire for (real) PCs.
|
||
|
if ( !GetIsPC(oPC) || GetIsDMPossessed(oPC) )
|
||
|
return;
|
||
|
|
||
|
// Have text appear over the PC's head.
|
||
|
FloatingTextStringOnCreature("You get an overwhelming feeling of being between realities and planes.", oPC);
|
||
|
}
|
||
|
|