Devlog #1 – Project Setup & Early Experiments (yes i forgot to click “add Devlog” earlier)
Started by setting up the project in IntelliJ. Hit a roadblock: the Minecraft plugin I’m using doesn’t fully support newer versions, so I downgraded from 1.12 to 1.8. That required some manual configuration and test runs, but now the project loads correctly and is ready for development.
Devlog #2 – Teleport Requests System
Started adding gameplay features. Implemented a basic teleport request system:
- Players can send teleport requests to others.
- Requests can be accepted or denied.
- Added
tpaccept command to accept requests.
The system can handle multiple simultaneous requests. Teleportation requires special items called Teleportation Totems, represented as food items with teleport properties.
Next Steps
- Add a user-friendly GUI.
- Add crafting for Teleportation Totems.
- Introduce NPC traders so players can exchange rare resources for totems (lasagna, pork chops, pizza, etc.).
Goal: make teleportation part of gameplay, not just a command from Forge.