On one of the maps I wish to spawn in a Turbosphere at the start, the 2 more ever 1050 tics.
I've got a mapspot 9001 with the correct TID (33) but the turbospheres are not spawning at all! D;
Tested with a message and that shows (yeah ignore that message... xD)- so the script is being activated...but NO SPHERES!
Code: Select all
//Spawn turbo
Script 06 OPEN
{
delay (50);
print(s:"Turbo *****");
SpawnSpot ("Turbosphere",33);
delay (1050);
SpawnSpot ("Turbosphere",33);
delay (1050);
SpawnSpot ("Turbosphere",33);
}