25.05.2011, 11:31
If you're not using incognoto's streamer, you might want to start using it.
It's pretty simple, just replace CreatePickup with CreateDynamicCP:
You might want to edit checkpoint's stream distance( last parameter )
Incognoto's streamer(Clicky)
It's pretty simple, just replace CreatePickup with CreateDynamicCP:
pawn Код:
for(new h = 0; h < sizeof(HouseInfo); h++)
{
if(HouseInfo[h][hOwned] == 0)
{
Create3DTextLabel("[Property]",0x00AE00FF,HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]+0.75,20.0,0,1);
}
if(HouseInfo[h][hOwned] == 1)
{
Create3DTextLabel("[Property]",0x00AE00FF,HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]+0.75,20.0,0,1);
}
HouseInfo[h][hPickupID]=CreateDynamicCP(HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez], 2, -1, -1,-1, 10);
pickups++;
}
Incognoto's streamer(Clicky)