RoT2_PRC8/_module/nss/cb_ozglyph.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

47 lines
974 B
Plaintext

void main()
{
object oPC = GetPCSpeaker();
object oTarget;
object oSpawn;
location lTarget;
oTarget = GetWaypointByTag("oz_glyph_01");
lTarget = GetLocation(oTarget);
oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "ozglyph01", lTarget);
oTarget = GetWaypointByTag("oz_glyph_02");
lTarget = GetLocation(oTarget);
oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "ozglyph02", lTarget);
oTarget = GetWaypointByTag("oz_glyph_03");
lTarget = GetLocation(oTarget);
oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "ozgplyph03", lTarget);
oTarget = GetWaypointByTag("oz_glyph_04");
lTarget = GetLocation(oTarget);
oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "ozglyph04", lTarget);
oTarget = GetWaypointByTag("oz_glyph_05");
lTarget = GetLocation(oTarget);
oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "ozglyph05", lTarget);
oTarget = GetWaypointByTag("oz_glyph_06");
lTarget = GetLocation(oTarget);
oSpawn = CreateObject(OBJECT_TYPE_PLACEABLE, "ozglyph06", lTarget);
}