diff options
| author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2012-03-10 23:20:44 +0100 |
|---|---|---|
| committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2012-03-11 16:56:47 +0100 |
| commit | 2dd3c5c06978584e3e076609554f225ffbabd3e2 (patch) | |
| tree | 0673264e014e235982dca26dbfd426ae09a94c62 /example/scripts/npcs/postman.lua | |
| parent | 520705579d6a68cf6908275026eef2edee0758af (diff) | |
Removed deprecated NPC helper functions
Reviewed-by: Erik Schilling
Diffstat (limited to 'example/scripts/npcs/postman.lua')
| -rw-r--r-- | example/scripts/npcs/postman.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/example/scripts/npcs/postman.lua b/example/scripts/npcs/postman.lua index 712ea99..ef64b16 100644 --- a/example/scripts/npcs/postman.lua +++ b/example/scripts/npcs/postman.lua @@ -11,20 +11,20 @@ ---------------------------------------------------------------------------------- function post_talk(npc, ch) - do_message(npc, ch, "Hello " .. mana.being_get_name(ch)) + mana.npc_message(npc, ch, "Hello " .. mana.being_get_name(ch)) local strength = mana.being_get_attribute(ch, ATTR_STRENGTH) - do_message(npc, ch, "You have " .. tostring(strength) .. " strength") - do_message(npc, ch, "What would you like to do?") - local answer = do_choice(npc, ch, "View Mail", "Send Mail", "Nothing") + mana.npc_message(npc, ch, "You have " .. tostring(strength) .. " strength") + mana.npc_message(npc, ch, "What would you like to do?") + local answer = mana.npc_choice(npc, ch, "View Mail", "Send Mail", "Nothing") if answer == 1 then - local sender, post = getpost(ch) + local sender, post = mana.chr_get_post(ch) if sender == "" then - do_message(npc, ch, "No Post right now, sorry") + mana.npc_message(npc, ch, "No Post right now, sorry") else - do_message(npc, ch, tostring(sender) .. " sent you " .. tostring(post)) + mana.npc_message(npc, ch, tostring(sender) .. " sent you " .. tostring(post)) end end if answer == 2 then - do_post(npc, ch) + mana.npc_post(npc, ch) end end |
