15.09.2010, 19:32
Hi all,
Im really tired tonight so it might be my stupid mistake somewhere but can someone take a look at this:
I am trying to set a players map icon using CreateDynamicMapIcon from Incognitos Streamer. I also use the streamer for objects and they're all fine so i know the streamer is loading. The map icons (map icon: 52) works perfectly on a windows server (0.3b R2 build) however, on linux (0.3b R2 build) it doesnt work.
I basically have an array, full of x, y, and z co-ordinates. And am creating the map icons like so:
I just cannot see whats going wrong.
Does somebody know how to resolve this?
Thanks
Ash
Im really tired tonight so it might be my stupid mistake somewhere but can someone take a look at this:
I am trying to set a players map icon using CreateDynamicMapIcon from Incognitos Streamer. I also use the streamer for objects and they're all fine so i know the streamer is loading. The map icons (map icon: 52) works perfectly on a windows server (0.3b R2 build) however, on linux (0.3b R2 build) it doesnt work.
I basically have an array, full of x, y, and z co-ordinates. And am creating the map icons like so:
pawn Код:
public OnPlayerSpawn(playerid)
{
for(new a; a < sizeof(pickups); a++) //pickups being my array name
{
CreateDynamicMapIcon(pickups[a][fx], pickups[a][fy], pickups[a][fz], 56, 0, 0, 0, playerid, 100.0);
Streamer_Update(playerid); //Just to make sure :)
}
}
Does somebody know how to resolve this?
Thanks
Ash