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
  • Luis_ST

Luis_ST

Members
 View Profile  See their activity
  • Content Count

    392
  • Joined

    October 20, 2020
  • Last visited

    8 hours ago
  • Days Won

    1

Luis_ST last won the day on February 6

Luis_ST had the most liked content!

Community Reputation

7 Neutral

About Luis_ST

  • Rank
    Diamond Finder

Converted

  • Gender
    Male
  • Location
    Germany

Recent Profile Visitors

1075 profile views
  • Aviator737

    Aviator737

    Friday at 11:14 PM

  • A Soulspark

    A Soulspark

    Friday at 06:33 PM

  • AzizD

    AzizD

    Thursday at 07:56 AM

  • moyas1009

    moyas1009

    Wednesday at 02:17 AM

  • kiou.23

    kiou.23

    Tuesday at 05:11 PM

  1. Luis_ST

    Minecraft Crashes on Eclipse Startup

    Luis_ST replied to Lachezar Tsvetkov's topic in Modder Support

    1.12.2 is no longer supported on this forum. Please update to a modern version of Minecraft to receive support.
    • Saturday at 06:01 PM
    • 1 reply
  2. Luis_ST

    [1.16.5] Help with custom Backpack (slot background and mouse wheel move)

    Luis_ST replied to Luis_ST's topic in Modder Support

    okay i have applied your notice on my packet system now the other 2 messages also work is there another possibility to add a delay/cooldown, because despite the TickEvent#phase check you can still change the tools too quickly
    • Saturday at 05:07 PM
    • 30 replies
  3. Luis_ST

    [1.16.5] Help with custom Backpack (slot background and mouse wheel move)

    Luis_ST replied to Luis_ST's topic in Modder Support

    okay I have now created 3 more messages (NextTool, ToolDown, ToolTop) these are currently only sent by pressing keys, and later also by scrolling with the mouse unfortunately only the first message works, which always gives the player the next tool. at the others, the player's hand moves but he doesn't get a new item this is my ClientTickEvent why do only the first message? and how do I prevent the permanent switch of tools when pressing (adding a cooldown)?
    • Saturday at 03:55 PM
    • 30 replies
  4. Luis_ST

    [1.16.5] Help with custom Backpack (slot background and mouse wheel move)

    Luis_ST replied to Luis_ST's topic in Modder Support

    If, as explained above, I want to swap the item in the player's hand for the item from a slot in the backpack (when the player presses a key or sneak and uses the mouse wheel) I also need a message again, am I correct?
    • Saturday at 02:59 PM
    • 30 replies
  5. Luis_ST

    [1.16.5] Help with custom Backpack (slot background and mouse wheel move)

    Luis_ST replied to Luis_ST's topic in Modder Support

    okay i already thought so, but why is the interface unnecessary? to the tools switch slots. I probably also need a message for this, right?
    • Saturday at 02:50 PM
    • 30 replies
  6. Luis_ST

    AL lib: (EE) alc_cleanup: 1 device not closed when opening a GUI

    Luis_ST replied to PutoPug's topic in Modder Support

    it's getting stranger and stranger...
    • Saturday at 02:44 PM
    • 27 replies
  7. Luis_ST

    AL lib: (EE) alc_cleanup: 1 device not closed when opening a GUI

    Luis_ST replied to PutoPug's topic in Modder Support

    that seems very strange to me post the link of that what already exists on github
    • Saturday at 02:42 PM
    • 27 replies
  8. Luis_ST

    AL lib: (EE) alc_cleanup: 1 device not closed when opening a GUI

    Luis_ST replied to PutoPug's topic in Modder Support

    the first thing about your mistake is that there are usually two constructors, one for the server and one for the client. but you only have one constructor I think he's using MCreator
    • Saturday at 02:38 PM
    • 27 replies
  9. Luis_ST

    AL lib: (EE) alc_cleanup: 1 device not closed when opening a GUI

    Luis_ST replied to PutoPug's topic in Modder Support

    almost correct, the error occurs when loading the block inventory on the server side Show us this class CraftoxUIGui.GuiContainerMod
    • Saturday at 02:20 PM
    • 27 replies
  10. Luis_ST

    Give player an item when they join the world

    Luis_ST replied to Shynee's topic in Modder Support

    use ItemHandlerHelper#giveItemToPlayer
    • Saturday at 02:10 PM
    • 4 replies
  11. Luis_ST

    AL lib: (EE) alc_cleanup: 1 device not closed when opening a GUI

    Luis_ST replied to PutoPug's topic in Modder Support

    can you show the associated container because you get an ArrayIndexOutOfBoundsException, I suspect that you are not adding any slots to your container on the server which explains the crash of the game did you change or add anything?
    • Saturday at 02:06 PM
    • 27 replies
  12. Luis_ST

    [1.16.x] Texture issues with custom wood button

    Luis_ST replied to Quaint34's topic in Modder Support

    a little more information would be helpful. so has only the button (block) no texture or does the item also have no texture? Edit: can you please show us the blockstate and your models
    • Saturday at 08:41 AM
    • 1 reply
  13. Luis_ST

    How to create new Villagers 1.16+

    Luis_ST replied to Benamon's topic in Modder Support

    you have to create your own PointOfInterestType and a Villager Profession
    • Saturday at 08:37 AM
    • 1 reply
  14. Luis_ST

    [1.16.5] Help with custom Backpack (slot background and mouse wheel move)

    Luis_ST replied to Luis_ST's topic in Modder Support

    I tried to create a massage and ClientTickEvent from your explanation: My message: https://github.com/Luis-st/Forge-1.16.5-36.0.1-mdk/blob/main/forge-1.16.5-36.0.1-mdk/src/main/java/net/luis/cave/core/BackpackMessage.java my PacketHandler: https://github.com/Luis-st/Forge-1.16.5-36.0.1-mdk/blob/main/forge-1.16.5-36.0.1-mdk/src/main/java/net/luis/cave/core/ModPacketHandler.java and the ClientTickEvent : https://github.com/Luis-st/Forge-1.16.5-36.0.1-mdk/blob/main/forge-1.16.5-36.0.1-mdk/src/main/java/net/luis/cave/events/other/OnClientTickEvent.java is that correct or do I have to change something?
    • Friday at 06:20 PM
    • 30 replies
  15. Luis_ST

    [1.16.5] Help with custom Backpack (slot background and mouse wheel move)

    Luis_ST replied to Luis_ST's topic in Modder Support

    that makes the whole thing not clearer. okay soI should send a message/packet in the ClientTickEvent with the help of the SimpleChannel. should i add a player to the constructor of the message, convert it into bytes using the encode method and then back into a player using the decode method Or do I just think too much about the whole thing and I am right to use the handle method because it is carried out on the receiving side. So I can just check whether the receiving side is server and then open the container?
    • Friday at 05:16 PM
    • 30 replies
  • All Activity
  • Home
  • Luis_ST
  • Theme

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