New building generating system is strange
- JustAnyone
- Developer
- Posts: 3581
- Joined: 23 Jul 2017, 12:45
- Location: Easter Island
- Plugins: Showcase Store
-
Platform
Re: New building generating system is strange
You know Lobby was always a bit strange.
- Bearbear76
- Former Bearbear65
- Posts: 5730
- Joined: 10 Feb 2017, 14:53
- Location: L2 cache
- Plugins: Showcase Store
-
Plugin Creator
Platform
Re: New building generating system is strange
That's hard to make we need more texture thenformer member wrote: ↑25 Aug 2017, 20:08why they all build from the top to the bottom of the map? That's very illogical.
It's hard to explain but
If the building was made from bottom to top the you'll need the texture between it
For every building that has a different shape and size
- Lobby
- Developer
- Posts: 3719
- Joined: 26 Oct 2008, 12:34
- Plugins: Showcase Store
- Version: Beta
-
Platform
Re: New building generating system is strange
Decoration fields couldn't be replaced due to a wrong calculation. Will be fixed, soon 
Some
for you

Some

Code: Select all
public double getMinDaysUntilReplaced(Building building) {
if (building.inConstruction() || building.isLocked() || building.isUntouchable()) {
return Double.MAX_VALUE;
} else if (building.isEmpty() || building.getBuildingType() == BuildingType.DECORATION) {
return 0; // This must be -Double.MAX_VALUE instead
} else {
double daysBuilt = building.getDaysBuilt(absoluteDay);
int buildTime = building.getDraft().buildTime;
return 45 + 1000 * Math.log(1 + 0.01f * buildTime) - daysBuilt;
}
}
- malsa
- Inhabitant of a Multiverse
- Posts: 5085
- Joined: 10 Feb 2017, 17:40
- Location: Malaysia
- Plugins: Showcase Store
- Version: Beta
-
Platform
Re: New building generating system is strange
yeah you are right former member @Lobbyi have one question why the building like for example this buildingformer member wrote: ↑26 Aug 2017, 07:52You misunderstood me. I mean, why they are building from the North-East to the South-West of the map? That's very unrealisticBearbear65 wrote: ↑26 Aug 2017, 03:22That's hard to make we need more texture thenformer member wrote: ↑25 Aug 2017, 20:08why they all build from the top to the bottom of the map? That's very illogical.
It's hard to explain but
If the building was made from bottom to top the you'll need the texture between it
For every building that has a different shape and size
when i change the position map
still like that
- KINGTUT10101
- 1,000,000 inhabitants
- Posts: 2227
- Joined: 07 Jul 2016, 22:50
- Location: 'Merica
- Plugins: Showcase Store
- Version: Beta
- Contact:
-
Plugin Creator
Platform
Re: New building generating system is strange
That might give other players an advantage over others though. If so, I doubt that would be implemented.