ItsMods

Full Version: Mep Edit coordinance
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi
before that i found some where in itsmod a .gsc script to show map coordinance in free look mod but now i miss that pls if possible someone help me.

Thank you.
Code:
showmypos()
{
self endon("disconnect");
//self endon("death"); // if you put it in onspawned, uncomment
for(;;)
{
self iprintln("your pos: " + self.origin );
wait 1; // print it every second
}

}

Put this in OnPlayerSpawned or OnPlayerConnected, after wattill.
Add this one too, it might be helpful to orient objects OMA

Code:
self iprintln("your angles: " + self.angles );