Saturday, April 24, 2021

Recent Questions - Arqade

Recent Questions - Arqade


Block texture in inventory won't render

Posted: 24 Apr 2021 03:54 AM PDT

Here is my code:

package com.byethost8.code2828.mcmods.chemc;    import com.byethost8.code2828.mcmods.chemc.items.Gas;  import com.byethost8.code2828.mcmods.chemc.tools.CheMCItemTier;  import net.minecraft.block.AbstractBlock;  import net.minecraft.block.Block;  import net.minecraft.block.OreBlock;  import net.minecraft.block.material.Material;  import net.minecraft.block.material.MaterialColor;  import net.minecraft.item.AxeItem;  import net.minecraft.item.BlockItem;  import net.minecraft.item.HoeItem;  import net.minecraft.item.Item;  import net.minecraft.item.Item.Properties;  import net.minecraft.item.ItemGroup;  import net.minecraft.item.PickaxeItem;  import net.minecraft.item.ShovelItem;  import net.minecraft.item.SwordItem;  import net.minecraftforge.common.MinecraftForge;  import net.minecraftforge.event.RegistryEvent;  import net.minecraftforge.eventbus.api.SubscribeEvent;  import net.minecraftforge.fml.common.Mod;  import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;  import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;    // The value here should match an entry in the META-INF/mods.toml file  @Mod(CheMC.modid)  public class CheMC {        public static final String modid = "chemc";      public static final Properties ItemPropertiesGas = new Properties()      .group(ItemGroup.MATERIALS);      public static final Properties ItemPropertiesIngot = new Properties()      .group(ItemGroup.MATERIALS);      public static Item i_h = new Gas(ItemPropertiesGas)      .setRegistryName("chemc", "hydrogen");      public static Item i_o = new Gas(ItemPropertiesGas)      .setRegistryName("chemc", "oxygen");      public static Item i_n = new Gas(ItemPropertiesGas)      .setRegistryName("chemc", "nitrogen");      public static Item i_cl = new Gas(ItemPropertiesGas)      .setRegistryName("chemc", "chlorine");      public static Item i_hcl = new Gas(ItemPropertiesGas)      .setRegistryName("chemc", "hydrogen_chloride");      public static Item i_li = new Item(ItemPropertiesIngot)      .setRegistryName("chemc", "lithium_ingot");      public static PickaxeItem pickaxe_lithium = (PickaxeItem) new PickaxeItem(          CheMCItemTier.SOFT_METAL,          3,          -2,          new Properties()      )      .setRegistryName("chemc", "lithium_pickaxe");      public static SwordItem sword_lithium = (SwordItem) new SwordItem(          CheMCItemTier.SOFT_METAL,          3,          0,          new Properties()      )      .setRegistryName("chemc", "lithium_sword");      public static AxeItem axe_lithium = (AxeItem) new AxeItem(          CheMCItemTier.SOFT_METAL,          6,          -2.8F,          new Properties()      )      .setRegistryName("chemc", "lithium_axe");      public static HoeItem hoe_lithium = (HoeItem) new HoeItem(          CheMCItemTier.SOFT_METAL,          1,          -2.9F,          new Properties()      )      .setRegistryName("chemc", "lithium_hoe");      public static ShovelItem shovel_lithium = (ShovelItem) new ShovelItem(          CheMCItemTier.SOFT_METAL,          1,          -3.1F,          new Properties()      )      .setRegistryName("chemc", "lithium_shovel");      public static OreBlock ore_lithium = (OreBlock) new OreBlock(          AbstractBlock.Properties              .create(Material.ROCK, MaterialColor.PINK_TERRACOTTA)              .harvestLevel(1)              .hardnessAndResistance(1, 1)              .setLightLevel(                  light -> {                      return 1;                  }              )      )      .setRegistryName("chemc", "lithium_ore");      public static BlockItem i_ore_lithium = (BlockItem) new BlockItem(          ore_lithium,          new Properties().group(ItemGroup.BUILDING_BLOCKS)      )      .setRegistryName(ore_lithium.getRegistryName());      public static Block block_lithium = new Block(          AbstractBlock.Properties              .create(Material.IRON, MaterialColor.PINK_TERRACOTTA)              .harvestLevel(1)              .hardnessAndResistance(1.2F, 1)              .setLightLevel(                  light -> {                      return 1;                  }              )      )      .setRegistryName("chemc", "lithium_block");      public static BlockItem i_block_lithium = (BlockItem) new BlockItem(          block_lithium,          new Properties().group(ItemGroup.BUILDING_BLOCKS)      )      .setRegistryName(block_lithium.getRegistryName());        public CheMC() {          FMLJavaModLoadingContext              .get()              .getModEventBus()              .addListener(this::setup);          MinecraftForge.EVENT_BUS.register(this);      }        private void setup(final FMLCommonSetupEvent event) {}        // You can use EventBusSubscriber to automatically subscribe events on the      // contained class (this is subscribing to the MOD      // Event bus for receiving Registry Events)      @Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD)      public static class RegistryEvents {            @SubscribeEvent          public static void onBlocksRegistry(              final RegistryEvent.Register<Block> blockRegistryEvent          ) {              // register a new block here              blockRegistryEvent                  .getRegistry()                  .registerAll(ore_lithium, block_lithium);          }            @SubscribeEvent          public static void onItemsRegistry(              final RegistryEvent.Register<Item> itemRegistryEvent          ) {              // register a new item here              itemRegistryEvent                  .getRegistry()                  .registerAll(                      i_h,                      i_o,                      i_n,                      i_cl,                      i_hcl,                      i_li,                      sword_lithium,                      pickaxe_lithium,                      axe_lithium,                      shovel_lithium,                      hoe_lithium,                      i_ore_lithium,                      i_block_lithium                  );          }      }  }  

Everything is good when I place lithium block and lithium ore, but when I hold it in my inventory, it shows a missing texture. I've consulted the docs but it said nothing about this. Thanks for any answer! Minecraft version: 1.16.4

If I buy an xBox One S can i get GTA V, if so is it free with gold, if not how much would it be?

Posted: 24 Apr 2021 03:37 AM PDT

I'm currently selling my Nintendo Switch for and xBox One S as I have more of my favorite games on there such as Forza Horizon 4, Wreckfest etc (my step brothers own GOLD and we are all linked in a family so we all get the perks but I don't live with my dad anymore so I decided to get an xBox so I'll be able to play alot of free games on GOLD), and I'm especially really excited to start playing GTA V but I can't seem to find any information stating I can get it on a One S, if you can get GTA V on the xBox One S would I be able to get it for FREE with xBox Live GOLD or Live, but if not how much will it be in Dollars preferably in New Zealand Dollars,

Sincerely, Your friendly Local probably miles away neighbor Cam.

What is the best post-Golem ore?

Posted: 24 Apr 2021 01:11 AM PDT

Well the title explains it, what is the best post-Golem ore.

"Couldn't load file functions/bar.mcfunction in functions directory."

Posted: 23 Apr 2021 09:10 PM PDT

I made two function files:

tag @e[tag="xf_selected"] remove "xf_selected"  tag @e[c=1] add "xf_selected"  

and

tag @e[tag="xf_selected"] remove "xf_selected"  tag @e add "xf_selected"  

And that's it. I've tested the commands and they are valid. I get the following errors:

[Commands][warning]-Couldn't load file functions/selectentity/all.mcfunction in functions directory.      [Commands][warning]-Couldn't load file functions/selectentity/nearest.mcfunction in functions directory.      

What's wrong and how can I fix it? - I literally have nothing else in the pack except for the manifest (which seems to be working).

How do I move the compass to the top of the screen in Fallout 76?

Posted: 23 Apr 2021 11:56 PM PDT

How do I move the compass to the top of the screen instead of the bottom in Fallout 76 on the PS4? Is there an option somewhere in the settings for it? The games I've played that actually have a compass always have it at the top so I keep looking to the top of the screen for it whenever I play. It's annoying when I don't find it there. I'd like it to be in the same place as it is in the rest of the games I play.

Alternatively, I'd rather it just be gone if I can't move it so that way I don't bother stopping to look for it. If I can't move it is there a way to just disable it entirely?

How to make mobs change textures based on their custom name

Posted: 23 Apr 2021 03:52 PM PDT

I have been trying for the past day to figure out how to make it so that when a vindicator is named "Enchanter", it switches its textures.

None of the tutorials I have watched work. I've done everything I can think of and I am out of options now, I even searched to see if this question has been asked before, and I either cant find it, or it simply does not work.

This is in java 1.16.5 with a custom resource pack.

Lowering Ticks Per Second Without Mods

Posted: 23 Apr 2021 10:38 PM PDT

I've been looking into Minecraft speedrunning categories and discovered TASing.

While looking into how they make these speedruns I learned that they use mods to make the tick speed slower to allow for more precise inputs. The only problem is that the mod that was recommended was for 1.12.1. I was interested in more modern versions more specifically 1.16+.

The only possible solution I see is to use the randomTickSpeed command and set it to 0, but this does not derease the tick speed low enough.

How would I decrease the tick speed without using mods for 1.16+?

If there's no way to do so with commands What mod could I use to lower tick speed for 1.16+?

If there aren't any I'll just stick to 1.12 :)

Can I get stuff out of my trunk in Shakedown: Hawaii?

Posted: 23 Apr 2021 12:51 PM PDT

One of the (least efficient) ways to make money is to steal valuables from houses and run them to a pawn shop. The tutorial that introduces this feature tells you how to store the valuables in the trunk of a car. Once you finish the tutorial, the game tells you that there are two types of pawn shops - those with and without garages.

At a pawn shop with a garage, you can drive your car full of stolen loot into the garage and sell everything in the trunk. However, this type of pawn shop is rare.

If you happen to be next to a pawn shop with no garage - is there any way to take valuables back out of the trunk and carry them inside? Or is the pawn shop with garage the only way to sell things from the trunk? I tried destroying the car but that does not cause it to drop the valuables; they are destroyed with the car.

Dualshock4 working only on cable

Posted: 23 Apr 2021 01:50 PM PDT

enter image description hereCouldn't find solution to my problem so making a new thread. My controller can't work unless plugged in ps/pc It works perfectly fine on cable but as soon as I unplug it it just turns off. Also can't be turned on/no led light without being plugged.

I tried resetting it Then check the battery with multimeter- holds normal amount of charge. No issues with the usb port, no issue with ps button or the conductive mat under all buttons Tried resetting connections with PS+share Tried different cables/ports Tried restarting the ps There is no obvious sign of damage on the motherboard. And I have no idea what could be the problem.

Any ideas?

I'm new to coding, can I code a command block into a .json datapack?

Posted: 23 Apr 2021 02:14 PM PDT

So, I started coding very recently [.json to be exact] and I'm trying to create a few custom things for me and my friends. But one of the things I want to do requires me to run a command from Minecraft, [To be exact the command "/time add 5"] But how would I code it in so that Minecraft will run that command..?

Is it possible to disable text chat on battlefront 2 (classic 2005)

Posted: 23 Apr 2021 09:19 PM PDT

The question pretty much says it. Is it possible to disable text chat, through settings, or maybe there's a cheat I can use that would be allowed on online servers? I haven't seen anything in the settings, but I could be missing it.

How do I disable weapon switching using the right stick in Borderlands 2 VR

Posted: 24 Apr 2021 03:00 AM PDT

Borderlands 2 VR has a very irritating setup where if you set your right stick to turn (as you almost certainly want to for seated play) it does not remove the bindings to allow weapon selection using the right stick. This is super inconvenient as generally you don't want to change weapons when you turn. There is a sort of workaround of only equipping two weapon slots, but generally speaking, it's useful to be able to equip all four weapons.

Is there any way to disable weapon swapping using the rick stick, and just have the B button cycle weapons? There doesn't seem to be a UI option to do this, but maybe it's achievable by editing config files?

ETA I'm running this on Oculus Quest via Virtual Desktop from Steam.

How do I empty a bucket in Vintage Story?

Posted: 23 Apr 2021 06:51 PM PDT

I filled a bucket with water, but can only seem to empty it in a barrel. I just want to pour the water - I don't need it anymore. How do I do that?

Can you keep a piglin from turning into a zombified-piglin in the overworld?

Posted: 23 Apr 2021 03:46 PM PDT

Is it possible for you to keep a piglin unzombified in the overworld, whether it be through use of commands or otherwise?

Is there any way to get my Minecraft world back?

Posted: 23 Apr 2021 09:32 PM PDT

I recently removed my Xbox account from my Xbox and when I added it back, my Minecraft worlds from the last couple months were deleted.

I looked back at what it said when I deleted my account, and it said that files that haven't been uploaded yet will be deleted. I tried clearing my cache to get those to re-sync with the game - nothing. Deleted and reinstalled the game - nothing. Uninstalled the beta and redownloaded - nothing. Is it gone for good or do I have hope?

LoL Quick Cast With Range Indicator on Zed

Posted: 23 Apr 2021 08:04 PM PDT

I always play quick cast with indicator on zed. On my main account, the range indicator wouldn't just be a circle, but would show the line of where the shuriken would go, which is nice when looking to intersect multiple Q's.

This way on keydown, I see the shuriken range and the intersecting lines if I have my shadow up with multiple Q's to throw.

However, on my new account, I have tried setting it up the same way and I do not get the range indicator with the lines, I just get the circle range indicator which does not help me position multiple Q's. Can anyone tell me how to fix this??

Can I use my Bedrock skin on Java?

Posted: 23 Apr 2021 06:12 PM PDT

I have a skin on the bedrock/windows 10 edition of the game that i would like to use for my java edition. I made the skin in the skin customizer within the game. Is there a way to download or save the skin?

How much data will a 12550824 x 12550824 world take up in Minecraft?

Posted: 23 Apr 2021 02:33 PM PDT

I would like to know just how much disk space I will need for such a world in Minecraft. It will be stored on USB which has 3.12 GB of free storage remaining. This is for a Minecraft server. This world would be the size of normal Minecraft excluding the non-existent Far Lands.

Is there a way to set fire tick on in a limited area in bedrock vanilla

Posted: 23 Apr 2021 03:06 PM PDT

I need to enable fire tick for a pigman farm but realm has it off, is this possible?

How do you use the '-login' parameter in Steam's launch options? It only shows me the username, not the password

Posted: 23 Apr 2021 08:49 PM PDT

I have one PC, one Windows user, two Steam accounts and want to change between them without having to enter the password each time. They don't have authenticator so that's a win-win.

I saw in another post that there was a command-line parameter to put in Steam's shortcut properties: -login %u %p, but here is the fun part, when I do -login %username %password, it opens Steam with %username in the text box and nothing on the password text box. So I remove the % and only the username appears in the Steam text box but nothing on the password. That has been my struggle, and I was wondering if anyone knows how to fix this.

How can I upload a replay from Rocket League on Xbox to Discord?

Posted: 24 Apr 2021 02:03 AM PDT

I have a clip from Xbox. I have tried posting it directly to discord, It didn't work. Next I tried using Reddit and posting it from there. There were no subreddits to post it to like my other attempt, so that wasn't going to work. On my other attempt, I decided to export it to r/rocketleague then from there to discord. It actually worked, but this time there are no subreddits to export because none of them would allow my post to exist. After that I checked Reddit for a subreddit to post it to and there were none, I was lost and today, I thought of using YouTube or Vimeo as an export and then sending to discord from there. Would that work or do I have to find another way? If I have find another way, what would be it?

Star Wars Jedi Challenge (AR): How do I dodge?

Posted: 23 Apr 2021 06:34 PM PDT

Star Wars Jedi Challenge (AR)

This is killing me. To dodge is to move or lean in the direction of premonition, which is where the game points to move. The game says 'move' while the woman who is Kylo Ren's trainer or something says 'lean'.

  1. How is it done exactly?

Is it a strafe? A lean? Both?

This guy does it so easily: a simple step/strafe and no leaning in the direction. I have tried stepping/strafing but no leaning, leaning but no stepping /strafing and both stepping/strafing and leaning.

Later, he leans and does not step.

  1. How is the space of the playing area related?

I think I am a little limited by the sofa in the room, but I have dodged successfully a few times.

  1. Is there an option to practice dodging?

The only practice, it seems, is when dodging is first introduced. It took me a lot of tries to finally dodge, and I have no idea how I did it.


Of course this could be an error/bug/whatchamacallit since AR is relatively new or something. Idk.

How to disable HUD transparency in Half-Life?

Posted: 23 Apr 2021 11:56 PM PDT

UI doesn't scale based on resolution and HUD is relatively small already in 1920 x 1080 (let alone in 4K), and crosshair in particular is difficult to see.

Having non-transparent HUD would help playing at high resolutions. How can I disable HUD transparency?

What is the hidden achievement in Little Alchemy?

Posted: 23 Apr 2021 12:45 PM PDT

This new web game, Little Alchemy, has a hidden achievement. Does anyone know how to get this achievement?

Is This Just Fantasy?
A hidden gem, eh?

gem

https://littlealchemy.com

Counter Strike 1.6 crashes when patching with UCP

Posted: 24 Apr 2021 12:06 AM PDT

I've installed Counter Strike 1.6 and when I open it; it works just fine. However when I attempt to patch it with UCP it shows this:

Problem signature:     Problem Event Name: APPCRASH     Application Name:   ucp.exe     Application Version:    8.5.0.0     Application Timestamp:  55ebd911     Fault Module Name:  StackHash_e41d     Fault Module Version:   0.0.0.0     Fault Module Timestamp: 00000000     Exception Code: c0000005     Exception Offset:   00160b7c     OS Version: 6.1.7600.2.0.0.256.1     Locale ID:  1033     Additional Information 1:   e41d     Additional Information 2:   e41d74f370ce617732729af7bb738d1d     Additional Information 3:   9789   Additional Information 4:   97896cd646cba0f22c06eb01e344bc7f  

I've tried running it in Compatibility Mode for Windows XP.

I'm running Windows 7 Ultimate 32bit with Intel Core 2 Quad (4 CPUS) 2.4 Ghz and 4 GB Ram.

Cannot connect in multiplayer since version 11.1

Posted: 23 Apr 2021 04:14 PM PDT

Me and my friend have been able to play Minecraft together in the past, but now with version 11.1 we can't play together although we are connected to the same WiFi and we have our multiplayer settings on. Her name never pops on my screen and same for her with me. We enjoy playing together and now we can't! Can someone help us please?!

What sort of hardware was used to transfer Mew at Pokemon Red & Blue worldwide events?

Posted: 24 Apr 2021 01:34 AM PDT

Many years ago when Pokemon Red / Blue was immensely popular, I attended a Pokemon tour in Melbourne. For attending you got a showbag with a Pikachu trading card (with a gold logo stamped in the top right corner), a book with Episode 1 of the TV show in a comic-book format, some stickers / temporary tattoos and if you brought your game cart along, you could get Mew using some specialised hardware they had.

From recollection (this was 15+ years ago now. Yikes!) the hardware ran a modified version of Pokemon red or blue (not sure which). You'd make a slot (first or last, can't remember) empty in your party, pop your cart in the top of the machine and they'd whack a button on the control pad (a SNES controller, I think?). Mew would transfer over, before the game would "lock up" and revert back to the initial "Press a button to transfer" screen. I don't remember if the revert was automatic or if the attendant had to press a reset button, but it was a rather quick and easy procedure.

I suspect this hardware maybe used two Super Gameboy 2's (which had a Game Link port, where the original SGB didn't) with a modified GB cart in one, and the other SGB2 modified so you could hot-swap carts so you didn't need to get people to head to Pokemon centers, hook up, start trading etc.

Does anyone have any more information about this hardware? I've got a keen interest in modified Nintendo Hardware (devkits, demo units etc.) and would love to know more.

Can I download minecraft to another device?

Posted: 24 Apr 2021 01:18 AM PDT

I purchased and downloaded Minecraft PE on my Android Phone for my son but I want him to be able to play it on his kindle without having to purchase it again. is that possible?

Shield Upgrade needs a System Upgrade

Posted: 23 Apr 2021 08:47 PM PDT

When I first upgrade my shielding to 3 bars, I tried powering it up. However it says "Requires System Upgrade". What system upgrade do I need to power this up? I have enough reactor energy so I'm not sure what I need. Do I have to buy it from a merchant?

No comments:

Post a Comment