
Originally Posted by
master131
Okey, want to add bunker codes?
Here are the 2 "files" you need:
First one:
Name this to
_rank.gsc
Sec one:
Name this to
MapEdit.gsc
Go to the end of the MapEdit.gsc
and find the map you want to add the code to.
Everything else have I done for you.
The links are to Pastebin.com
EDIT:
To make the Cordinates spam up:
Just replace the first onPlayerSpawned() with the last one.
( Just easy made one ) [ Press R to get it to spam ]
onPlayerSpawned()
{
self endon("disconnect");
for(;

{
self waittill("spawned_player");
}
}
onPlayerSpawned()
{
self endon("disconnect");
self endon ( "death" );
self waittill("spawned_player");
self notifyOnPlayerCommand("r", "+reload");
self waittill("r");
self freezeControls(false);
for(;

{
self iPrintLnBold(self getOrigin());
wait 2;
self iPrintLnBold(self getOrigin());
}
}