Clear out experimental .35 files

Clear out experimental .35 files
This commit is contained in:
Jaysyn904
2024-02-11 13:04:14 -05:00
parent 2112b92e24
commit 618cd42b82
22356 changed files with 0 additions and 1248956 deletions

View File

@@ -1,28 +0,0 @@
//:://////////////////////////////////////////////
//:: Generic Listener object OnSpawn script
//:: prc_glist_onspwn
//:://////////////////////////////////////////////
/** @file
The generic listener's OnSpawn script.
Currently just for debugging.
*/
//:://////////////////////////////////////////////
//:: Created By: Ornedan
//:: Created On: 04.08.2005
//:://////////////////////////////////////////////
void main()
{
object oListener = OBJECT_SELF;
SetListening(oListener, TRUE);
if(!GetLocalInt(oListener, "PRC_GenericListener_NoNotification"))
{
if(GetLocalInt(oListener, "PRC_GenericListener_ListenToSingle"))
// "Listener ready. Due to some detail of how the NWN engine handles listening, the listener may only actually start listening during the next 3 seconds."
AssignCommand(oListener, SendMessageToPCByStrRef(GetLocalObject(oListener, "PRC_GenericListener_ListeningTo"), 16825209));
else
AssignCommand(oListener, FloatingTextStrRefOnCreature(16825209, oListener, FALSE));
}
}