Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
builders_kit [2021/05/31 15:33] nuefox created |
builders_kit [2022/03/26 02:55] (current) nuefox [Broadcast Channels] |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Builders Kit ====== | ====== Builders Kit ====== | ||
+ | The builders kit available in the [[https:// | ||
+ | ==== Stats Script ==== | ||
+ | The ' | ||
+ | |||
+ | Stats are represented with percentages but their implementation is more involved than simply increasing or decreasing by a percentage. All stats are represented with points, the default being 1000 for each stat for every species as a baseline value (these will be defined by species owners and moderated by admins to ensure appropriate values are maintained); | ||
+ | |||
+ | Profile modifiers or special items that may affect the profile stat ratio or addition and subtraction of values which will allow a character to deviate from the species baseline; this should be taken into consideration when designing your application. Assuming no deviations by using the default of 1000 points, if you want to take a characters vitality down by 25% or increase their arousal by 75%, you would send an amount value of -250 (-250 / 1000 = -25%) or 750 (750 / 1000 = 75%) respectively. | ||
+ | |||
+ | Few things to take into consideration is that the calculated affect applies to the existing stat value; so if the vitality stat is already at 40%, doing a hit for -250 (or -25%) will drop vitality down to 30% (25% taken from 40% leaves 30%); the other factor to take into consideration is that at this time, there is no way to adjust a stat percentage beyond the bounds of 0% to 100% (it has not yet been assessed what implications could arise from going out of bounds so values are capped); some stats are indirectly affected, such as increasing arousal will decrease defense for example, there is not a table which identifies these relations yet but something to keep in mind for implementation that may exist for the stat you are attempting to affect. | ||
+ | |||
+ | ==== Discovery Script ==== | ||
+ | The ' | ||
+ | |||
+ | ==== Broadcast Channels ==== | ||
+ | The following channels broadcast JSON data; see the ane.broadcast.example script: | ||
+ | | ||
+ | * integer CHAN_BROADCAST_SETTINGS = -1537921548; | ||
+ | * integer CHAN_BROADCAST_PREGNANCY = -1537921547; | ||
+ | * integer CHAN_BROADCAST_STATE = -1537921546; | ||
+ | * integer CHAN_BROADCAST_STATS = -1537921545; |