[PR #503] [MERGED] Implement Party Room, A bunch of client side changes, Other stuff #11404

Open
opened 2026-06-04 12:22:20 +00:00 by Dark98 · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/2006-Scape/2006Scape/pull/503
Author: @RedSparr0w
Created: 9/26/2021
Status: Merged
Merged: 9/28/2021
Merged by: @Dark98

Base: masterHead: temp-client


📝 Commits (10+)

📊 Changes

51 files changed (+1760 additions, -721 deletions)

View changed files

📝 .gitignore (+5 -0)
📝 2006Scape Client/src/main/java/ClientSettings.java (+1 -1)
📝 2006Scape Client/src/main/java/DrawingArea.java (+75 -75)
📝 2006Scape Client/src/main/java/EntityDef.java (+4 -2)
📝 2006Scape Client/src/main/java/Game.java (+884 -290)
📝 2006Scape Client/src/main/java/Item.java (+2 -2)
📝 2006Scape Client/src/main/java/ItemDef.java (+3 -3)
📝 2006Scape Client/src/main/java/Model.java (+4 -1)
📝 2006Scape Client/src/main/java/ObjectDef.java (+3 -1)
📝 2006Scape Client/src/main/java/RSApplet.java (+7 -1)
📝 2006Scape Client/src/main/java/RSInterface.java (+0 -2)
📝 2006Scape Client/src/main/java/Signlink.java (+12 -12)
📝 2006Scape Client/src/main/java/TextDrawingArea.java (+20 -16)
📝 2006Scape Client/src/main/java/WorldController.java (+32 -31)
📝 2006Scape Server/data/cfg/npcDefinitions.xml (+1 -1)
📝 2006Scape Server/data/cfg/spawns.json (+33 -3)
📝 2006Scape Server/src/main/java/com/rs2/GameConstants.java (+4 -4)
📝 2006Scape Server/src/main/java/com/rs2/GameEngine.java (+1 -0)
📝 2006Scape Server/src/main/java/com/rs2/game/bots/Bot.java (+18 -4)
📝 2006Scape Server/src/main/java/com/rs2/game/content/combat/magic/SpellTeleport.java (+1 -1)

...and 31 more files

📄 Description

Server Changes:
Fully implement Party Room
Fix required level for chopping Dramen tree
Update all the Discord links to be the same as eachother
Fix teleport location for Dareeyak
Allow swamp boaty to work
Ectophial teleport/refill
Ectofuntus more bonemeal types

Client Changes:
Option to show player names above their heads
Show player shops as blue icons on minimap
Show player shops as (shop)
Show text above ground items if above specified value
Update debug menu info
Add basic experience tracker
Add zooming
Add draw distance setting
Add item/npc/object searching (with ::search command)

image
image
image
image


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/2006-Scape/2006Scape/pull/503 **Author:** [@RedSparr0w](https://github.com/RedSparr0w) **Created:** 9/26/2021 **Status:** ✅ Merged **Merged:** 9/28/2021 **Merged by:** [@Dark98](https://github.com/Dark98) **Base:** `master` ← **Head:** `temp-client` --- ### 📝 Commits (10+) - [`0068dad`](https://github.com/2006-Scape/2006Scape/commit/0068dad3f6cd9f8e478c1656f0c8e58c0166a127) Fixup Discord links - [`8c0f64b`](https://github.com/2006-Scape/2006Scape/commit/8c0f64bae68378e12ce3b8868099560053d383ab) Fix required level to chop Dramen tree - [`9c7d786`](https://github.com/2006-Scape/2006Scape/commit/9c7d786b50fd70a81e69dc978c81639f6f4f8364) More Discord link fixes - [`c52c5a3`](https://github.com/2006-Scape/2006Scape/commit/c52c5a361c9cd70565fffe8c8b08add2e72d4c7a) Show bots as (store) - [`1d865ab`](https://github.com/2006-Scape/2006Scape/commit/1d865ab783f4a42791794701bf4ea8e0093e7378) Fixup port - [`3dbfcce`](https://github.com/2006-Scape/2006Scape/commit/3dbfcceed0984bfe1c8349a31d31d093b4fb978b) Fixup report handler - [`c6fa0aa`](https://github.com/2006-Scape/2006Scape/commit/c6fa0aab0146a7e9352ebafcff088e3341dfd484) Some client changes - [`caed2a9`](https://github.com/2006-Scape/2006Scape/commit/caed2a97087d72db31e76c9bb8d98057df761690) minor changes - [`deea755`](https://github.com/2006-Scape/2006Scape/commit/deea755bb5fc9ba3ac4e4805f6b6c36d7e46078a) Show item value on ground - [`c39b148`](https://github.com/2006-Scape/2006Scape/commit/c39b1483b3a0dd300da1edd438833a046da8485f) Mark stores and players differently on mini map ### 📊 Changes **51 files changed** (+1760 additions, -721 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+5 -0) 📝 `2006Scape Client/src/main/java/ClientSettings.java` (+1 -1) 📝 `2006Scape Client/src/main/java/DrawingArea.java` (+75 -75) 📝 `2006Scape Client/src/main/java/EntityDef.java` (+4 -2) 📝 `2006Scape Client/src/main/java/Game.java` (+884 -290) 📝 `2006Scape Client/src/main/java/Item.java` (+2 -2) 📝 `2006Scape Client/src/main/java/ItemDef.java` (+3 -3) 📝 `2006Scape Client/src/main/java/Model.java` (+4 -1) 📝 `2006Scape Client/src/main/java/ObjectDef.java` (+3 -1) 📝 `2006Scape Client/src/main/java/RSApplet.java` (+7 -1) 📝 `2006Scape Client/src/main/java/RSInterface.java` (+0 -2) 📝 `2006Scape Client/src/main/java/Signlink.java` (+12 -12) 📝 `2006Scape Client/src/main/java/TextDrawingArea.java` (+20 -16) 📝 `2006Scape Client/src/main/java/WorldController.java` (+32 -31) 📝 `2006Scape Server/data/cfg/npcDefinitions.xml` (+1 -1) 📝 `2006Scape Server/data/cfg/spawns.json` (+33 -3) 📝 `2006Scape Server/src/main/java/com/rs2/GameConstants.java` (+4 -4) 📝 `2006Scape Server/src/main/java/com/rs2/GameEngine.java` (+1 -0) 📝 `2006Scape Server/src/main/java/com/rs2/game/bots/Bot.java` (+18 -4) 📝 `2006Scape Server/src/main/java/com/rs2/game/content/combat/magic/SpellTeleport.java` (+1 -1) _...and 31 more files_ </details> ### 📄 Description Server Changes: Fully implement Party Room Fix required level for chopping Dramen tree Update all the Discord links to be the same as eachother Fix teleport location for Dareeyak Allow swamp boaty to work Ectophial teleport/refill Ectofuntus more bonemeal types Client Changes: Option to show player names above their heads Show player shops as blue icons on minimap Show player shops as (shop) Show text above ground items if above specified value Update debug menu info Add basic experience tracker Add zooming Add draw distance setting Add item/npc/object searching (with `::search` command) ![image](https://user-images.githubusercontent.com/7288322/134801683-ff3649ae-192e-40c0-a43d-f6919c372cb9.png) ![image](https://user-images.githubusercontent.com/7288322/134802333-4c51756f-635b-410b-bb7e-d68397e8e0ae.png) ![image](https://user-images.githubusercontent.com/7288322/134803509-075e3087-c3d9-4c26-9d11-c452862cd325.png) ![image](https://user-images.githubusercontent.com/7288322/134827297-211e21eb-83cd-41fd-8f0e-f90724a1d324.png) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Dark98 added the pull-request label 2026-06-04 12:22:20 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: 2006-Scape/2006Scape#11404