Fantasy Grounds Merchandise
Page 173 of 331 First ... 73 123 163 171 172 173 174 175 183 223 273 ... Last
  1. #1721
    With regards to the 3d dice shown when making a dice roll: Is there a way for a d3 roll to show as a d6 rather than a Fudge die?

  2. #1722
    damned's Avatar
    Join Date
    Mar 2011
    Location
    Australia
    Posts
    24,754
    Blog Entries
    1
    Quote Originally Posted by vvZODvv View Post
    With regards to the 3d dice shown when making a dice roll: Is there a way for a d3 roll to show as a d6 rather than a Fudge die?
    That is CoreRPG Im pretty sure - if ?
    you can confirm it isnt

  3. #1723
    damned's Avatar
    Join Date
    Mar 2011
    Location
    Australia
    Posts
    24,754
    Blog Entries
    1
    Quote Originally Posted by Samzagas View Post
    Your total skill is the sum of two stats plus however many ranks you have on the skill, so it goes like this: Stat A + Stat B + Skill Ranks = Skill Total
    Any other modifiers come into play?

  4. #1724
    damned's Avatar
    Join Date
    Mar 2011
    Location
    Australia
    Posts
    24,754
    Blog Entries
    1
    Quote Originally Posted by Ctmega View Post
    damned,

    I ran into a few issues trying to bring MoreCore (and my AGE system games) into Unity. Before I went too far trying to debug, I wanted to make sure that you had intentions of bringing MoreCore to the Unity platform and offer my assistance in testing if in fact that is a desire of yours.

    Please let me know.

    Thanks!
    I do.

  5. #1725
    Quote Originally Posted by damned View Post
    That is CoreRPG Im pretty sure - if ?
    you can confirm it isnt
    In MoreCore /die 1d3 rolls a Fudge die visually but (correctly) reports a 1, 2, or 3.
    In CoreRPG the same dice string visually rolls a d6.

    Can MoreCore be made to show a d6 rolling like CoreRPG does?

  6. #1726
    damned's Avatar
    Join Date
    Mar 2011
    Location
    Australia
    Posts
    24,754
    Blog Entries
    1
    Quote Originally Posted by vvZODvv View Post
    In MoreCore /die 1d3 rolls a Fudge die visually but (correctly) reports a 1, 2, or 3.
    In CoreRPG the same dice string visually rolls a d6.

    Can MoreCore be made to show a d6 rolling like CoreRPG does?
    Edit this file: \common\funky_dice.xml

    Change
    Code:
    <customdie name="d3">
      <model>dF</model>
      <menuicon>icond3</menuicon>
      <script>
        function onValue(result)
          return math.random(3);
        end
      </script>
    </customdie>
    to
    Code:
    <customdie name="d3">
      <model>d6</model>
      <menuicon>icond3</menuicon>
      <script>
        function onValue(result)
          return math.random(3);
        end
      </script>
    </customdie>

  7. #1727
    Quote Originally Posted by damned View Post
    I do.
    To that end, would you prefer I post my findings on this thread or somewhere in the Unity Thread? The main thing I found so far is that the /myinit roll triggers a console error referencing a null field. I am currently at work but will give you the specifics once I am able to reproduce it from my home PC.

    Thanks!

  8. #1728
    Quote Originally Posted by damned View Post
    Any other modifiers come into play?
    More or less, the target number is your Skill Total, modified by the difficulty, but it's all in fractions. I'll copy the table from the book:
    Difficulty --- Skill Modifier
    Very Easy --- Double the skill value
    Easy --- Add half again to the skill value
    Standard --- No adjustment.
    Hard --- Reduce the skill value by one third
    Formidable --- Reduce the skill value by half
    Herculean --- Reduce the skill value to one tenth

    Everything is rounded up.
    You can probably skip this part and let the users do the calculations manually.

  9. #1729
    Quote Originally Posted by damned View Post
    Edit this file: \common\funky_dice.xml

    Change
    Code:
    <customdie name="d3">
      <model>dF</model>
      <menuicon>icond3</menuicon>
      <script>
        function onValue(result)
          return math.random(3);
        end
      </script>
    </customdie>
    to
    Code:
    <customdie name="d3">
      <model>d6</model>
      <menuicon>icond3</menuicon>
      <script>
        function onValue(result)
          return math.random(3);
        end
      </script>
    </customdie>
    Piece of cake. Thanks damned.

  10. #1730
    Here is the output from unity when trying to use the /myinit roll:

    [1/9/2020 8:44:17 PM] [WARNING] template: Could not find template (visible) in class (cli_rolls)
    [1/9/2020 8:44:17 PM] [WARNING] template: Could not find template (visible) in class (cli_rolls)
    [1/9/2020 8:44:17 PM] [WARNING] template: Could not find template (visible) in class (cli_rolls)
    [1/9/2020 8:44:18 PM] [NOTICE] s'performAction: ' | nil | { s'sType' = s'pc', s'sCreatureNode' = s'charsheet.id-00001', s'sCTNode' = s'', s'sName' = s'Dragon AGE Template' } | s'3d6+0 Initiative'
    [1/9/2020 8:44:18 PM] [NOTICE] s'who am i?: ' | s'charsheet.id-00001'
    [1/9/2020 8:44:18 PM] [NOTICE] s'performAction: ' | nil | { s'sType' = s'pc', s'sCreatureNode' = s'charsheet.id-00001', s'sCTNode' = s'', s'sName' = s'Dragon AGE Template' } | { s'aDice' = { #1 = s'd6', #2 = s'd6', #3 = s'd6' }, s'nMod' = #0, s'sWho' = s'charsheet.id-00001', s'sType' = s'myinit', s'sDesc' = s'Initiative (3d6+0)' }
    [1/9/2020 8:44:22 PM] [NOTICE] s'onLanded: ' | { s'sType' = s'pc', s'sCreatureNode' = s'charsheet.id-00001', s'sCTNode' = s'', s'sName' = s'Dragon AGE Template' } | nil | { s'aDice' = { #1 = { s'value' = #1, s'type' = s'd6', s'result' = #1 }, #2 = { s'value' = #1, s'type' = s'd6', s'result' = #1 }, #3 = { s'value' = #4, s'type' = s'd6', s'result' = #4 }, s'expr' = s'3d6' }, s'nMod' = #0, s'sWho' = s'charsheet.id-00001', s'sType' = s'myinit', s'bSecret' = bFALSE, s'sDesc' = s'Initiative (3d6+0)' }
    [1/9/2020 8:44:22 PM] [NOTICE] s'nTotal: ' | #0
    [1/9/2020 8:44:22 PM] [<color="red">ERROR</color>] Script execution error: [string "scripts/manager_custom_init.lua"]:87: attempt to perform arithmetic on field 'result' (a nil value)

    I also get the following when starting a game with the MoreCore ruleset:

    [1/9/2020 9:10:38 PM] [NOTICE] Launcher scene starting.
    [1/9/2020 9:11:01 PM] [NOTICE] Spawning private server.
    [1/9/2020 9:11:01 PM] [NOTICE] Connected to game server.
    [1/9/2020 9:11:02 PM] [NOTICE] Launcher scene exiting.
    [1/9/2020 9:11:02 PM] [NOTICE] Tabletop scene starting.
    [1/9/2020 9:11:13 PM] [<color="red">ERROR</color>] font: Missing TTF tag for font (smallheadertext). [MoreCore] [graphics/graphics_fonts_mc.xml]
    [1/9/2020 9:11:17 PM] [NOTICE] s'aMajor: ' | { s'CoreRPG' = #4, s'MoreCore' = #1 } | s' aMinor: ' | { s'CoreRPG' = #0, s'MoreCore' = #51 }
    [1/9/2020 9:11:17 PM] [NOTICE] s'onInit: registerResultHandler'

Page 173 of 331 First ... 73 123 163 171 172 173 174 175 183 223 273 ... Last

Thread Information

Users Browsing this Thread

There are currently 3 users browsing this thread. (0 members and 3 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
DICE PACKS BUNDLE

Log in

Log in