RATDOG/_module/nss/toship1.nss
Jaysyn904 e870de8a20 File Reorganization
File Reorganization.  Initialized ratdog_creature hak & added Project Q overrides & other models.  Continued dynamic swapover & upgrade.
2021-10-02 03:15:34 -04:00

12 lines
287 B
Plaintext

// Port PC
///////////////////////////////////////////////////
void main()
{
object oPC = GetLastUsedBy(); // Get the user of the object
object oDest = GetObjectByTag("pirate1"); // way point tag.
if(GetIsPC(oPC))
{
AssignCommand(oPC,JumpToObject(oDest));
}
}