From edce22aa59188763eaa75bfd54f260b63c1ebbcf Mon Sep 17 00:00:00 2001 From: Don Date: Sun, 10 Jul 2022 19:13:38 +0900 Subject: [PATCH] =?UTF-8?q?YAYA=20Tc571-3=20=E3=81=AE=20TOAUTOEX=20/=20CVA?= =?UTF-8?q?UTOEX=20=E8=BF=BD=E5=8A=A0=E3=81=AB=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yaya_saori/builtins.aym | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/yaya_saori/builtins.aym b/yaya_saori/builtins.aym index f4e8927..5817c2f 100644 --- a/yaya_saori/builtins.aym +++ b/yaya_saori/builtins.aym @@ -1182,6 +1182,16 @@ cvauto RES.RESULT = CVAUTO(REQ.ARGS[0]) } +cvautoex +{ + if ARRAYSIZE(REQ.ARGS) < 1 { + LOGGING("cvautoex: 引数が不足しています") + -1 + return + } + RES.RESULT = CVAUTOEX(REQ.ARGS[0]) +} + execute { if ARRAYSIZE(REQ.ARGS) < 1 { @@ -1437,6 +1447,16 @@ toauto RES.RESULT = TOAUTO(REQ.ARGS[0]) } +toautoex +{ + if ARRAYSIZE(REQ.ARGS) < 1 { + LOGGING("toautoex: 引数が不足しています") + -1 + return + } + RES.RESULT = TOAUTOEX(REQ.ARGS[0]) +} + zen2han { if ARRAYSIZE(REQ.ARGS) < 1 {