PRC8/nwn/nwnprc/trunk/scripts/prc_teleport_aux.nss
Jaysyn904 d87fe14826 Further file organization
Further file organization
2023-08-23 22:11:00 -04:00

28 lines
652 B
Plaintext

//::///////////////////////////////////////////////
//:: Teleport include auxiliary
//:: prc_teleport_aux
//::///////////////////////////////////////////////
/** @file
The script called when an user has made their
choice when selecting location to teleport to
using an effect that uses the Teleport() in
spinc_teleport
@author Ornedan
@date Created - 2005.11.04
*/
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
#include "spinc_teleport"
void main()
{
if(DEBUG) DoDebug("prc_teleport_aux running");
object oCaster = OBJECT_SELF;
TeleportAux(oCaster);
}