Jump to content

AaronG85

Members
  • Posts

    239
  • Joined

  • Last visited

Posts posted by AaronG85

  1. 2 minutes ago, Old Crow said:

     

    https://7daystodie.com/alpha-exodus-leaving-early-access/

     

    Q: Will the Console Version have Crossplay?
    A: While it will not be ready for the 1.0 Release, we are pleased to report that Crossplay connections already work with PC, PS5 and Xbox Series S/X. However, we are waiting for  certification approval with Microsoft and Sony. We intend to have more information in the future, and hope for it to be released with Update 1’s launch (tentatively scheduled for Q4 2024).

     

    Q: Will the Console Edition get modding support?
    A: We are discussing this, but there are no concrete plans yet. We are looking into how this might be achieved while maintaining performance on the console edition. 

    LOL guess i didn't look that hard, thanks for the reply

  2. On 5/25/2024 at 10:53 PM, RyanX said:

    Lol @ ppl not using twitter because Elon owns it.  Threads is a low usage platform for ppl who want to virtue signal.  It's not popular enough to warrant it's inclusion into the real social media ecosystem.

     

    No one mentioned Elon, except you... 

  3. Just wondering if the social media team have a Threads account where they post updates like they do on Twitter?

     

    I know I could use Twitter but can’t stand the app. I’m always on the forums but it seems features and updates get posted there first.

  4. On 10/11/2023 at 10:31 AM, Cranberry Monster said:

    Everything I know about adding smeltable stuff came from Meancloud's Mining:

     

    Not sure if the mod's been updated for A21, but the basics should still apply. Basically, you'll want to first check out windows.xml in the XUi subfolder. This is where you add your new materials to the accepted forge materials, and add the additional slots to display them. Next, you'll need entries for your new ores and such in materials.xml.  Then, in items.xml, you need both a "resource" and "unit_" for each of your ores. If I remember correctly, resource is the form used outside of the forge, unit_ is the stuff stored inside it. In recipes.xml, you'll need <wildcard_forge_category> recipes for each of your new ores, which I believe lets you smelt them into the forge, and a second set of recipes to run the smelted materials back out of the forge again. Plus, you'll put the recipes that actually uses the ores there, too. And finally, you add your actual sources of ore in blocks.xml.

     

    Hope that gets you started. Like I said, see what's going on in MeanCloud's Mining and it should all fall into place.

     

    This worked 100% and i now have a working custom forge with smelting custom items, thanks so much

  5. 10 hours ago, The_Great_Sephiroth said:

    Update 2:

    After reviewing your code a second time I see you have the upgrade section. I skipped over it somehow upon first reading. That or I wasn't paying enough attention. Have you done as suggested and added the upgrade materials to the tools?

     

    Yeah I've added the

    resourceForgedMeteoriteRed

    to the nailgun but still nothing?

  6. I have the following code

     

    		<append xpath="/blocks/block[@name='steelShapes']">
    			<property class="UpgradeBlock">
    				<property name="ToBlock" value="meteotireGreenShapes"/>
    				<property name="Item" value="resourceForgedMeteoriteGreen"/>
    				<property name="ItemCount" value="10"/>
    				<property name="UpgradeHitCount" value="4"/>
    			</property>
    		</append>	
    		
    		<block name="meteotireGreenShapes" shapes="All">
    			<property name="DescriptionKey" value="meteotireGreenShapesDesc"/>
    			<property name="DisplayType" value="blockHardened"/>
    			<property name="Material" value="MmeteotireGreen_shapes"/>
    			<property name="Shape" value="New"/>
    			<property name="Texture" value="544"/>
    			<property name="UiBackgroundTexture" value="544"/>
    			<property name="EconomicValue" value="150"/>
    			<property name="EconomicBundleSize" value="20"/>
    			<property class="RepairItems">
    				<property name="resourceForgedMeteoriteGreen" value="10"/>
    			</property>
    			<drop event="Harvest" name="resourceForgedMeteoriteGreen" count="8" tag="allHarvest"/>
    			<drop event="Destroy" count="0"/>
    			<drop event="Fall" name="resourceMeteoriteGreen" count="10" prob="0.75" stick_chance="1"/>
    			<property class="UpgradeBlock">
    				<property name="ToBlock" value="meteotireRedShapes"/>
    				<property name="Item" value="resourceForgedMeteoriteRed"/>
    				<property name="ItemCount" value="10"/>
    				<property name="UpgradeHitCount" value="4"/>
    			</property>
    			<property name="UpgradeSound" value="place_block_concrete"/>
    			<property name="SortOrder1" value="S030"/>
    			<property name="Group" value="Building,advBuilding"/>
    			<property name="FilterTags" value="MC_Shapes"/>
    		</block>

     

    I have made all the required mods to the recipes, blocks, items and material XMLs but im stuck as I cant upgrade from the steel block to my new block. Any help is greatly appreciated.

  7. I'm currently using the following code to add a new item to an existing Progression level

     

    	<append xpath="/progression/crafting_skills/crafting_skill[@name='craftingElectrician']">	
    		<display_entry icon="lightIndustrialRed" name_key="Supply Drop Beacon" has_quality="false" unlock_level="10" >
    			<unlock_entry item="supplyDropBeacon" unlock_tier="1" />
    		</display_entry>
    	</append>

     

    Just wondering how i would go about adding it to an existing level in Progression, Example this one

     

    		<display_entry icon="generatorBankA" name_key="electricianT1" has_quality="false" unlock_level="25" >
    			<unlock_entry item="generatorbank,electricwirerelay,switch,tripwirepost,ceilingLight01_player,industrialLight01_player,industrialLight02_player,ceilingLight07_player" unlock_tier="1" />
    		</display_entry>

     

  8. Just saw a small grammatical error in your Food Water Mod 

     

    ModInfo.xml
    <Name value="FoodWndWaterBars" />

     

    But also get this yellow warning everytime i load

     

    2023-08-05T12:40:21 71.510 WRN XML patch for "XUi/windows.xml" from mod "FoodWndWaterBars" did not apply: <remove xpath="/windows/window[@name='windowToolbelt']/rect/rect[@pos='376,-77']"  (line 5 at pos 3)
     

    Just thought i would let you know.

     

     

  9. Im trying to learn to code and have a few mods already but im trying to make a mod using all required fields (weapons, magazines, skill points, workstations) and have everything working but when i put down the new workstation and click on the gun i get non stop red warnings.

     

    Could someone please have a look at my code and see what could be causing this.

     

    Ignore I figured it out

×
×
  • Create New...