SA-MP Forums Archive
CreateDynamicPickUp problem! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: CreateDynamicPickUp problem! (/showthread.php?tid=366860)



CreateDynamicPickUp problem! - Akcent_Voltaj - 08.08.2012

i have this and i cant see the pickup text...i only see pickup not text..


PHP код:
if(HouseInfo[h][hOwned] == 0)
                    {
                        
format(strisizeof(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],2501);
                        
CreateDynamicPickup(12731HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]);
                    }
                    if(
HouseInfo[h][hOwned] == 1)
                    {
                        
format(strisizeof(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],2501);
                        
CreateDynamicPickup(12721HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]);
                     }
                }