Skip to content
Snippets Groups Projects
Commit b63a38bc authored by dg's avatar dg
Browse files

bignews makes a log

git-svn-id: http://svn.net-core.org/repos/t-engine4@6446 51575b47-30f0-44d4-a5cc-537603b46e54
parent 38b93dad
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,11 @@ function _M:init(font, size)
end
function _M:say(time, txt, ...)
self:saySimple(time, txt, ...)
game.logPlayer(game.player, "%s", txt:toString())
end
function _M:saySimple(time, txt, ...)
txt = txt:format(...)
self.time = time or 60
self.max_time = self.time
......
......@@ -1462,22 +1462,22 @@ end
------ Quest Events
function _M:on_quest_grant(quest)
game.logPlayer(game.player, "#LIGHT_GREEN#Accepted quest '%s'! #WHITE#(Press 'j' to see the quest log)", quest.name)
game.bignews:say(60, "#LIGHT_GREEN#Accepted quest '%s'!", quest.name)
game.bignews:saySimple(60, "#LIGHT_GREEN#Accepted quest '%s'!", quest.name)
end
function _M:on_quest_status(quest, status, sub)
if sub then
game.logPlayer(game.player, "#LIGHT_GREEN#Quest '%s' status updated! #WHITE#(Press 'j' to see the quest log)", quest.name)
game.bignews:say(60, "#LIGHT_GREEN#Quest '%s' updated!", quest.name)
game.bignews:saySimple(60, "#LIGHT_GREEN#Quest '%s' updated!", quest.name)
elseif status == engine.Quest.COMPLETED then
game.logPlayer(game.player, "#LIGHT_GREEN#Quest '%s' completed! #WHITE#(Press 'j' to see the quest log)", quest.name)
game.bignews:say(60, "#LIGHT_GREEN#Quest '%s' completed!", quest.name)
game.bignews:saySimple(60, "#LIGHT_GREEN#Quest '%s' completed!", quest.name)
elseif status == engine.Quest.DONE then
game.logPlayer(game.player, "#LIGHT_GREEN#Quest '%s' is done! #WHITE#(Press 'j' to see the quest log)", quest.name)
game.bignews:say(60, "#LIGHT_GREEN#Quest '%s' done!", quest.name)
game.bignews:saySimple(60, "#LIGHT_GREEN#Quest '%s' done!", quest.name)
elseif status == engine.Quest.FAILED then
game.logPlayer(game.player, "#LIGHT_RED#Quest '%s' is failed! #WHITE#(Press 'j' to see the quest log)", quest.name)
game.bignews:say(60, "#LIGHT_RED#Quest '%s' failed!", quest.name)
game.bignews:saySimple(60, "#LIGHT_RED#Quest '%s' failed!", quest.name)
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment