[PR #631] [DNM] Initial Astreaus Dialogue System Rip #12398

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

📋 Pull Request Information

Original PR: https://github.com/2006-Scape/2006Scape/pull/631
Author: @Dark98
Created: 2/26/2023
Status: 🔄 Open

Base: masterHead: dialogue-plugin-system


📝 Commits (1)

  • b706fd3 Initial Astreaus Dialogue System Rip

📊 Changes

16 files changed (+1431 additions, -3 deletions)

View changed files

2006Scape Server/plugins/plugin/buttons/DialogueOptions.java (+53 -0)
2006Scape Server/plugins/plugin/npc/shopkeeper/FirstClick.java (+28 -0)
2006Scape Server/plugins/plugin/npc/shopkeeper/GeneralStoreDialogue.java (+22 -0)
2006Scape Server/src/main/java/com/rs2/game/dialog/Chainable.java (+13 -0)
2006Scape Server/src/main/java/com/rs2/game/dialog/Dialogue.java (+45 -0)
2006Scape Server/src/main/java/com/rs2/game/dialog/DialogueFactory.java (+754 -0)
2006Scape Server/src/main/java/com/rs2/game/dialog/Expression.java (+81 -0)
2006Scape Server/src/main/java/com/rs2/game/dialog/NpcDialogue.java (+112 -0)
2006Scape Server/src/main/java/com/rs2/game/dialog/OptionDialogue.java (+171 -0)
2006Scape Server/src/main/java/com/rs2/game/dialog/PlayerDialogue.java (+67 -0)
2006Scape Server/src/main/java/com/rs2/game/dialog/StatementDialogue.java (+41 -0)
📝 2006Scape Server/src/main/java/com/rs2/game/dialogues/Dialogue.java (+7 -0)
📝 2006Scape Server/src/main/java/com/rs2/game/dialogues/DialogueHandler.java (+1 -0)
📝 2006Scape Server/src/main/java/com/rs2/game/players/Player.java (+34 -2)
📝 2006Scape Server/src/main/java/com/rs2/game/shops/Shops.java (+1 -1)
📝 2006Scape Server/src/main/java/com/rs2/net/packets/impl/Walking.java (+1 -0)

📄 Description

No description provided


🔄 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/631 **Author:** [@Dark98](https://github.com/Dark98) **Created:** 2/26/2023 **Status:** 🔄 Open **Base:** `master` ← **Head:** `dialogue-plugin-system` --- ### 📝 Commits (1) - [`b706fd3`](https://github.com/2006-Scape/2006Scape/commit/b706fd313705b6b3e682a151eb117577d41cb6b6) Initial Astreaus Dialogue System Rip ### 📊 Changes **16 files changed** (+1431 additions, -3 deletions) <details> <summary>View changed files</summary> ➕ `2006Scape Server/plugins/plugin/buttons/DialogueOptions.java` (+53 -0) ➕ `2006Scape Server/plugins/plugin/npc/shopkeeper/FirstClick.java` (+28 -0) ➕ `2006Scape Server/plugins/plugin/npc/shopkeeper/GeneralStoreDialogue.java` (+22 -0) ➕ `2006Scape Server/src/main/java/com/rs2/game/dialog/Chainable.java` (+13 -0) ➕ `2006Scape Server/src/main/java/com/rs2/game/dialog/Dialogue.java` (+45 -0) ➕ `2006Scape Server/src/main/java/com/rs2/game/dialog/DialogueFactory.java` (+754 -0) ➕ `2006Scape Server/src/main/java/com/rs2/game/dialog/Expression.java` (+81 -0) ➕ `2006Scape Server/src/main/java/com/rs2/game/dialog/NpcDialogue.java` (+112 -0) ➕ `2006Scape Server/src/main/java/com/rs2/game/dialog/OptionDialogue.java` (+171 -0) ➕ `2006Scape Server/src/main/java/com/rs2/game/dialog/PlayerDialogue.java` (+67 -0) ➕ `2006Scape Server/src/main/java/com/rs2/game/dialog/StatementDialogue.java` (+41 -0) 📝 `2006Scape Server/src/main/java/com/rs2/game/dialogues/Dialogue.java` (+7 -0) 📝 `2006Scape Server/src/main/java/com/rs2/game/dialogues/DialogueHandler.java` (+1 -0) 📝 `2006Scape Server/src/main/java/com/rs2/game/players/Player.java` (+34 -2) 📝 `2006Scape Server/src/main/java/com/rs2/game/shops/Shops.java` (+1 -1) 📝 `2006Scape Server/src/main/java/com/rs2/net/packets/impl/Walking.java` (+1 -0) </details> ### 📄 Description _No description provided_ --- <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-05 12:22:41 +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#12398