Someone Teach Me to Create A Teleport
#2

Fast explained:

Go in game and type /save
then you do /Q and open "Documents / GTA San Andreas User Files / SAMP / savedpositions.txt"
and it should look like:
Код:
AddPlayerClass(0,1133.0504,-2038.4034,69.1000,47.4233,0,0,0,0,0,0); //
The numbers i mared in red is named the X, Y, Z coords if you dont know it :P

then to the command

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
	if (strcmp("/mycommand", cmdtext, true, 10) == 0)
	{
		SetPlayerPos(playerid, 1133.0504, -2038.4034, 69.1000);
                SendClientMessage(playerid, 0xFF0000FF, "You has been teleported");
		return 1;
	}
	return 0;
}
Reply


Messages In This Thread
Someone Teach Me to Create A Teleport - by ReDKiiL - 24.04.2011, 00:05
Re: Someone Teach Me to Create A Teleport - by Laronic - 24.04.2011, 00:24
Re: Someone Teach Me to Create A Teleport - by nuriel8833 - 24.04.2011, 07:08
Re: Someone Teach Me to Create A Teleport - by captainjohn - 24.04.2011, 08:55

Forum Jump:


Users browsing this thread: 1 Guest(s)