26.01.2015, 23:56
go to C:\Documents and Settings\yourname\My Documents\GTA San Andreas User Files\SAMP
inside you will find savedpositions text document
if u did /save here
u have to do /save here ...... not just /save you need to name it
inside the savedpositions do u will see this .. i have just done it for you
AddPlayerClass(0,-66.1013,-430.5003,479.0896,256.5346,0,0,0,0,0,0); // here
now i dont know what you are trying to do but if you want to go to that position, do this
on cmd text ... create a goto/teleport cmd , take the x,y,z from the first 3 cords.. like above
hope this helps.. it will work if you do it
inside you will find savedpositions text document
if u did /save here
u have to do /save here ...... not just /save you need to name it
inside the savedpositions do u will see this .. i have just done it for you
AddPlayerClass(0,-66.1013,-430.5003,479.0896,256.5346,0,0,0,0,0,0); // here
now i dont know what you are trying to do but if you want to go to that position, do this
on cmd text ... create a goto/teleport cmd , take the x,y,z from the first 3 cords.. like above
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/go1", cmdtext, true, 3) == 0)
{
SetPlayerPos(playerid, -66.1013,-430.5003,479.0896);
return 1;
}
return 0;
}