07.05.2017, 10:51
So when the player enters the pickup area, it would popup a GameText.
Well then you've a simple logic error in it,
When creating new house /addhouse, you need to assign the CreatePickup returned value to HouseInfo array, just as shown in the code snippet below
Change from
TO
in your CMD:addhouse function.
Well then you've a simple logic error in it,
When creating new house /addhouse, you need to assign the CreatePickup returned value to HouseInfo array, just as shown in the code snippet below
Change from
PHP код:
PropertyPickup[PropertyCount] = CreatePickup(1272, 1, X, Y, Z);
PHP код:
HouseInfo[idd][HousePickup] = CreatePickup(1272, 1, X, Y, Z);
