Thread: MoreCore Ruleset
-
March 9th, 2018, 04:17 #731
Awesome.
Those same nine slices are in use in the character sheet too - or they may not be some of the frames are just using an offset...
Also I dont always use all of the nine slices - particularly when I use a graphic as opposed to a background...
So MoreCore really only changes the MoreCore tab - plus I made Attributes drag and droppable and exportable in a library.
Personally - unless you need the extra room - I only use the front sheet for most of these things.
Attributes on the front sheet is just a title which can be edited (and the default can also be set to anything in your extension but defaults do not overwrite existing values) and the frame contains Rolls whereas Attributes on the Main tab are a different data type called Attributes. I extended the functionality of those only so far as to make them drag and drop and exportable. They have no mechanical value. They are in effect similar to a Roll without a dice string except that the Roll will output something useful to the Chat window.
Always make sure you are making your changes in your extension and not in the ruleset...
-
March 9th, 2018, 07:56 #732
Not sure I understand the implications of all that but I shall learn.
Yes, I am editing only my extension.Always make sure you are making your changes in your extension and not in the ruleset...
I mocked up a possible layout with everything on the MoreCore tab (except inventory). T&T does separate the attributes between Mental and Physical (more as a label/grouping than anything mechanic wise). Or, I could separate them as Current and Maximum. Then probably change it to be attribute and value, so Strength 10 in the string and people could manually change them.
Still have to figure out the combat area as T&T does combat a bit differently. I am not sure about the Attacks part as I am not familiar enough with the attack/damage strings and I haven't found anything on the wiki that seems to work.
Sorry for the rambling..Just working things out loud...
MoreCoreTab-MockUp.png
-
March 9th, 2018, 10:12 #733
Basically - Attributes on the Main tab are text only and not much point in using them.
You can have text only attributes in Rolls and they will report usage if you set them up as a Roll - Eg Spock uses Navigation.
You can replace the MoreCore logo with a Tunnels and Trolls one.Yes, I am editing only my extension.
I mocked up a possible layout with everything on the MoreCore tab (except inventory). T&T does separate the attributes between Mental and Physical (more as a label/grouping than anything mechanic wise). Or, I could separate them as Current and Maximum. Then probably change it to be attribute and value, so Strength 10 in the string and people could manually change them.
Still have to figure out the combat area as T&T does combat a bit differently. I am not sure about the Attacks part as I am not familiar enough with the attack/damage strings and I haven't found anything on the wiki that seems to work.
You might find attacks work or you might find that there is another Roll that works better.
Im still working on exploding Dice.
ianmward has been enlisted...
-
March 9th, 2018, 21:19 #734
Hi damned,
When I use /edie it seems that the total doesn't display in the chat window.
I want to roll multiple exploding dice : /edie d8+d6 for example. The two rolls explode but don't sum up. Is there a way to display the total with exploding dice ?
Thanks,
-
March 9th, 2018, 22:11 #735
-
March 10th, 2018, 00:08 #736
OK, I got it now. I thought that is what you meant.
Yes, I will have to see if Flying Buffalo have one they don't mind me using.You can replace the MoreCore logo with a Tunnels and Trolls one.
OK, so I am trying to visualize how to use this once I think I am finished. In your earlier image trollrolls.jpg you have the +/- button next to the attribute and then a Level box. So my attribute may say Charisma 9 and the Dice String will say /mod 9 (unless there is a way to read the string for a number?) so it adds the modifier to the Modifier box. And then the Level 1 dice string would be something like /troll 2d6L1 (I am guessing at how it will know what level of a roll it is). Then when they click the TT die icon (which is neat by the way) next to Level 1 it knows this is a T&T roll so it runs the code to do the doubles then sees it is level 1 and it sees the Mod box has 9 in it so it will calculate the TN (L1 = 20 - MOD) of 11. Then it will show the total dice rolled and state Success (or whatever)?You might find attacks work or you might find that there is another Roll that works better.
I will really have to think about the combat. T&T is very abstract as a round of combat is basically each side rolls all their weapon's attack dice, and whichever side has the highest total wins the round and causes damage (the difference between each side's total) with some damage getting through no matter who wins (a 6 counts as an auto hit). And damage caused is spread among each side's characters. Armor can take some of the damage, too. My thought would be that each character/NPC rolls their dice and then add them up manually. Or is there a way for players to put all their dice in a pool and then roll them to get the total once all players have put their dice in? We could do the difference automatically.
I really appreciate that. I was looking at the dice code and I could see how to get it to roll but I wasn't sure how to check the dice results and then roll again if they were doubles. I tell ya, not having a real-time debugger is a pain.Im still working on exploding Dice.
ianmward has been enlisted...
I really hope me taking up this thread with my thinking out loud approach is OK.
-
March 10th, 2018, 01:09 #737
Almost no one will object to you using their logo in a positive manner when not attempting to pass yourself off as them or as having an official relationship.
Additionally this is the only one that still has an active trademark...
https://tmsearch.uspto.gov/bin/showf...807:9xg74k.2.1
[QUOTE]OK, so I am trying to visualize how to use this once I think I am finished. In your earlier image trollrolls.jpg you have the +/- button next to the attribute and then a Level box. So my attribute may say Charisma 9 and the Dice String will say /mod 9 (unless there is a way to read the string for a number?) so it adds the modifier to the Modifier box. And then the Level 1 dice string would be something like /troll 2d6L1 (I am guessing at how it will know what level of a roll it is). Then when they click the TT die icon (which is neat by the way) next to Level 1 it knows this is a T&T roll so it runs the code to do the doubles then sees it is level 1 and it sees the Mod box has 9 in it so it will calculate the TN (L1 = 20 - MOD) of 11. Then it will show the total dice rolled and state Success (or whatever)?
The Name String is used in the Output Message but has no mechanical value.I will really have to think about the combat. T&T is very abstract as a round of combat is basically each side rolls all their weapon's attack dice, and whichever side has the highest total wins the round and causes damage (the difference between each side's total) with some damage getting through no matter who wins (a 6 counts as an auto hit). And damage caused is spread among each side's characters. Armor can take some of the damage, too. My thought would be that each character/NPC rolls their dice and then add them up manually. Or is there a way for players to put all their dice in a pool and then roll them to get the total once all players have put their dice in? We could do the difference automatically.
The Roll is what is parsed for values - yes I used /mod 1 thru /mod 10
You can use the Dice Pool to build up a pool of dice but each person maintains their own dice pool so maybe the GM could build the pool?
How can you do difference automatically? I cant see a way to do that...
Checking for doubles is easy... Ill send you my current build soon... I wont post it until I have exploding dice ready.I really appreciate that. I was looking at the dice code and I could see how to get it to roll but I wasn't sure how to check the dice results and then roll again if they were doubles. I tell ya, not having a real-time debugger is a pain.
I really hope me taking up this thread with my thinking out loud approach is OK.
-
March 10th, 2018, 01:40 #738
-
March 10th, 2018, 11:16 #739Templar
- Join Date
- Jun 2016
- Posts
- 139
That would be really helpful damned. I have even tried to take into consideration "modifiers" without success.
-
March 10th, 2018, 11:57 #740
Thread Information
Users Browsing this Thread
There are currently 4 users browsing this thread. (0 members and 4 guests)

Reply With Quote


Bookmarks