'const' makes an attribute constant for the whole shape. thus, there's no direct differentiation between the facades of the different buildings.so what you have to do is pass one random 'chosen' texture down to each one of the building footprints for using as the facade texture.If you are on 2010.3, you have to pass the value from rule to rule, like :
Lot -->
Rule(rand(10,20))
Rule (value) -->
print (value)
This can of course get confusing if you have many many rules, because you need to pass the values down like, even over rules which do not use this value.For this, in the 2011 version, GENERIC ATTRIBUTES were introduced, which let you set and change any attribute in the Rules. These are then passed down automatically.E.g.attr myValue= 1
Lot -->
set (myValue, 10)
Rule
Rule -->
print (myValue)
Please note that these attribute values are handed down to the different 'subtrees' in the Model Hierarchy, thus each branch can have different values.