From c7922ee4062560daa60812c4470fccce3ccd5db0 Mon Sep 17 00:00:00 2001 From: BoerBart <b.denboer@hotmail.com> Date: Mon, 28 Aug 2023 10:20:18 +0200 Subject: [PATCH 1/3] Changed GPDT to RPDT --- .../region/karamja/quest/tribaltotem/CrompertyDialogue.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Server/src/main/content/region/karamja/quest/tribaltotem/CrompertyDialogue.kt b/Server/src/main/content/region/karamja/quest/tribaltotem/CrompertyDialogue.kt index f088c3aad9..dd473e825f 100644 --- a/Server/src/main/content/region/karamja/quest/tribaltotem/CrompertyDialogue.kt +++ b/Server/src/main/content/region/karamja/quest/tribaltotem/CrompertyDialogue.kt @@ -58,9 +58,9 @@ class CrompertyDialogue(player: Player? = null) : core.game.dialogue.DialoguePlu 15 -> npcl(core.game.dialogue.FacialExpression.THINKING,"Well...Hmm. I would guess somewhere between here and the Wizards' Tower in Misthalin.").also { stage++ } 16 -> npcl(core.game.dialogue.FacialExpression.HAPPY,"All I know is that it hasn't got there yet as the wizards there would have contacted me.").also { stage++ } - 17 -> npcl(core.game.dialogue.FacialExpression.THINKING,"I'm using the GPDT for delivery. They assured me it would be delivered promptly.").also { stage++ } - 18 -> playerl(core.game.dialogue.FacialExpression.ASKING,"Who are the GPDT?").also { stage++ } - 19 -> npcl(core.game.dialogue.FacialExpression.HAPPY,"The Gielinor Parcel Delivery Team. They come very highly recommended.").also { stage++ } + 17 -> npcl(core.game.dialogue.FacialExpression.THINKING,"I'm using the RPDT for delivery. They assured me it would be delivered promptly.").also { stage++ } + 18 -> playerl(core.game.dialogue.FacialExpression.ASKING,"Who are the RPDT?").also { stage++ } + 19 -> npcl(core.game.dialogue.FacialExpression.HAPPY,"The Runescape Parcel Delivery Team. They come very highly recommended.").also { stage++ } 20 -> npcl(core.game.dialogue.FacialExpression.HAPPY,"Their motto is: \"We aim to deliver your stuff at some point after you have paid us!\"").also { stage = 1000 } 25 -> npcl(core.game.dialogue.FacialExpression.HAPPY,"By all means! I'm afraid I can't give you any specifics as to where you will come out however. Presumably wherever the other block is located.").also { stage++ } -- GitLab From 99b95faa71f7a8b0599c59483d7cfaea567ef7ca Mon Sep 17 00:00:00 2001 From: BoerBart <b.denboer@hotmail.com> Date: Mon, 28 Aug 2023 16:21:08 +0200 Subject: [PATCH 2/3] Updated GPDT to RPDT --- .../karamja/quest/tribaltotem/GPDTEmployeeDialogue.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Server/src/main/content/region/karamja/quest/tribaltotem/GPDTEmployeeDialogue.kt b/Server/src/main/content/region/karamja/quest/tribaltotem/GPDTEmployeeDialogue.kt index 81af76e12a..6a4c0cbf23 100644 --- a/Server/src/main/content/region/karamja/quest/tribaltotem/GPDTEmployeeDialogue.kt +++ b/Server/src/main/content/region/karamja/quest/tribaltotem/GPDTEmployeeDialogue.kt @@ -7,9 +7,9 @@ import core.plugin.Initializable import org.rs09.consts.NPCs @Initializable -class GPDTEmployeeDialogue(player: Player? = null) : DialoguePlugin(player) { +class RPDTEmployeeDialogue(player: Player? = null) : DialoguePlugin(player) { override fun open(vararg args: Any?): Boolean { - npcl(FacialExpression.HAPPY,"Welcome to G.P.D.T.!") + npcl(FacialExpression.HAPPY,"Welcome to R.P.D.T.!") stage = if(player.questRepository.getStage("Tribal Totem") == 20){ 5 }else 0 @@ -32,7 +32,7 @@ class GPDTEmployeeDialogue(player: Player? = null) : DialoguePlugin(player) { } override fun newInstance(player: Player?): DialoguePlugin { - return GPDTEmployeeDialogue(player) + return RPDTEmployeeDialogue(player) } override fun getIds(): IntArray { -- GitLab From f53f579e622e00206d104506295ebfc8fbbc426f Mon Sep 17 00:00:00 2001 From: BoerBart <b.denboer@hotmail.com> Date: Mon, 28 Aug 2023 16:25:25 +0200 Subject: [PATCH 3/3] Renamed the class --- .../{GPDTEmployeeDialogue.kt => RPDTEmployeeDialogue.kt} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Server/src/main/content/region/karamja/quest/tribaltotem/{GPDTEmployeeDialogue.kt => RPDTEmployeeDialogue.kt} (100%) diff --git a/Server/src/main/content/region/karamja/quest/tribaltotem/GPDTEmployeeDialogue.kt b/Server/src/main/content/region/karamja/quest/tribaltotem/RPDTEmployeeDialogue.kt similarity index 100% rename from Server/src/main/content/region/karamja/quest/tribaltotem/GPDTEmployeeDialogue.kt rename to Server/src/main/content/region/karamja/quest/tribaltotem/RPDTEmployeeDialogue.kt -- GitLab