Closed mdenials closed 7 months ago
The update introduces the TelekinesisHack
, a new feature in the game modification that enables players to collect items from a distance. This hack simplifies the process of gathering items by allowing players to attract nearby item entities towards themselves without needing to physically move closer. It enhances gameplay efficiency by including a filter mechanism to selectively target and retrieve items.
File | Change Summary |
---|---|
src/.../hacks/TelekinesisHack.java |
Added TelekinesisHack to collect items from a distance with item filtering capability. |
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
Don't forget to add this code to EntityUtils:
public static Stream
Collecting items on far distance It works according to this principle: the game checks whether an object is located in the specified zone from the player, and if so, it is automatically selected.
This function uses this feature by sending packets of the player's position to the lying objects
Proof of work: the source code is in front of you, test as much as you want