From cf3b37d34c3a818a8c4f99ef91c59766ed3dacfc Mon Sep 17 00:00:00 2001 From: dg <dg@51575b47-30f0-44d4-a5cc-537603b46e54> Date: Sun, 21 Aug 2011 11:54:34 +0000 Subject: [PATCH] Sher'Tul control orb text correctly translates when you speak Sher'Tul git-svn-id: http://svn.net-core.org/repos/t-engine4@4202 51575b47-30f0-44d4-a5cc-537603b46e54 --- .../modules/tome/data/chats/shertul-fortress-command-orb.lua | 5 +++-- game/modules/tome/data/zones/shertul-fortress/grids.lua | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/game/modules/tome/data/chats/shertul-fortress-command-orb.lua b/game/modules/tome/data/chats/shertul-fortress-command-orb.lua index c68977ad51..c9bcf35bc0 100644 --- a/game/modules/tome/data/chats/shertul-fortress-command-orb.lua +++ b/game/modules/tome/data/chats/shertul-fortress-command-orb.lua @@ -20,11 +20,12 @@ local has_rod = function(npc, player) return player:findInAllInventoriesBy("define_as", "ROD_OF_RECALL") and not player:isQuestStatus("shertul-fortress", engine.Quest.COMPLETED, "butler") end +local read = player:attr("speaks_shertul") newChat{ id="welcome", text = [[*#LIGHT_GREEN#This orb seems to represent the world of Eyal as a whole. It is also probably used for controlling the fortress. -You do not understand the inscriptions there.#WHITE#* -Rokzz krilt copru.]], +]]..(not read and [[You do not understand the inscriptions there.#WHITE#* +#{italic}#"Rokzan krilt copru."#{normal}#]] or [[#WHITE#*#{italic}#"Insert control rod."#{normal}#]]), answers = { {"[Examine the orb]", jump="examine", cond=has_rod}, -- {"[Fly the fortress]", action=function(npc, player) player:hasQuest("shertul-fortress"):fly() end}, diff --git a/game/modules/tome/data/zones/shertul-fortress/grids.lua b/game/modules/tome/data/zones/shertul-fortress/grids.lua index f261cf6c64..df04a5e89a 100644 --- a/game/modules/tome/data/zones/shertul-fortress/grids.lua +++ b/game/modules/tome/data/zones/shertul-fortress/grids.lua @@ -43,7 +43,7 @@ newEntity{ always_remember = true, block_move = function(self, x, y, e, act, couldpass) if e and e.player and act then - local chat = require("engine.Chat").new("shertul-fortress-command-orb", self, e) + local chat = require("engine.Chat").new("shertul-fortress-command-orb", self, e, {player=e}) chat:invoke() end return true -- GitLab