Jump to content

Analyse the World and Chests


Meeresgott

Recommended Posts

Hello Forge-Community,

I have the following task

You have an area,for example with 10x10 (XxZ) blocks. The middle of these areal is located at the example coordinates 100;0;100 (X;Y;Z). Whenever the player enters the areal (no matter which y-coordinate), an event should be triggered and searched for "Item Frame".
The player should automatically move to this item frame and open a chest ( behind the item frame ) and analyse its content.

I'm new to Forge programming. I know the basic concept but the concrete implementation is difficult for me.
Above all, I'm looking for solutions for the following questions:

-How do I get the Event implemented that should be triggered when I enter the area ?
-How can I access the chests in the program code and analyse their content?
-How do I search for item frames / entities statically and not relative to the player?

It would be nice, if you can help me. I say thank you in advance for the answers. Links to forum entries that answer one of these topics would also work. However, I could not find auch entries until now.

Thanks and best regards

 

Meeresgott

Edited by Meeresgott
Link to comment
Share on other sites

1. How is the "middle of the area" defined?

2. Get the tile entity of the chest and get the item handler capability from it.

3. World#getEntitiesWithinAABBExcludingEntity (pass the player in the parameter to exclude it)

Edited by DavidM

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.

 

 

Link to comment
Share on other sites

1. you are right. Bad example for know the area is 11x11 an the middle of the area is identify by the center blocks coordinates. 

2. Do you have any code example for me ? When I get the tile entity how can I transfer Items from the Chest to the player ? ( I know this isn't the original question, but for me an interesting one).

3. Oh so esay. But how can I check if "AABB" is in loaded chunks ? 

 

I have forgot to mentain, that the Mod I'm working on is for a client how connects to a Server. I assume, that the Client can't download spezific chunks from the Server. Only Chunks next to the player. 

Edited by Meeresgott
Link to comment
Share on other sites

32 minutes ago, Meeresgott said:

Mod I'm working on is for a client how connects to a Server

 

32 minutes ago, Meeresgott said:

transfer Items from the Chest to the player

AFAIK you can't transfer items from one inventory to another without the player opening the chest in a client only mod.

Edited by DavidM

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.

 

 

Link to comment
Share on other sites

12 minutes ago, DavidM said:

AFAIK you can't transfer items from one inventory to another in a client only mod.

I know it is difficult but possible. In vanilla Minecraft you can. You have to open the chest drag the items from the chest an drop them into the in inventory or. the other way round. I have to emulate this. The Server have to think, that a real Human does this transaction then it is possible - I hope. 

 

The question is how can I do this ? As already stated I can't findy any solutions for this problem in the web but for my opinion there musst be a solution. Do you have any Idea ?

Edited by Meeresgott
Added question
Link to comment
Share on other sites

1 hour ago, Meeresgott said:

I know it is difficult but possible. In vanilla Minecraft you can. You have to open the chest drag the items from the chest an drop them into the in inventory or. the other way round. I have to emulate this. The Server have to think, that a real Human does this transaction then it is possible - I hope. 

In that case you'll have to open the chest first.

 

1 hour ago, DavidM said:

from one inventory to another without the player opening the chest

I might have misunderstood your problem. I thought you meant to grab all items out of nearby inventories in a 11x11 area without opening them.

 

Yes, this is possible (although I am not sure whether this is encouraged).

If the intention of your mod is to cheat on servers (like auto grab stuff out of chest in hunger games), then I'm afraid you shouldn't be doing it.

Edited by DavidM
Added more detailed description

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.

 

 

Link to comment
Share on other sites

 

 

31 minutes ago, DavidM said:

If the intention of your mod is to cheat on servers (like auto grab stuff out of chest), then I'm afraid you shouldn't be doing it.

No, no!  I promises you this is not my intention!  I want to write a automatic Trader for a Clan on a Server. The guidelines from the Server allows Bots like this. It is not my Intention to Steel anything from a Player.

 

31 minutes ago, DavidM said:

I might have misunderstood your problem. I thought you meant to grab all items out of nearby inventories in a 11x11 area without opening them.

I have read over the part "without opening them". Excuse me please for that.

We want to trade more Items than a Inventory can grasp. We store each different item in a different chest and a item frame with the receptive item is in front of the chest. 

If the bot enters the our property he should make a inventory from our Items and message us from witch item we have to little. Than if someone buy something the Bot will pic this specific item out of its chest and give to the buyer. 

 

Again the Bot don't be able to Steel anything from other players.

 

Edited by Meeresgott
Link to comment
Share on other sites

So I'll rewrite my questions:

 

1. How can I open chest and transfer Items from the chest to the players inventory or. the other way round ?

2. How can I implement a trigger ( like a Event ) when the player enters a specific area ? or have I to check every tick if the player is in the area ? 

 

Links to others forum entries, will work to. I would be very pleased about one or the other code example. 

 

Link to comment
Share on other sites

Personally I don’t like people trying to do automation client-side, even if they say the server allows it.

It would be too easy to repurpose such a mod to steal items on servers, if such automation is allowed then the server owner should consider a sponge plugin or something.

This is my Forum Signature, I am currently attempting to transform it into a small guide for fixing easier issues using spoiler blocks to keep things tidy.

 

As the most common issue I feel I should put this outside the main bulk:

The only official source for Forge is https://files.minecraftforge.net, and the only site I trust for getting mods is CurseForge.

If you use any site other than these, please take a look at the StopModReposts project and install their browser extension, I would also advise running a virus scan.

 

For players asking for assistance with Forge please expand the spoiler below and read the appropriate section(s) in its/their entirety.

Spoiler

Logs (Most issues require logs to diagnose):

Spoiler

Please post logs using one of the following sites (Thank you Lumber Wizard for the list):

https://gist.github.com/100MB Requires member (Free)

https://pastebin.com/: 512KB as guest, 10MB as Pro ($$$)

https://hastebin.com/: 400KB

Do NOT use sites like Mediafire, Dropbox, OneDrive, Google Drive, or a site that has a countdown before offering downloads.

 

What to provide:

...for Crashes and Runtime issues:

Minecraft 1.14.4 and newer:

Post debug.log

Older versions:

Please update...

 

...for Installer Issues:

Post your installer log, found in the same place you ran the installer

This log will be called either installer.log or named the same as the installer but with .log on the end

Note for Windows users:

Windows hides file extensions by default so the installer may appear without the .jar extension then when the .log is added the log will appear with the .jar extension

 

Where to get it:

Mojang Launcher: When using the Mojang launcher debug.log is found in .minecraft\logs.

 

Curse/Overwolf: If you are using the Curse Launcher, their configurations break Forge's log settings, fortunately there is an easier workaround than I originally thought, this works even with Curse's installation of the Minecraft launcher as long as it is not launched THROUGH Twitch:

Spoiler
  1. Make sure you have the correct version of Forge installed (some packs are heavily dependent on one specific build of Forge)
  2. Make a launcher profile targeting this version of Forge.
  3. Set the launcher profile's GameDir property to the pack's instance folder (not the instances folder, the folder that has the pack's name on it).
  4. Now launch the pack through that profile and follow the "Mojang Launcher" instructions above.

Video:

Spoiler

 

 

 

or alternately, 

 

Fallback ("No logs are generated"):

If you don't see logs generated in the usual place, provide the launcher_log.txt from .minecraft

 

Server Not Starting:

Spoiler

If your server does not start or a command window appears and immediately goes away, run the jar manually and provide the output.

 

Reporting Illegal/Inappropriate Adfocus Ads:

Spoiler

Get a screenshot of the URL bar or copy/paste the whole URL into a thread on the General Discussion board with a description of the Ad.

Lex will need the Ad ID contained in that URL to report it to Adfocus' support team.

 

Posting your mod as a GitHub Repo:

Spoiler

When you have an issue with your mod the most helpful thing you can do when asking for help is to provide your code to those helping you. The most convenient way to do this is via GitHub or another source control hub.

When setting up a GitHub Repo it might seem easy to just upload everything, however this method has the potential for mistakes that could lead to trouble later on, it is recommended to use a Git client or to get comfortable with the Git command line. The following instructions will use the Git Command Line and as such they assume you already have it installed and that you have created a repository.

 

  1. Open a command prompt (CMD, Powershell, Terminal, etc).
  2. Navigate to the folder you extracted Forge’s MDK to (the one that had all the licenses in).
  3. Run the following commands:
    1. git init
    2. git remote add origin [Your Repository's URL]
      • In the case of GitHub it should look like: https://GitHub.com/[Your Username]/[Repo Name].git
    3. git fetch
    4. git checkout --track origin/master
    5. git stage *
    6. git commit -m "[Your commit message]"
    7. git push
  4. Navigate to GitHub and you should now see most of the files.
    • note that it is intentional that some are not synced with GitHub and this is done with the (hidden) .gitignore file that Forge’s MDK has provided (hence the strictness on which folder git init is run from)
  5. Now you can share your GitHub link with those who you are asking for help.

[Workaround line, please ignore]

 

Link to comment
Share on other sites

27 minutes ago, DaemonUmbra said:

Personally I don’t like people trying to do automation client-side, even if they say the server allows it.

This is your opinion. But can you say why ? Why you think my approach makes me to a kind of people that you don't like ? What is reprehensible by my approach ? 

 

27 minutes ago, DaemonUmbra said:

It would be too easy to repurpose such a mod to steal items on servers,

I'm playing on a CityBuild - Server the Bot have only "player"-rights. If I have "criminal" purposes how get the Bot the rights to open a Chest from a other player, when it isn't trusted at his plot? 

27 minutes ago, DaemonUmbra said:

if such automation is allowed then the server owner should consider a sponge plugin or something.

Yes this would be a lot easier for me ( I think ) but it isn't 

Edited by Meeresgott
Link to comment
Share on other sites

I don’t know much about creating automations on the client side with forge, but your idea seems very complicated as it requires:

- Automatically navigating the player to nearby chests.

- Identifying the item in the item frame.

- Open the chest and count the items in it.

 

Keep in mind that you are doing these on the client side.

To be honest, I wouldn’t attempt to create such an automation, as there are simply too much aspects to consider and too many things that could go wrong.

 

To be honest, I wouldn’t encourage you to make client-side bots in the first place.

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.

 

 

Link to comment
Share on other sites

Excuse my late response, I was away over the weekend. 

 

The algorithm behind is not a problem for me. I need an interface to control the player from the Client side ( something like increasePosition(x,z); jump(), increaseRotation(value), lookAt(x,y,z), doLeftClick() doRightClick() etc. ). And some kind of "Information-Container" a List where all Blocks/Entities are stored from the loaded Chunks around the player. And the knowlege how to correct open a Chest and interact with the Items witch it contains.

 

On 3/15/2019 at 9:39 AM, DavidM said:

Keep in mind that you are doing these on the client side.

To be honest, I wouldn’t attempt to create such an automation, as there are simply too much aspects to consider and too many things that could go wrong.

I do prefer this attempt, not because it is the "cleanest" way to integrate, I simply like the Idea of the "human" like navigation from a Bot and the Bot don't increase the server consuming resources it only blocks one Slot. To be honest, I know it is a dirty solution, but the idea from the Human like navigation etc. is so a great idea in my mind, that I have to implement this, even it doesn't come in action. I hope you can understand my motivation - childlike fascination. 

 

 

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • OLXTOTO: Platform Maxwin dan Gacor Terbesar Sepanjang Masa OLXTOTO telah menetapkan standar baru dalam dunia perjudian dengan menjadi platform terbesar untuk pengalaman gaming yang penuh kemenangan dan kegacoran, sepanjang masa. Dengan fokus yang kuat pada menyediakan permainan yang menghadirkan kesenangan tanpa batas dan peluang kemenangan besar, OLXTOTO telah menjadi pilihan utama bagi para pencinta judi berani di Indonesia. Maxwin: Mengejar Kemenangan Terbesar Maxwin bukan sekadar kata-kata kosong di OLXTOTO. Ini adalah konsep yang ditanamkan dalam setiap aspek permainan yang mereka tawarkan. Dari permainan slot yang menghadirkan jackpot besar hingga berbagai opsi permainan togel dengan hadiah fantastis, para pemain dapat memperoleh peluang nyata untuk mencapai kemenangan terbesar dalam setiap taruhan yang mereka lakukan. OLXTOTO tidak hanya menawarkan kesempatan untuk menang, tetapi juga menjadi wadah bagi para pemain untuk meraih impian mereka dalam perjudian yang berani. Gacor: Keberuntungan yang Tak Tertandingi Keberuntungan seringkali menjadi faktor penting dalam perjudian, dan OLXTOTO memahami betul akan hal ini. Dengan berbagai strategi dan analisis yang disediakan, pemain dapat menemukan peluang gacor yang tidak tertandingi dalam setiap taruhan. Dari hasil togel yang tepat hingga putaran slot yang menguntungkan, OLXTOTO memastikan bahwa setiap taruhan memiliki potensi untuk menjadi momen yang mengubah hidup. Inovasi dan Kualitas Tanpa Batas Tidak puas dengan prestasi masa lalu, OLXTOTO terus berinovasi untuk memberikan pengalaman gaming terbaik kepada para pengguna. Dengan menggabungkan teknologi terbaru dengan desain yang ramah pengguna, platform ini menyajikan antarmuka yang mudah digunakan tanpa mengorbankan kualitas. Setiap pembaruan dan peningkatan dilakukan dengan tujuan tunggal: memberikan pengalaman gaming yang tanpa kompromi kepada setiap pengguna. Komitmen Terhadap Kepuasan Pelanggan Di balik kesuksesan OLXTOTO adalah komitmen mereka terhadap kepuasan pelanggan. Tim dukungan pelanggan yang profesional siap membantu para pemain dalam setiap langkah perjalanan gaming mereka. Dari pertanyaan teknis hingga bantuan dengan transaksi keuangan, OLXTOTO selalu siap memberikan pelayanan terbaik kepada para pengguna mereka. Penutup: Mengukir Sejarah dalam Dunia Perjudian Daring OLXTOTO bukan sekadar platform perjudian berani biasa. Ini adalah ikon dalam dunia perjudian daring Indonesia, sebuah destinasi yang menyatukan kemenangan dan keberuntungan dalam satu tempat yang mengasyikkan. Dengan komitmen mereka terhadap kualitas, inovasi, dan kepuasan pelanggan, OLXTOTO terus mengukir sejarah dalam perjudian dunia berani, menjadi nama yang tak terpisahkan dari pengalaman gaming terbaik. Bersiaplah untuk mengalami sensasi kemenangan terbesar dan keberuntungan tak terduga di OLXTOTO - platform maxwin dan gacor terbesar sepanjang masa.
    • OLXTOTO - Bandar Togel Online Dan Slot Terbesar Di Indonesia OLXTOTO telah lama dikenal sebagai salah satu bandar online terkemuka di Indonesia, terutama dalam pasar togel dan slot. Dengan reputasi yang solid dan pengalaman bertahun-tahun, OLXTOTO menawarkan platform yang aman dan andal bagi para penggemar perjudian daring. DAFTAR OLXTOTO DISINI DAFTAR OLXTOTO DISINI DAFTAR OLXTOTO DISINI Beragam Permainan Togel Sebagai bandar online terbesar di Indonesia, OLXTOTO menawarkan berbagai macam permainan togel. Mulai dari togel Singapura, togel Hongkong, hingga togel Sidney, pemain memiliki banyak pilihan untuk mencoba keberuntungan mereka. Dengan sistem yang transparan dan hasil yang adil, OLXTOTO memastikan bahwa setiap taruhan diproses dengan cepat dan tanpa keadaan. Slot Online Berkualitas Selain togel, OLXTOTO juga menawarkan berbagai permainan slot online yang menarik. Dari slot klasik hingga slot video modern, pemain dapat menemukan berbagai opsi permainan yang sesuai dengan preferensi mereka. Dengan grafis yang memukau dan fitur bonus yang menggiurkan, pengalaman bermain slot di OLXTOTO tidak akan pernah membosankan. Keamanan dan Kepuasan Pelanggan Terjamin Keamanan dan kepuasan pelanggan merupakan prioritas utama di OLXTOTO. Mereka menggunakan teknologi enkripsi terbaru untuk melindungi data pribadi dan keuangan para pemain. Tim dukungan pelanggan yang ramah dan responsif siap membantu pemain dengan setiap pertanyaan atau masalah yang mereka hadapi. Promosi dan Bonus Menarik OLXTOTO sering menawarkan promosi dan bonus menarik kepada para pemainnya. Mulai dari bonus selamat datang hingga bonus deposit, pemain memiliki kesempatan untuk meningkatkan kemenangan mereka dengan memanfaatkan berbagai penawaran yang tersedia. Penutup Dengan reputasi yang solid, beragam permainan berkualitas, dan komitmen terhadap keamanan dan kepuasan pelanggan, OLXTOTO tetap menjadi salah satu pilihan utama bagi para pecinta judi online di Indonesia. Jika Anda mencari pengalaman berjudi yang menyenangkan dan terpercaya, OLXTOTO layak dipertimbangkan.
    • I have been having a problem with minecraft forge. Any version. Everytime I try to launch it it always comes back with error code 1. I have tried launching from curseforge, from the minecraft launcher. I have also tried resetting my computer to see if that would help. It works on my other computer but that one is too old to run it properly. I have tried with and without mods aswell. Fabric works, optifine works, and MultiMC works aswell but i want to use forge. If you can help with this issue please DM on discord my # is Haole_Dawg#6676
    • Add the latest.log (logs-folder) with sites like https://paste.ee/ and paste the link to it here  
    • I have no idea how a UI mod crashed a whole world but HUGE props to you man, just saved me +2 months of progress!  
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.