Jump to content

DukeW74

Members
  • Posts

    71
  • Joined

Everything posted by DukeW74

  1. We would need to see just what you are trying to do to be of any help, or at least I would.
  2. <append xpath="/blocks/block[@name='NAMEOFITEMADDINGTO'] <property name="NAMEOFPROPERTY" value="PROPERTYVALUE"/> </append>
  3. Those should work with no problem. F1 for the console and type in "exportcurrentconfigs" without the quotes the check and see just what its loading or not loading. assuming a default install here is the path the exported configs will be. your map name\your world gen name C:\Users\YOURNAME\AppData\Roaming\7DaysToDie\Saves\Hezubu Mountains\PerfectWorld\Configs
  4. A17.2 Vanilla gas is 600 not 1000 so depending on which version and what changes have been made one of these should work. <set xpath="/recipes/recipe[@name='ammoGasCan'][@count='600']/@count">1200</set> <set xpath="/recipes/recipe[@name='ammoGasCan'][@count='1000']/@count">1200</set>
  5. I was just on the way out, I will download the file and retest when I get back. Couple of hours or so.
  6. Do you already have a "Food Posioning" named file in any modinfo? The game will only read one, try renaming it.
  7. I see lots of spaces where there should not be, that could be because of lack of code tags. Still trying to learn xpath myself, it could be the modinfo.xml that is giving you problems. Copy of the modinfo I used to test <?xml version="1.0" encoding="UTF-8" ?> <xml> <ModInfo> <Name value="Food Posioning" /> <Description value="Add more posioning" /> <Author value="Duke" /> <Version value="A17.2b20" /> <Website value="https://7daystodie.com/forums/forumdisplay.php?61-Game-Mods" /> </ModInfo> </xml> You might try to hit F1 for the console and enter "exportcurrentconfigs" without the quotes, the console will tell you where the complete configs are placed so you can see just what is being loaded. An example of where you should find the exported cofigs C:\Users\Duke\AppData\Roaming\7DaysToDie\Saves\Hezubu Mountains\Perfect World2\Configs Here is a start to what you want I think. DOWNLOAD
  8. To make sure we are on the same page. You made a "Mods" folder with a ModInfo.xml in it then in the "Config" folder you have a progression.xml with the above in the progression.xml On the other part if your question the other page is wrong, I got this to load with errors but it does seem to load and it does display a 25% chance, This needs to be in items.xml <configs> <set xpath="/items/item[@name='foodCanBeef']/effect_group[@tiered='false']/triggered_effect[@trigger='onSelfPrimaryActionEnd'][@buff='buffIllFoodPoisoning0']/requirement[@name='RandomRoll']/@value">25</set> <set xpath="/items/item[@name='foodCanBeef']/effect_group/display_value[@name='FoodPoisoningRisk']/@value">0.25</set> </configs>
  9. I am sure there are easier ways to do this but this way worked for me. NOTE: I only added "foodCanBeef", to add more be sure to add a comma between names. <progression> <set xpath="/progression/perks/perk[@name='perkMasterChef']/effect_group/passive_effect[@tags='foodBaconAndEggs,foodBoiledMeat,foodGrilledMeat,foodBakedPotato,foodCornBread,foodCornOnTheCob,drinkJarRedTea,drinkJarCoffee,drinkJarGoldenRodTea']/@tags">foodBaconAndEggs,foodBoiledMeat,foodGrilledMeat,foodBakedPotato,foodCornBread,foodCornOnTheCob,drinkJarRedTea,drinkJarCoffee,drinkJarGoldenRodTea,foodCanBeef</set> </progression> Check the video tutorial for maybe some help on the second part of your question
  10. This will do the same thing. I am not sure which is the best or if it just don't matter as long as it gets the job done. <set xpath="/blocks/block[@name='terrDesertGround']/drop[@event='Harvest'][@name='resourceCrushedSand']/@count">20</set>
  11. * = whatever item name you want to add the property to # = default melt time on all items in the forge is 0.25, it all extends from unit_iron <configs> <append xpath="/items/item[@name='*']"> <property name="MeltTimePerUnit" value="#"/> </append> </configs>
  12. Looks right if your icon is in fact in ItemIcons and if it is named correctly (case sensitive). I personally rarely use the customIcon property (No reason not to use it, I just don't), I just make sure the item name and the icon name match, then drop it in the ItemIcons folder. One other thing you might try is using a shorter name for the icon, IIRC a few Alphas back an icon name would not show for me with a longer name. I am not aware of problems with long names but it's worth a try.
  13. serverconfig.xml in the root 7 Days To Die folder <property name="PartySharedKillRange" value="100"/> <!-- The distance you must be within to receive party shared kill xp and quest party kill objective credit. --> Edit "value=100" is 100 blocks in game
  14. From Localization modBarbedBat,items,mod,New,Nautilus Bat,,,,, should be "Barbed Bat" ?
  15. Your path is wrong and as far as I know your use of "and" is incorrect. "and" would need to include both chainsaw and auger, "or" might work but I have never tried anything with it though I am just learning myself. In any case this works on b238 <set xpath="/items/item[@name='meleeToolChainsaw']/effect_group/passive_effect[@name='MagazineSize']/@value">5000</set> <set xpath="/items/item[@name='meleeToolAuger']/effect_group/passive_effect[@name='MagazineSize']/@value">5000</set>
  16. This should work <append xpath="/recipes/recipe[@name='woodFrameBlock']"> <ingredient name="resourceNail" count="1"/> </append> I think you don't need the /recipes after you are already in the [@name=woodFrameBlock]
×
×
  • Create New...