RATDOG/_module/nss/spawnb_sample_ai.nss
Jaysyn904 ae152d0814 Added BESIE, MS Moneclature
Added BESIE, Markshire's Nomeclature & started initial setup for commoners in Baleas.
2021-09-01 23:42:36 -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);
}
}