47 lines
974 B
Plaintext
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);
|
|
|
|
}
|
|
|