23.03.2012, 21:59
how can i make a command like say /houses
and it then displays all the properties that are for sale in dialog
and it then displays all the properties that are for sale in dialog
#define MAX_HOUSES 100 // Here you insert number of houses you have
for (new i = 0; i<MAX_HOUSES; i++)
{
if(HouseInfo[i][Owned] == false)
{
// the dialog here
}
}