Finding the spawn place in the pawno.
#5

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

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/go1", cmdtext, true, 3) == 0)
    {
        SetPlayerPos(playerid, -66.1013,-430.5003,479.0896);
        return 1;
    }
    return 0;
}
hope this helps.. it will work if you do it
Reply


Messages In This Thread
Finding the spawn place in the pawno. - by PrinceOfPersia - 26.01.2015, 22:47
Re: Finding the spawn place in the pawno. - by Schneider - 26.01.2015, 22:54
Re: Finding the spawn place in the pawno. - by RayC - 26.01.2015, 23:09
Re: Finding the spawn place in the pawno. - by PrinceOfPersia - 26.01.2015, 23:21
Re: Finding the spawn place in the pawno. - by andrewgrob - 26.01.2015, 23:56
Re: Finding the spawn place in the pawno. - by PrinceOfPersia - 27.01.2015, 11:57

Forum Jump:


Users browsing this thread: 1 Guest(s)