Posted July 12, 20196 yr 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?
July 12, 20196 yr You can't. The server says to the client to move items around in an inventory. What exactly do you want to do?
July 12, 20196 yr Author 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?
July 12, 20196 yr 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, 20196 yr by WOTBLITZ
July 12, 20196 yr Author 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 ?
July 12, 20196 yr Use a SimpleChannel. Forge docs: https://mcforge.readthedocs.io/en/1.13.x/networking/simpleimpl/
July 12, 20196 yr Author 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?
July 12, 20196 yr Author 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.
July 12, 20196 yr Look at how vanilla moves items around in the inventory. 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)
July 12, 20196 yr Author Just now, Cadiboo said: Look at how vanilla moves items around in the inventory. If I found, I won't be here
July 13, 20196 yr 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. 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.
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.