Liberty Unleashed

Scripting => Script Help => Topic started by: CANYON on August 23, 2012, 12:43:00 am

Title: How to make a teleport through a command?
Post by: CANYON on August 23, 2012, 12:43:00 am
How to make a teleport through a command?
Title: Re: How to make a teleport through a command?
Post by: Rocky on August 23, 2012, 03:30:09 am
Code: [Select]
if( cmd == "tp" )
{
       player.Pos = Vector( x, y, z); //edit location.
       MessagePlayer("Teleported you!");
}