[PR #368] [MERGED] Various things enjoy! #8088

Closed
opened 2026-05-31 12:21:50 +00:00 by Dark98 · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/2006-Scape/2006Scape/pull/368
Author: @mrextremez
Created: 1/27/2020
Status: Merged
Merged: 1/27/2020
Merged by: @dginovker

Base: masterHead: whynot


📝 Commits (3)

📊 Changes

56 files changed (+1880 additions, -1224 deletions)

View changed files

📝 2006Redone Client/bin/Game.class (+0 -0)
📝 2006Redone Client/src/Game.java (+4 -5)
📝 2006Redone Server/data/cfg/npc.cfg (+138 -121)
📝 2006Redone Server/src/com/rebotted/game/content/combat/Specials.java (+1 -3)
📝 2006Redone Server/src/com/rebotted/game/content/combat/magic/Enchanting.java (+2 -3)
📝 2006Redone Server/src/com/rebotted/game/content/combat/magic/MagicTeleports.java (+0 -17)
📝 2006Redone Server/src/com/rebotted/game/content/consumables/Food.java (+0 -1)
📝 2006Redone Server/src/com/rebotted/game/content/skills/SkillHandler.java (+1 -1)
📝 2006Redone Server/src/com/rebotted/game/content/skills/cooking/Cooking.java (+14 -14)
2006Redone Server/src/com/rebotted/game/content/skills/cooking/DairyChurn.java (+114 -0)
📝 2006Redone Server/src/com/rebotted/game/content/skills/core/Mining.java (+10 -10)
📝 2006Redone Server/src/com/rebotted/game/content/skills/crafting/SoftClay.java (+22 -24)
📝 2006Redone Server/src/com/rebotted/game/content/skills/crafting/Spinning.java (+19 -22)
📝 2006Redone Server/src/com/rebotted/game/content/skills/crafting/Tanning.java (+5 -9)
2006Redone Server/src/com/rebotted/game/content/skills/prayer/Ectofuntus.java (+238 -0)
📝 2006Redone Server/src/com/rebotted/game/content/skills/prayer/Prayer.java (+1 -1)
📝 2006Redone Server/src/com/rebotted/game/content/skills/runecrafting/Runecrafting.java (+17 -3)
2006Redone Server/src/com/rebotted/game/content/skills/runecrafting/Tiaras.java (+41 -0)
📝 2006Redone Server/src/com/rebotted/game/content/skills/thieving/Pickpocket.java (+3 -1)
2006Redone Server/src/com/rebotted/game/content/skills/woodcutting/BirdNest.java (+87 -0)

...and 36 more files

📄 Description

  • Added dairy churning
  • Fixed soft clay so it uses 1 at a time
  • Fixed spinning so it uses 1 at a time
  • Added working cooking gloves
  • Can no longer cook from far away
  • Fixed mining animation glitch
  • Fixed rune essence spam
  • Added welcome messages to login screen that randomize
  • Added fix for tanning saying you do not have enough coins when you did
  • Added working ecofuntus prayer training
  • Added tiara binding and usage
  • Added proper locate on rune talismans
  • Can no longer pickpocket npc as it is dying
  • No longer thieve men when trying to talk to them
  • Improved birds nest to match accurately to rs
  • Added desert heating system
  • Cleaned up dialogue handler some
  • Added chat emotes for dialogues
  • Did some cleaning up
  • Every possible item that has an empty option can now be emptied
  • Cleaned up sheep shearing and improved it
  • Added man npc dialogue
  • Added back npc facing
  • Added random messages when logging in on login screen
  • Added player and staff player count for discord and ingame commands
  • Improving the hopping stones at lighthouse, better, but not perfect
  • You will no longer ever login and be at 0, 0 coordinates you will be automically moved to lumbridge
  • Added a few new npc definitions
  • Disabled rune mist requirement for admins
  • Added getId command for admins to easily find item item ids
  • Added working global chat
    [::yell, ::hideyell will hide yells, 30 second delay for regular players, can not yell if you are muted or if word is blocked by filter, includes saving]
  • Made a few changes to weight (should hopefully fix some of the weight bugs)

closes #366
closes #358
closes #331
closes #356
closes #234
closes #270
closes #309


🔄 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/368 **Author:** [@mrextremez](https://github.com/mrextremez) **Created:** 1/27/2020 **Status:** ✅ Merged **Merged:** 1/27/2020 **Merged by:** [@dginovker](https://github.com/dginovker) **Base:** `master` ← **Head:** `whynot` --- ### 📝 Commits (3) - [`eb1c304`](https://github.com/2006-Scape/2006Scape/commit/eb1c304a30c61742161604cadc54314e08aed2e5) Various things enjoy! - [`909c502`](https://github.com/2006-Scape/2006Scape/commit/909c50299f7283b52eeb3e6893f4a483aa87ba48) quick patch - [`e837833`](https://github.com/2006-Scape/2006Scape/commit/e8378334c7edecfd6874b354e2add35f85d0ccc1) Cooking distance patch ### 📊 Changes **56 files changed** (+1880 additions, -1224 deletions) <details> <summary>View changed files</summary> 📝 `2006Redone Client/bin/Game.class` (+0 -0) 📝 `2006Redone Client/src/Game.java` (+4 -5) 📝 `2006Redone Server/data/cfg/npc.cfg` (+138 -121) 📝 `2006Redone Server/src/com/rebotted/game/content/combat/Specials.java` (+1 -3) 📝 `2006Redone Server/src/com/rebotted/game/content/combat/magic/Enchanting.java` (+2 -3) 📝 `2006Redone Server/src/com/rebotted/game/content/combat/magic/MagicTeleports.java` (+0 -17) 📝 `2006Redone Server/src/com/rebotted/game/content/consumables/Food.java` (+0 -1) 📝 `2006Redone Server/src/com/rebotted/game/content/skills/SkillHandler.java` (+1 -1) 📝 `2006Redone Server/src/com/rebotted/game/content/skills/cooking/Cooking.java` (+14 -14) ➕ `2006Redone Server/src/com/rebotted/game/content/skills/cooking/DairyChurn.java` (+114 -0) 📝 `2006Redone Server/src/com/rebotted/game/content/skills/core/Mining.java` (+10 -10) 📝 `2006Redone Server/src/com/rebotted/game/content/skills/crafting/SoftClay.java` (+22 -24) 📝 `2006Redone Server/src/com/rebotted/game/content/skills/crafting/Spinning.java` (+19 -22) 📝 `2006Redone Server/src/com/rebotted/game/content/skills/crafting/Tanning.java` (+5 -9) ➕ `2006Redone Server/src/com/rebotted/game/content/skills/prayer/Ectofuntus.java` (+238 -0) 📝 `2006Redone Server/src/com/rebotted/game/content/skills/prayer/Prayer.java` (+1 -1) 📝 `2006Redone Server/src/com/rebotted/game/content/skills/runecrafting/Runecrafting.java` (+17 -3) ➕ `2006Redone Server/src/com/rebotted/game/content/skills/runecrafting/Tiaras.java` (+41 -0) 📝 `2006Redone Server/src/com/rebotted/game/content/skills/thieving/Pickpocket.java` (+3 -1) ➕ `2006Redone Server/src/com/rebotted/game/content/skills/woodcutting/BirdNest.java` (+87 -0) _...and 36 more files_ </details> ### 📄 Description - Added dairy churning - Fixed soft clay so it uses 1 at a time - Fixed spinning so it uses 1 at a time - Added working cooking gloves - Can no longer cook from far away - Fixed mining animation glitch - Fixed rune essence spam - Added welcome messages to login screen that randomize - Added fix for tanning saying you do not have enough coins when you did - Added working ecofuntus prayer training - Added tiara binding and usage - Added proper locate on rune talismans - Can no longer pickpocket npc as it is dying - No longer thieve men when trying to talk to them - Improved birds nest to match accurately to rs - Added desert heating system - Cleaned up dialogue handler some - Added chat emotes for dialogues - Did some cleaning up - Every possible item that has an empty option can now be emptied - Cleaned up sheep shearing and improved it - Added man npc dialogue - Added back npc facing - Added random messages when logging in on login screen - Added player and staff player count for discord and ingame commands - Improving the hopping stones at lighthouse, better, but not perfect - You will no longer ever login and be at 0, 0 coordinates you will be automically moved to lumbridge - Added a few new npc definitions - Disabled rune mist requirement for admins - Added getId command for admins to easily find item item ids - Added working global chat [::yell, ::hideyell will hide yells, 30 second delay for regular players, can not yell if you are muted or if word is blocked by filter, includes saving] - Made a few changes to weight (should hopefully fix some of the weight bugs) closes #366 closes #358 closes #331 closes #356 closes #234 closes #270 closes #309 --- <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-05-31 12:21:50 +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#8088