1
0
Fork
You've already forked kw-args
0
Arguments library
Find a file
2026年05月28日 19:55:28 +03:00
.vscode initial commit 2026年03月23日 01:24:23 +03:00
res update README, add screenshot 2026年05月28日 19:49:33 +03:00
scripts fix for args increment, add canInputText field 2026年05月28日 19:55:28 +03:00
library.json add func exec when start, add default values, add getArgByName, etc... 2026年05月28日 19:41:26 +03:00
LICENSE initial commit 2026年03月23日 01:24:23 +03:00
README.md update README, add screenshot 2026年05月28日 19:49:33 +03:00

kw-args

Implements simple cmd args system

test.zn

//! zinc 
library testArgs requires libArgs {
 public function onStartCommand() {
 BJDebugMsg(getArgByName("str").name);
 }
 private function onInit() {
 addIntArg("key", 10, 50, 35, "Just insert key value");
 addStrArg("str", "t1", "t2", "t3", "t4", "t3", "Insert any string");
 libArgs_start(false);
 }
}
//! endzinc

screen