26.12.2009, 23:16
How can i make this so when a player sees a house instead the pickup showing checkpoints pop up instead of this
Make it to checkpoints like dis image [img width=1024 height=768]/imageshack/img15/7792/samp026x.png[/img]
Please reply thanks
Code:
for(new h = 0; h < sizeof(HouseInfo); h++)
{
if(HouseInfo[h][hOwned] == 0)
{
AddStaticPickup(1273, 2, HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]);
pickups++;
}
if(HouseInfo[h][hOwned] == 1)
{
AddStaticPickup(1239, 2, HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]);
pickups++;
}
}
Please reply thanks


