Page 3 of 5

Re: Content format reference

Posted: Thu Oct 19, 2017 5:46 am
by Zukero
These are simply examples, made quickly with ATCS. The numbers are stupid, but syntaxically and semantically correct.
In this example, you'll gain between 30 and 40 AP each round. That doesn't impact your max AP (like combat speed does) but your currently usable AP,which at the beginning of a round is already at max value. So, essentially, this has no effect.

Re: Content format reference

Posted: Tue Mar 19, 2019 2:53 pm
by BWPanda
There's a typo in viewtopic.php?f=6&t=5825#p57703
Droplists are defined in JSON format. Files containing actor conditions should be named droplists_<name>.json...
Should be:
Droplists are defined in JSON format. Files containing droplists should be named droplists_<name>.json...

Re: Content format reference

Posted: Tue Mar 19, 2019 3:24 pm
by Zukero
Thanks. Fixed.

Re: Content format reference

Posted: Wed Mar 20, 2019 11:58 am
by BWPanda
In viewtopic.php?f=6&t=5825#p57704 it says:
The name can contain "$playername", and the game engine will replace this by the player's name in-game.
Is this really the case with items, or is this a copy/paste error from conversation lists? I ask because doing a grep for '$playername' in 'itemlist_*' files doesn't return anything...

Re: Content format reference

Posted: Wed Mar 20, 2019 5:06 pm
by Nut
Player as an item? Interesting idea....

Re: Content format reference

Posted: Wed Mar 20, 2019 5:29 pm
by BWPanda
Maybe we can use ourselves as a human shield... :D

Re: Content format reference

Posted: Wed Mar 20, 2019 7:27 pm
by Zukero
It could be useful in an item's description, or even in the name. Try it, if it doesn't work and you have a good use for it, I'll code it.

Re: Content format reference

Posted: Sun Mar 24, 2019 6:57 pm
by BWPanda
Another typo: viewtopic.php?f=6&t=5825#p57706
NPCs are defined in JSON format. Files containing NPCs should be named itemcategories_<name>.json...
I believe it should be:
NPCs are defined in JSON format. Files containing NPCs should be named monsterlist_<name>.json...

Re: Content format reference

Posted: Sun Mar 24, 2019 7:02 pm
by Zukero
Fixed.

Re: Content format reference

Posted: Mon Mar 25, 2019 7:43 am
by BWPanda
Apologies for the constant nitpicking, but found another error: viewtopic.php?f=6&t=5825#p57700
Worldmaps use a custom XML format. All worldmaps are defined in a single worldmap.xml file located under res/raw/ in the game source.
I can see a 'worldmap.xml' file under 'res/xml/', not 'res/raw/'...

These posts are very helpful for me BTW, thanks for writing them up!