//From the compass mods' server.cs
function servercmdcom_pong(%c,%x)
{
if(%x == %c.confirmationNum)
{
echo(" " @ %c SPC %c.getPlayerName() SPC "- This player has the power! Giving them the guidance...");
%c.compassEnabled = 1;
for(%i=0;%i<$ServerWaypoints;%i++)
{
commandtoclient(%c,'com_addwaypoint',$ServerWaypoint[%i]);
}
}
}