SA-MP Forums Archive
Pickup Issue - 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: Pickup Issue (/showthread.php?tid=204241)



Pickup Issue - Dark-Pheonix - 29.12.2010

/imageshack/img12/8385/gallery31d.jpg
The Red outline has appeared on all of the info pickups.
Can this be resolved easily?
Server was just updated to 0.3c


Re: Pickup Issue - Dark-Pheonix - 29.12.2010

Not just the "i" icons anymore, was discovered on all pickups.
Does not do it at every Pickup but random ones.
Server has roughly 991 pickups, give or take.


Re: Pickup Issue - Dark-Pheonix - 29.12.2010

we are using Streamer Plugin v2.5.1
This seems to be the issue, but we would like a fix, any suggestions?


Re: Pickup Issue - Mean - 29.12.2010

You know, we have an edit button here...


Re: Pickup Issue - Geso - 29.12.2010

Ehm, you've got mapicons on the same coords as the pickups?

0.3c has the following new function in setplayermapicon, which will add a checkpoint to the location of the mapicon:

Code:
#define MAPICON_LOCAL             0 // displays in the player's local area
#define MAPICON_GLOBAL            1 // displays always
#define MAPICON_LOCAL_CHECKPOINT  2 // displays in the player's local area and has a checkpoint marker
#define MAPICON_GLOBAL_CHECKPOINT 3 // displays always and has a checkpoint marker

native SetPlayerMapIcon(playerid, iconid, Float:x, Float:y, Float:z, markertype, color, style = MAPICON_LOCAL);
This might be the problem.

Can be solved by using
Code:
SetPlayerMapIcon(playerid, iconid, Float:x, Float:y, Float:z, markertype, color, style = 1);
for all the mapicons.


Re: Pickup Issue - Dark-Pheonix - 29.12.2010

I Apreciate the help but we are using
CreateDynamicMapIcon(938.3317,1733.2010,8.8516,30, 0,-1,-1,-1,500.1)
Is there any way to solve it without replacing the streamer?
We are using 2.5.1 streamer.dll


Re: Pickup Issue - Geso - 30.12.2010

Quote:
Originally Posted by Dark-Pheonix
View Post
I Apreciate the help but we are using
CreateDynamicMapIcon(938.3317,1733.2010,8.8516,30, 0,-1,-1,-1,500.1)
Is there any way to solve it without replacing the streamer?
We are using 2.5.1 streamer.dll
Check the include this function is in, and add an extra parameter for the last argument.