-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathshell_loop_getquestlist.kids.lua
More file actions
30 lines (26 loc) · 981 Bytes
/
shell_loop_getquestlist.kids.lua
File metadata and controls
30 lines (26 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--[[
Title: Empty shell game file
Author(s): spring
Date: 2012/11/21
------------------------------------------------------------
For server build, the command line to use this shell_loop is below.
- under windows, it is "bootstrapper=\"script/shell_loop_getquestlist.kids.lua\"".
- under linux shell script, it is 'bootstrapper="script/shell_loop_getquestlist.teen.lua"'
------------------------------------------------------------
]]
NPL.load("(gl)script/ide/commonlib.lua");
main_state = nil;
local function activate()
if(main_state==0) then
-- this is the main game loop
elseif(main_state==nil) then
main_state=0;
log("Hello World from script/shell_loop_getquestlist.kids.lua\n")
NPL.load("(gl)script/apps/Aries/Quest/QuestHelp2.lua");
local QuestHelp = commonlib.gettable("MyCompany.Aries.Quest.QuestHelp");
QuestHelp.BuildChart("kids",true);
commonlib.echo("Get quest_chart.kids.csv saved END !");
ParaGlobal.Exit(0);
end
end
NPL.this(activate);