Apocalypse World is a simple story telling type rpg. Most of the stats are easy to set up. There is one I am having difficulty with though. Can anyone give me a pointer as to how to set up the Hx stat (should I define it under campaign properties or is each Hx a different variable under each token - it is but how do I set it up?).
Hx is: how well each character knows each other. And it is not equal for each character.
So Bob may know Tom well (On Bob's character sheet Hx (Tom)=3), but Tom may only know Bob marginally (On Tom's character sheet Hx (Bob)=1). So if there are five characters each character sheet will have four entries for the other four characters in the game.
Could anyone suggest how to set up the structure to make this work please? I currently have Hx defined as a campaign property but need some suffix for Tom's Hx with Bob and vice versa. Does that make sense? You can see my non-programming roots, as this is not complex. Hx does change as you go through the game.
Cheers.
Apocalypse World framework question
Moderators: dorpond, trevor, Azhrei, giliath, Gamerdude, jay, Mr.Ice
Forum rules
This forum is LOCKED. If a thread belongs here, use the "Report" feature of the post to let a moderator know to move it. General discussion should occur in the User Creations or MapTool forums.
This forum is LOCKED. If a thread belongs here, use the "Report" feature of the post to let a moderator know to move it. General discussion should occur in the User Creations or MapTool forums.
-
- Cave Troll
- Posts: 88
- Joined: Mon Sep 21, 2009 4:15 pm
Apocalypse World framework question
- Attachments
-
- Apocalypse world simple.cmpgn
- (454.2 KiB) Downloaded 147 times
- CoveredInFish
- Demigod
- Posts: 3104
- Joined: Mon Jun 29, 2009 10:37 am
- Location: Germany
- Contact:
Re: Apocalypse World framework question
It sounds to me like a typical situation for a json.object. This is a data structure to store several key-value-pairs inside of a single property/variable.
You could set up a single cmpgn property "Hx" and store everything there.
but if this is the way to go for you really depends on what you wanna do with those values and how to operate them. A json object in a property makes it less human-readable and more difficult to edit in the token-properties-window. So you might wanna create your own character sheet and -editor (or provide some Hx-only-editor-macros).
You could set up a single cmpgn property "Hx" and store everything there.
Code: Select all
<!-- set -->
[h: Hx = json.set("", "Jim", 3, "Bob", 2)]
<!-- get -->
Hx(Bob) = [r: json.get(Hx, "Bob")]
-
- Cave Troll
- Posts: 88
- Joined: Mon Sep 21, 2009 4:15 pm
Re: Apocalypse World framework question
Apocalypse world framework usable version.
Credit to the FATE framework on this forum, on which this one is based.
Credit to the FATE framework on this forum, on which this one is based.
- Attachments
-
- Apocalypse world 10 04 11.cmpgn
- (568.38 KiB) Downloaded 166 times
Re: Apocalypse World framework question
If you just created a new framework for a game and like to share it with the community (and your post looks like this) I would suggest to create a new post (in this section) with something likeDoktor Avalanche wrote:Apocalypse world framework usable version.
Credit to the FATE framework on this forum, on which this one is based.
"[Apocalypse World] framework v.1.0" in the subject
Post at least the compatibility of this version (e.g. compatible with MT 1.3b82+)
Then create 1 or 2 reserved posts beneath that (you never know) one and finally drop a pm to Az asking him to move this to the FW section of user creations. This way others can find this in the future.
Also your original question doesn't belong here but either in 'Maptools' section or in 'Macros', but Im not a moderator.
Cheerz and thnx for the contribution.
GETTING STARTED WITH MAPTOOLS - TUTORIALS, DOCS, VIDEOS, TOOLS, ETC
DISCORD (the new MT forum!)
My stuff
Excel Tools: Table and Light editors
MT Tools: Bag of Tricks: Tools for Maptool, Dungeon Builder I, Dungeon Builder II,onMouseOverEvent.
Frameworks: Dark Heresy, Rogue Trader, Deathwatch, Black Crusade, Only War, SET Card Game, RoboRally
Wiki: Debugging Tutorial, Speed Up Your Macros, Working With Two CODE Levels, Shortcut Keys, Avoiding Stack Overflow, READ THIS
DISCORD (the new MT forum!)
My stuff
Excel Tools: Table and Light editors
MT Tools: Bag of Tricks: Tools for Maptool, Dungeon Builder I, Dungeon Builder II,onMouseOverEvent.
Frameworks: Dark Heresy, Rogue Trader, Deathwatch, Black Crusade, Only War, SET Card Game, RoboRally
Wiki: Debugging Tutorial, Speed Up Your Macros, Working With Two CODE Levels, Shortcut Keys, Avoiding Stack Overflow, READ THIS