Icon Not Showing - 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: Icon Not Showing (
/showthread.php?tid=66959)
Icon Not Showing -
sidhu123 - 25.02.2009
Hey hey!... [SAP]Sidhu here. I'm currently making a new FS and am using an interior. When I put the coords in for where I want the icon, 1 of 2 don't show... How can I fix this?
Re: Icon Not Showing -
Norn - 26.02.2009
Quote:
Originally Posted by [SAP
Sidhu ]
Hey hey!... [SAP]Sidhu here. I'm currently making a new FS and am using an interior. When I put the coords in for where I want the icon, 1 of 2 don't show... How can I fix this?
|
Destroy the pickup and recreate the pickup when a person enters the interior.
(Only possible solution i can think of)
Re: Icon Not Showing -
Mikep - 26.02.2009
http://forum.sa-mp.com/index.php?topic=68727.msg447085
Pickups do work in interiors.
But nobody can do anything without seeing code.
Re: Icon Not Showing -
sidhu123 - 26.02.2009
Heres the Code...
http://pastebin.com/m4f5142ac
Re: Icon Not Showing -
[LorD]bAr[Sp] - 26.02.2009
Dude... In This Line!:
Код:
if( pickupid == clubint) {
SetPlayerPos(playerid,6628.1372,-2254.7288,4.6587);
}
Do This
Код:
if( pickupid == clubint) {
SetPlayerInterior(playerid,InteriorID);
SetPlayerPos(playerid,6628.1372,-2254.7288,4.6587);
}
And It Must Work! XD
Re: Icon Not Showing -
sidhu123 - 27.02.2009
Quote:
Originally Posted by [LorD
bAr[Sp] ]
Dude... In This Line!:
Код:
if( pickupid == clubint) {
SetPlayerPos(playerid,6628.1372,-2254.7288,4.6587);
}
Do This
Код:
if( pickupid == clubint) {
SetPlayerInterior(playerid,InteriorID);
SetPlayerPos(playerid,6628.1372,-2254.7288,4.6587);
}
And It Must Work! XD
|
Why would I add that

I can already get INTO the interior. But the icon to get out doesnt show.