17.02.2012, 21:42
I think the problem is that you returned in 'for'
pawn Код:
for(new h = 1; h < sizeof(HouseInfo); h++)
{
format(file, sizeof(file), "RRP/houses/%d.ini", h);
if(fexist(file))
{
if(HouseInfo[h][Owner] == 0)
{
new string[128];
housepickup[h] = CreatePickup(1273, 1, HouseInfo[h][X], HouseInfo[h][Y], HouseInfo[h][Z], 0);
format(string, sizeof(string), "This house is for sale. Use /buyhouse to buy it. Price: %d", HouseInfo[h][Price]);
housetext[h] = Create3DTextLabel(string, COLOR_RED, HouseInfo[h][X], HouseInfo[h][Y], HouseInfo[h][Z], 10.0, 0);
}
else
{
new string[128];
housepickup[h] = CreatePickup(1273, 1, HouseInfo[h][X], HouseInfo[h][Y], HouseInfo[h][Z], 0);
format(string, sizeof(string), "This house is owned by %s.", HouseInfo[h][Owner]);
housetext[h] = Create3DTextLabel(string, COLOR_RED, HouseInfo[h][X], HouseInfo[h][Y], HouseInfo[h][Z], 10.0, 0);
}
}
[b][u]return 1;[/u][/b]
}
return 1;