• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

RWGmixier and prefabs

DMC

New member
I currently have 5 prefabs i am trying to make spawn with the rwgmixier. For some reason 2 of them work and 3 don't. There is no reason the 3 should not be working. I have read over tons of posts about prefabs and have yet to find something on this issue. Anyone have any thoughts or is anyone else having this type of problem? Sadly i am out of town for 2 weeks but would love to fix this when i get back. Thank you everyone.

 
Finally got to a comp while on vication

Here are the prefabs

View attachment 28277 This is a prefab i saw in a you tube video and picked it up to put into my random worlds. It will not generate into the world....

View attachment 28278 This is my first prefab i built from scratch and it works great appering in the world often.

View attachment 28279 I dont like having traders in my games so I altered this Traders compound very slightly and it appers often in the random worlds.

View attachment 28280 & View attachment 28281 This prefab had to be broken into 2 parts. This is the 2nd prefab i built from scratch. This prefab is not appering in the world and is thus not working in random worlds.

Library.zip

davehome.zip

DMC_lostjoels.zip

DMC_Adamhome.zip

DMC_Adamhome_part2.zip

 

Attachments

Attachments

Code:
  <daveworld>

<insertAfter xpath="/rwgmixer/prefab_rules/prefab_rule[@name='townGroup']/prefab[@rule='residentialNewGroup']">
	<prefab name="DMC_Adam_House_Z1"/>
</insertAfter>

<remove xpath="/rwgmixer/prefab_rules/prefab_rule[@name='wildernessGroup']/prefab[@name='settlement_trader_01']">
</remove>
<remove xpath="/rwgmixer/prefab_rules/prefab_rule[@name='wildernessGroup']/prefab[@name='settlement_trader_02']">
</remove>
<remove xpath="/rwgmixer/prefab_rules/prefab_rule[@name='wildernessGroup']/prefab[@name='settlement_trader_03']">
</remove>
<remove xpath="/rwgmixer/prefab_rules/prefab_rule[@name='wildernessGroup']/prefab[@name='settlement_trader_04']">
</remove>
<remove xpath="/rwgmixer/prefab_rules/prefab_rule[@name='wildernessGroup']/prefab[@name='settlement_trader_05']">
</remove>

<insertAfter xpath="/rwgmixer/prefab_rules/prefab_rule[@name='downtownGroup']/prefab[@name='business_old_08']">
	<prefab name="_Library_POI"/>
</insertAfter>

<insertAfter xpath="/rwgmixer/prefab_rules/prefab_rule[@name='wildernessGroup']/prefab[@name='cabin_15']">
	<prefab name="Dave_Home_2"/>
	<prefab name="DMC_Lost_Joels"/>
	[color="#FF0000"]<pregab name="DMC_Cliff_Dwelling"/>[/color]
</insertAfter>


<insertAfter xpath="/rwgmixer/prefab_rules/prefab_rule[@name='oldResidential_Bldgs']/prefab[@name='house_old_victorian_12']">
	<prefab name="DMC_Adam_House_Z1"/>
</insertAfter>


<insertAfter xpath="/rwgmixer/prefab_rules/prefab_rule[@name='residentialNew_Bldgs']/prefab[@name='house_construction_02']">
	<prefab name="DMC_Adam_House_Z1"/>
</insertAfter>

</daveworld>
And i added a max/min count to test, if u want it helps

Code:
 	<insertAfter xpath="/rwgmixer/prefab_rules/prefab_rule[@name='wildernessGroup']/prefab[@name='cabin_15']">
	<prefab name="Dave_Home_2" min_count="1" max_count="3" prob="2"/>
	<prefab name="DMC_Lost_Joels" min_count="1" max_count="2" prob="2"/>
	<prefab name="DMC_Cliff_Dwelling" min_count="1" max_count="1" prob="10"/>
</insertAfter>
you just writed wrong, PREGAB instead of PREFAB, and the DMC_Adam_House_Z1 is missing ID mapping files, i cant load this in my world and i get alot of errors when placing this on RWG the others are working fine. hope it helps!!

 
here how it looks in game, you should change the desert terrain to terrain filler (POI) this one are in DEV blocks

bSMNz5N.png


 
Thank you for looking it over. Interesting I never got an error with that miss spelling. Also did you get the library prefab working?

 
in my experience with RWGmixer

if your "terrain hiegth" + "prefab hiegth" > 255, it will not spawn, it will show the distant mesh, and in the world preview, but not when you get near

on that same note if "terrain sublevel" - "prefab sublevel" < 0, it will not spawn in.

this bit of info was one of the hardest bugs i had making EPIC CITIES

hopefully it will asist you in debugging your issue,

is this for a17.3s?

also let me know if you still need help, i would be happy to look through the prefab.xml and make sure townships and biomes, and rwg are enabled.

 
Back
Top