Re-uploaded instead of migrated
Re-uploaded instead of migrated.
This commit is contained in:
30
_module/nss/pcbanner2.nss
Normal file
30
_module/nss/pcbanner2.nss
Normal file
@@ -0,0 +1,30 @@
|
||||
|
||||
void main()
|
||||
{
|
||||
location loc = GetLocation(OBJECT_SELF);
|
||||
CreateObject(OBJECT_TYPE_PLACEABLE, "hordebanner002", loc, TRUE);
|
||||
|
||||
object oflame = GetObjectByTag("op2_f1");
|
||||
loc = GetLocation(oflame);
|
||||
CreateObject(OBJECT_TYPE_PLACEABLE, "flamelarge", loc, TRUE);
|
||||
|
||||
oflame = GetObjectByTag("op2_f2");
|
||||
loc = GetLocation(oflame);
|
||||
CreateObject(OBJECT_TYPE_PLACEABLE, "flamelarge", loc, TRUE);
|
||||
|
||||
oflame = GetObjectByTag("Hordedoor002");
|
||||
loc = GetLocation(oflame);
|
||||
CreateObject(OBJECT_TYPE_PLACEABLE, "flamelarge", loc, TRUE);
|
||||
DestroyObject(oflame);
|
||||
|
||||
loc = GetLocation(GetObjectByTag("spawnshamanscout2"));
|
||||
object oCreature = GetObjectByTag("ms_spawnshamanscout2");
|
||||
|
||||
if(!(GetCurrentHitPoints(oCreature) > 0))
|
||||
{
|
||||
CreateObject(OBJECT_TYPE_CREATURE, "shamanscout002", loc, TRUE);
|
||||
}
|
||||
|
||||
SoundObjectPlay(GetObjectByTag("FireOutpost2"));
|
||||
}
|
||||
|
Reference in New Issue
Block a user