Aantioch_Infernum/_module/nss/spawnb_sample_ai.nss
Jaysyn904 15c0c0da79 Installed NESS 4.1.9
Installed NESS 4.1.9.  Tweaked main city.  Full compile.
2023-08-09 07:17:50 -04:00

19 lines
410 B
Plaintext

//
// SpawnBanner : Sample OnActivateItem Script
//
#include "spawnb_main"
void main()
{
object oPC = GetItemActivator();
object oItem = GetItemActivated();
object oTarget = GetItemActivatedTarget();
location lTarget = GetItemActivatedTargetLocation();
// Rod of Spawn Banners
if (GetTag(oItem) == "RodofSpawnBanners")
{
SpawnBanner(oPC, oItem, oTarget, lTarget);
}
}