08.08.2012, 00:01
i have this and i cant see the pickup text...i only see pickup not text..
PHP код:
if(HouseInfo[h][hOwned] == 0)
{
format(stri, sizeof(stri), " Vanzare Casa \n Pret: $%d \n Level Necesar: %d ",HouseInfo[h][hValue], HouseInfo[h][hLevel]);
housesale = Create3DTextLabel(stri,0x00808000,HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez],25, 0, 1);
CreateDynamicPickup(1273, 1, HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]);
}
if(HouseInfo[h][hOwned] == 1)
{
format(stri, sizeof(stri), " Proprietar Casa: %s \n Chirie: $%d \n",HouseInfo[h][hOwner],HouseInfo[h][hRent]);
Create3DTextLabel(stri,0xFF0000FF,HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez],25, 0, 1);
CreateDynamicPickup(1272, 1, HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]);
}
}