Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Seynox

Seynox

Members
 View Profile  See their activity
  • Content Count

    44
  • Joined

    April 16, 2019
  • Last visited

    December 30, 2020

Community Reputation

0 Neutral

About Seynox

  • Rank
    Tree Puncher

Converted

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Seynox started following [1.12.2] Player at normal speed when sneaking, My transparent entity renders fire terribly, [1.14.4] Changing a player's creature attributes and and 1 other October 12, 2019
  2. Seynox

    [1.14.4] Changing a player's creature attributes

    Seynox posted a topic in Modder Support

    Hi! Is it possible to change a player's creature attributes to Undead? Or do i have to manually make the changes of being an undead to the player? (Like taking more damage with a Smite enchant, inverting the potions effects etc)
    • September 21, 2019
    • 2 replies
  3. Seynox

    [1.12.2] How to properly register items?

    Seynox replied to Seynox's topic in Modder Support

    Perfect! Everything works! Thanks a lot
    • May 26, 2019
    • 17 replies
  4. Seynox

    [1.12.2] How to properly register items?

    Seynox replied to Seynox's topic in Modder Support

    So, how am i supposed to register the ItemBlock? I have to put the item from the ObjectHolder?
    • May 26, 2019
    • 17 replies
  5. Seynox

    [1.12.2] How to properly register items?

    Seynox replied to Seynox's topic in Modder Support

    That's how i register the blocks
    • May 26, 2019
    • 17 replies
  6. Seynox

    [1.12.2] How to properly register items?

    Seynox replied to Seynox's topic in Modder Support

    So everything is working except the blocks that are really weird I have 2 custom blocks and both have the same problem : When i place the block, the block doesnt have any textures/sounds/particles, but still have the effects and properties i have set in their class, but if they are placed with a command or a structure, the block is working perfectly (When i try to pick the working block (With the middle click), nothing happen, but when i do it on the glitchy one, i get the item) EDIT : Forgot to mention that they appear normal in hand and in inventory
    • May 26, 2019
    • 17 replies
  7. Seynox

    [1.12.2] How to properly register items?

    Seynox replied to Seynox's topic in Modder Support

    So, how can i create a ObjectHolder?
    • May 26, 2019
    • 17 replies
  8. Seynox

    [1.12.2] How to properly register items?

    Seynox replied to Seynox's topic in Modder Support

    So, for example, if i make an item like this, it's not gonna work? @Override public ActionResult<ItemStack> onItemRightClick(World world, EntityPlayer player, EnumHand hand) { ItemStack itemstack = player.getHeldItem(hand); world.spawnEntity(new EntityItem(world, posX, posY, posZ, new ItemStack(new ExempleItem()))); return new ActionResult<ItemStack>(EnumActionResult.SUCCESS, itemstack); }
    • May 26, 2019
    • 17 replies
  9. Seynox

    [1.12.2] How to properly register items?

    Seynox replied to Seynox's topic in Modder Support

    Okay, so i registered everything like this (The string after is just to set the unlocalized name) : @SubscribeEvent public static void onItemRegister(RegistryEvent.Register<Item> event) { event.getRegistry().registerAll ( new ItemExemple0("item_exemple0"), new ItemExemple1("item_exemple1"), new ItemExemple2("item_exemple2") ); } Everything is working, and i still have those lines public static final Item ITEM_EXEMPLE = new ItemExemple("item_exemple"); Is it problematic if i use them? Not for the registering of course, but in general? For exemple : ItemStack stack = new ItemStack(ITEM_EXEMPLE); instead of ItemStack stack = new ItemStack(new ItemExemple("item_exemple"));
    • May 25, 2019
    • 17 replies
  10. Seynox

    [1.12.2] How to properly register items?

    Seynox replied to Seynox's topic in Modder Support

    Okay so now that the Items and blocks are registered, i need to find a way to register the models, so here's what i did : @SubscribeEvent public static void onModelRegister(ModelRegistryEvent event) { for(Item item : Item.REGISTRY) { if(item.getRegistryName().getResourceDomain().equals(Reference.MODID)) ModelLoader.setCustomModelResourceLocation(item, 0, new ModelResourceLocation(item.getRegistryName(), "inventory")); } } Is it fine if i use the Resource Domain to register the model like this? (It's working perfectly but i don't know if that's a great way to do it)
    • May 25, 2019
    • 17 replies
  11. Seynox

    [1.12.2] How to properly register items?

    Seynox replied to Seynox's topic in Modder Support

    I just saw how Botania registered his Items and it's really close to what i already have and it's not using the ArrayList to register things, is it good?
    • May 25, 2019
    • 17 replies
  12. Seynox

    [1.12.2] How to properly register items?

    Seynox posted a topic in Modder Support

    Hello! I saw on different posts that registering items like this i not the best way to do it @SubscribeEvent public static void onItemRegister(RegistryEvent.Register<Item> event) { event.getRegistry().registerAll(ModItems.ITEMS.toArray(new Item[0])); } I saw how VoidWalker was registering his items, and it seems more complicated and to be adding more code than what i currently have What are the downsides of doing what i do and how can i optimize it?
    • May 25, 2019
    • 17 replies
  13. Seynox

    [1.12.2] Player at normal speed when sneaking

    Seynox replied to Seynox's topic in Modder Support

    Anyone?
    • May 7, 2019
    • 4 replies
  14. Seynox

    [1.12.2] Player at normal speed when sneaking

    Seynox replied to Seynox's topic in Modder Support

    I just retried the AttributeModifier, and yeah its working (but i have to put some crazy amounts) but the FOV go waaayy too high Is there a way to fix this?
    • May 6, 2019
    • 4 replies
  15. Seynox

    [1.12.2] Player at normal speed when sneaking

    Seynox posted a topic in Modder Support

    Hi! Im trying to make an armor piece that allow the player to move at normal speed when sneaking (The code im trying to make is inside a Tick Event) I already tried few things like PotionEffect, Attributes and Capabilities and any of them change the sneak walking speed I looked at the sneak cheat of few hacked clients and i can't find how they do Can anyone help me?
    • May 6, 2019
    • 4 replies
  16. Seynox

    [1.12.2] Add Baubles as Dependency

    Seynox replied to Seynox's topic in Modder Support

    Anyone?
    • May 5, 2019
    • 6 replies
  • All Activity
  • Home
  • Seynox
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community