19 lines
531 B
Plaintext
19 lines
531 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Name: farm_trig_exit
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
OnExit script for the plot of farmland.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Adam Walenga
|
||
|
//:: Created On: September 3rd, 2004
|
||
|
//:://////////////////////////////////////////////
|
||
|
void main()
|
||
|
{
|
||
|
object oPlayer = GetExitingObject();
|
||
|
|
||
|
//Remove variable(s) no longer needed.
|
||
|
DeleteLocalInt (oPlayer, "Is_On_Farm");
|
||
|
}
|