From 697ab2d5ee8c840dba925425ddbf6eba9eb6ee44 Mon Sep 17 00:00:00 2001 From: mekolat Date: Sat, 28 Feb 2015 10:34:55 -0500 Subject: add freeloop builtin --- src/map/script-fun.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'src/map/script-fun.cpp') diff --git a/src/map/script-fun.cpp b/src/map/script-fun.cpp index b9b581f..8c25266 100644 --- a/src/map/script-fun.cpp +++ b/src/map/script-fun.cpp @@ -1122,6 +1122,25 @@ void builtin_getequipid(ScriptState *st) } } +/*========================================== + * freeloop + *------------------------------------------ + */ +static +void builtin_freeloop(ScriptState *st) +{ + int num; + num = conv_num(st, &AARG(0)); + if(num == 1) + { + st->freeloop = 1; + } + else + { + st->freeloop = 0; + } +} + /*========================================== * 装備名文字列(精錬メニュー用) *------------------------------------------ @@ -3095,6 +3114,7 @@ BuiltinFunction builtin_functions[] = BUILTIN(gety, ""_s, 'i'), BUILTIN(getmap, ""_s, 's'), BUILTIN(mapexit, ""_s, '\0'), + BUILTIN(freeloop, "i"_s, '\0'), {nullptr, ""_s, ""_s, '\0'}, }; } // namespace map -- cgit v1.2.3-70-g09d2