Taskkill Posted July 12, 2019 Posted July 12, 2019 How to move item's slot at the client-side? For example, I have a stone in slot 1, and how to move it to the hotbar? Quote
WOTBLITZ Posted July 12, 2019 Posted July 12, 2019 You can't. The server says to the client to move items around in an inventory. What exactly do you want to do? Quote
Taskkill Posted July 12, 2019 Author Posted July 12, 2019 Press a key, then get the correct tool to harvest the block you looking at Quote
Taskkill Posted July 12, 2019 Author Posted July 12, 2019 9 minutes ago, WOTBLITZ said: You can't. The server says to the client to move items around in an inventory. What exactly do you want to do? But the operation is at the client side, is there any way to let the server know that I move the item by doing something like sending a packet? Quote
WOTBLITZ Posted July 12, 2019 Posted July 12, 2019 (edited) 13 minutes ago, Taskkill said: But the operation is at the client side, is there any way to let the server know that I move the item by doing something like sending a packet? No, the slot is handled in the server. Are you making a client-side only mod? If not create a keybinding and check if it is pressed on the client and then send a packet to tell the server that, that the key has been pressed and don't forget which player pressed the key. On the server get the inventory from the player and move the items around there. Edited July 12, 2019 by WOTBLITZ Quote
Taskkill Posted July 12, 2019 Author Posted July 12, 2019 2 minutes ago, WOTBLITZ said: No, the slot is handled in the server. Are you making a client-side only mod? If not create a keybinding and check if it is pressed on the client and then send a packet to tell the server that, that key has been pressed and don't forget which player pressed the key. on the server get the inventory from the player and move the items around there. How to do at the server ? Quote
WOTBLITZ Posted July 12, 2019 Posted July 12, 2019 Use a SimpleChannel. Forge docs: https://mcforge.readthedocs.io/en/1.13.x/networking/simpleimpl/ Quote
Taskkill Posted July 12, 2019 Author Posted July 12, 2019 Just now, WOTBLITZ said: Use a SimpleChannel. Forge docs: https://mcforge.readthedocs.io/en/1.13.x/networking/simpleimpl/ I mean what kind of method to do that? Quote
Taskkill Posted July 12, 2019 Author Posted July 12, 2019 2 minutes ago, WOTBLITZ said: What do you mean? Is there a method to move the items? Inv Tweaks says that it is a client mod and can do that. Ummmm. Quote
Cadiboo Posted July 12, 2019 Posted July 12, 2019 Look at how vanilla moves items around in the inventory. Quote About Me Spoiler My Discord - Cadiboo#8887 My Website - Cadiboo.github.io My Mods - Cadiboo.github.io/projects My Tutorials - Cadiboo.github.io/tutorials Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support. When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible. Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)
Taskkill Posted July 12, 2019 Author Posted July 12, 2019 Just now, Cadiboo said: Look at how vanilla moves items around in the inventory. If I found, I won't be here Quote
DavidM Posted July 13, 2019 Posted July 13, 2019 11 hours ago, WOTBLITZ said: You can't. The server says to the client to move items around in an inventory. What exactly do you want to do? I think OP meant to move stuff around in the inventory on the client-side. This is doable on the client-side. I would suggest checking out the Inventory Tweaks mod’s source. Quote Some tips: Spoiler Modder Support: Spoiler 1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code. 2. Always post your code. 3. Never copy and paste code. You won't learn anything from doing that. 4. Quote Programming via Eclipse's hotfixes will get you nowhere 5. Learn to use your IDE, especially the debugger. 6. Quote The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it. Support & Bug Reports: Spoiler 1. Read the EAQ before asking for help. Remember to provide the appropriate log(s). 2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.