From 472ed8e80ff2275bfd1204791a5cc6e038b43ffd Mon Sep 17 00:00:00 2001 From: KimLS Date: Fri, 31 Oct 2014 22:15:31 -0700 Subject: [PATCH] Updated Lua General Functions (markdown) --- Lua-General-Functions.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Lua-General-Functions.md b/Lua-General-Functions.md index 9c0e97c..8d93484 100644 --- a/Lua-General-Functions.md +++ b/Lua-General-Functions.md @@ -4,7 +4,9 @@ All Lua General Functions are in the global table 'eq'. ``` Void load_encounter(String name); +Void load_encounter_with_data(String name, String data); Void unload_encounter(String name); +Void unload_encounter_with_data(String name, String data); Void register_npc_event(String name, Integer evt, Integer npc_id, LuaFunction func); Void unregister_npc_event(String name, Integer evt, Integer npc_id); Void register_player_event(String name, Integer evt, LuaFunction func);