Jetrotal

Results 120 comments of Jetrotal

remember that maniacs patch support exclusive commands through @raw so Let's say we could use @raw 2095 "" 0 //where 0 can mean open menu, 1 == language1, 2 ==...

> Hi @ell1e , thank you very much for supporting the project. I think events being able to reach their destination without "not knowing how to turn the corner" (xD)...

This old one from ellie, is close to completion too: https://github.com/EasyRPG/Player/pull/3144 maybe worthy taking off the draft tag from it, and changing its syntax (e.g.: ID 2001 is already used,...

I did some research on this: Ghabry Suggested checking R48's commands descriptions, from @20kdc repos: https://github.com/20kdc/gabien-app-r48/blob/master/app/src/main/resources/assets/R2K/CommandsGI_0.txt ![image](https://github.com/EasyRPG/liblcf/assets/45118493/00031838-53b1-404f-b91e-10313e41f643) There are also some interesting references from Destiny Patch sourcecode (thanks to Kotatsu...

> just so you know, some commands are... complicated, and can't be directly dumped from r48's CMDB due to this that said if you need a JSONification of what's available...

Thanks! seems to be using the default vanilla order and looks easy to navigate by cycling through `JSON.cmdbs.event.knownCommands[n].params[m].name` `// e.g.: "positionLocked" or "null" if unused string` and in order to...

![image](https://github.com/EasyRPG/liblcf/assets/45118493/0a290d50-9651-4afd-9593-09168347af1f) This is what I made: [CommandParameters.csv](https://github.com/EasyRPG/liblcf/files/12516303/CommandParameters.csv) The js do get it was: ```JS // Determine the maximum number of parameters among all commands let maxParams = 0; jsonFile.cmdbs.event.knownCommands.forEach((command) =>...

hm... right. Though that kind of detection is already inside the Player's source code. It should indeed have inside it something like `goldValue` or whatever...

Update: ![image](https://github.com/EasyRPG/liblcf/assets/45118493/cbc5b16f-321f-494d-80cb-74cc8ada9a4e) [CommandsParameters.csv](https://github.com/EasyRPG/liblcf/files/12516574/CommandsParameters.csv) ---------------- ```JS // Determine the maximum number of parameters among all commands let maxParams = 0; jsonFile.cmdbs.event.knownCommands.forEach((command) => { if (command.params.length > maxParams) { maxParams = command.params.length;...

You mean, checking if def exists instead of param.type === 'dynamic' ? ---- I gotta leave right now, later I'll take a better look at still needs to be done...