Quote:
Originally Posted by m4karow
Finally, an evaluable answer.
Thats right. But is there any way to change the icon model for specific players? Or I have to create two different map icons to handle that?
|
Not really, you can update the Icon ID via Streamer_SetIntData but that's going to change it for everyone.
If every player can only ever have 1 House icon though, you could place the green ones via dynamic map icons, limit the dynamic map icon count for everyone to 99 (that leaves 1 free slot as the limit is 100) and use SAMP's SetPlayerMapIcon (slot 99) for players who need to have a red icon.
That way ID 99 would stay unused by the Streamer Plugin and since it's the highest ID it would also stay on top all the time.
However I never tested this so I cannot say 100% that the Streamer never touches ID 99, but it shouldn't.
You can set the limit for the Streamer with Streamer_MaxVisibleItems if you want to test this.
This is theoretically a tiny bit more efficient but I think it's really easier and more reliable to do it with 2 Map Icons that get toggled, especially if you may need to add more red icons or handle other Map Icons similarly (which after a while would result in a lot of dedicated Map Icon IDs).