From 78c912fb4007c3e5f0b43de02646772acb21ecf2 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Fri, 9 Mar 2012 21:30:42 +0100 Subject: Moved the managing of NPC script coroutines into C++ Rather than wrapping NPC functions up in coroutines in the Lua side, they are now managed on the C++ side as "script threads", which are essentially the same thing. The main purpose is that the server can now know whether any of these long running script interactions are still active, which will probably be useful when adding the ability to reload scripts. Reviewed-by: Erik Schilling --- example/scripts/npcs/banker.lua | 2 -- 1 file changed, 2 deletions(-) (limited to 'example/scripts') diff --git a/example/scripts/npcs/banker.lua b/example/scripts/npcs/banker.lua index 4e04865..790f9a5 100644 --- a/example/scripts/npcs/banker.lua +++ b/example/scripts/npcs/banker.lua @@ -20,7 +20,6 @@ function Banker(npc, ch) end local account = tonumber(get_quest_var(ch, "BankAccount")) local result = -1 - do_wait() if (account == nil) then --Initial account creation, if needed do_message(npc, ch, "Hello! Would you like to setup a bank account? There is a sign-on bonus right now!") @@ -45,7 +44,6 @@ function Banker(npc, ch) if (money > 0) then --Make sure they have money to deposit do_message(npc, ch, "How much would you like to deposit? (0 will cancel)") input = do_ask_integer(npc, ch, 0, money, 1) - do_wait() money = mana.chr_money(ch) if (input > 0 and input <= money) then --Make sure something weird doesn't happen and they try to deposit more than they have mana.chr_money_change(ch, -input) -- cgit