SA-MP Forums Archive
Need a little bit of help... - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Need a little bit of help... (/showthread.php?tid=167692)



Need a little bit of help... - cloudysky - 13.08.2010

I am trying to put a pickup inside an interior which i cannot do. I need a way of getting in the interior and laying it. I have been on Debug but couldn't find the SFPD interior to lay the pickup. Any help!

Thanks in advance.


Re: Need a little bit of help... - Kayla.S - 13.08.2010

pawn Код:
if (!strcmp("/sfpd", cmdtext, true))
    {
        SetPlayerPos(playerid,246.40,110.84,1003.22);
        SetPlayerInterior(playerid, 10);
       
        return 1;
    }
There's quite a few interior FS's on the forums you can use. Or just do what I just did, and check https://sampwiki.blast.hk/wiki/InteriorIDs and put in a temporary code to get you there.


Re: Need a little bit of help... - Mystique - 13.08.2010

Check out this FS for all possible interiors in GTA SA.

https://sampforum.blast.hk/showthread.php?tid=71648


Re: Need a little bit of help... - rbN. - 13.08.2010

Kayla got it I think.. Well, check out http://weedarr.wikidot.com/interior
pawn Код:
if (!strcmp("/sfpd", cmdtext, true))
    {
        SetPlayerPos(playerid, 246.375991,109.245994,1003.218750);
        SetPlayerInterior(playerid, 10);
       
        return 1;
    }



Re: Need a little bit of help... - cloudysky - 13.08.2010

I mean i can get the co-ordinates to get in, but when i am in a need more co-ordinates to lay my pickup. for example:
/sfpd i am in the sfpd interior however i have mapped lockers and i want to lay a pickup in a certain positon next to the lockers. How do i get the co-ordinates for that position?


Re: Need a little bit of help... - Claude - 13.08.2010

Use /save or find a code /gps


Re: Need a little bit of help... - cloudysky - 13.08.2010

@Claude but on de-bug i can't find the SFPD interior so how can i /save? i will try gps.


Re: Need a little bit of help... - Kayla.S - 13.08.2010

Just go into you server like anyone else would and type /save. No need for de-bug..


Re: Need a little bit of help... - cloudysky - 13.08.2010

Ah thanks, i thought you could only do it on de-bug.