Dice roller down?

If you need support for dice roller or the forums, post here.
Post Reply
Message
Author
User avatar
StevetheNPC
Scout
Scout
Posts: 54
Joined: Tue Mar 03, 2020 6:39 am
Location: Colorado Springs

Dice roller down?

#1 Post by StevetheNPC »

Is it just me, or is the dice roller down right now?

User avatar
Rex
Rider of Rohan
Rider of Rohan
Posts: 25320
Joined: Mon May 15, 2017 9:44 pm
Location: Northern Vermont

Re: Dice roller down?

#2 Post by Rex »

Working for me at the moment.

User avatar
dmw71
POWAH!
POWAH!
Posts: 19605
Joined: Tue Jan 24, 2012 7:18 pm
Location: Chicago, Illinois
Contact:

Re: Dice roller down?

#3 Post by dmw71 »

I just saw this now. The roller is working fine for me.

Are you still having the same issue?
-- Project --
Playtest: Untitled Project (1e)
-- DM --
Greyhawk Campaign: Sandbox (1e)
(Status: Archived)

User avatar
StevetheNPC
Scout
Scout
Posts: 54
Joined: Tue Mar 03, 2020 6:39 am
Location: Colorado Springs

Re: Dice roller down?

#4 Post by StevetheNPC »

I am. I tried deleting all cookies for the last 4 weeks, which is way before I registered at US, restarting Chrome, and re-logged in to US and the dice roller, but I am still getting the following error. The dice sandbox roller does work for me. I even tried using Edge (gah!), but I am getting the same error.

The weird thing is that yesterday I was getting the same error message but with a background graphic (a guy on a beach? and a shark? something like that). Today I only get the error message with a white background.

Maybe I should try reinstalling Chrome? But if Edge didn't work either, that's probably not it.

Image

User avatar
dmw71
POWAH!
POWAH!
Posts: 19605
Joined: Tue Jan 24, 2012 7:18 pm
Location: Chicago, Illinois
Contact:

Re: Dice roller down?

#5 Post by dmw71 »

This might be a Greg thing, but can you also share the text of the roll you're making?

For example:
  • Attack with sword: [1d20], [1d8]
-- Project --
Playtest: Untitled Project (1e)
-- DM --
Greyhawk Campaign: Sandbox (1e)
(Status: Archived)

User avatar
StevetheNPC
Scout
Scout
Posts: 54
Joined: Tue Mar 03, 2020 6:39 am
Location: Colorado Springs

Re: Dice roller down?

#6 Post by StevetheNPC »

I tried the lower macro field, and now I get the error with the background graphic. Here is the macro I am trying, could it be that?

Str: [3d6] Dex: [3d6] Con: [3d6] Int: [3d6] Wis: [3d6] Cha: [3d6]


Image

User avatar
ToniXX
Site Admin
Site Admin
Posts: 3225
Joined: Sat Sep 19, 2009 5:21 pm
Location: Long Beach, CA

Re: Dice roller down?

#7 Post by ToniXX »

StevetheNPC wrote:I tried the lower macro field, and now I get the error with the background graphic. Here is the macro I am trying, could it be that?

Str: [3d6] Dex: [3d6] Con: [3d6] Int: [3d6] Wis: [3d6] Cha: [3d6]

You found a bug in my code. I'll have it resolved hopefully tomorrow.
Thanks for the info!
"Sir, our research shows that the bird is equal to or greater than the word."

User avatar
dmw71
POWAH!
POWAH!
Posts: 19605
Joined: Tue Jan 24, 2012 7:18 pm
Location: Chicago, Illinois
Contact:

Re: Dice roller down?

#8 Post by dmw71 »

Was the string too long? That was what I was thinking.
-- Project --
Playtest: Untitled Project (1e)
-- DM --
Greyhawk Campaign: Sandbox (1e)
(Status: Archived)

User avatar
ToniXX
Site Admin
Site Admin
Posts: 3225
Joined: Sat Sep 19, 2009 5:21 pm
Location: Long Beach, CA

Re: Dice roller down?

#9 Post by ToniXX »

Ok, so doing stat rolls in the 'on the fly' feature was not expected. The string of characters that displays the result is too long to go into the database. So, in the meantime, break up your stat rolls into two 'on the fly' rolls, like this:

Str: [3d6] Dex: [3d6] Con: [3d6]
Int: [3d6] Wis: [3d6] Cha: [3d6]

I'm working on a solution but I must warn you that it may not be all that pretty.
"Sir, our research shows that the bird is equal to or greater than the word."

User avatar
Lance
Ranger
Ranger
Posts: 747
Joined: Thu Feb 13, 2020 8:20 am
Location: Budapest, Hungary, Europe
Contact:

Re: Dice roller down?

#10 Post by Lance »

If there's a limit to the db field, you might as well limit the length of the input field. That might be quicker than validating or extending. I assume it's rare for the roll result to be longer than the macro that generates it. :)

User avatar
ToniXX
Site Admin
Site Admin
Posts: 3225
Joined: Sat Sep 19, 2009 5:21 pm
Location: Long Beach, CA

Re: Dice roller down?

#11 Post by ToniXX »

The roll result is always longer because it includes HTML markup to display the results in bold and red. So with a macro with a lot of dice expressions (the parts within the square brackets), the result is usually pretty long.
"Sir, our research shows that the bird is equal to or greater than the word."

User avatar
StevetheNPC
Scout
Scout
Posts: 54
Joined: Tue Mar 03, 2020 6:39 am
Location: Colorado Springs

Re: Dice roller down?

#12 Post by StevetheNPC »

ToniXX wrote:Ok, so doing stat rolls in the 'on the fly' feature was not expected.
Sorry about that, it was my first time using the dice roller. :oops: Still learnin'.

I was trying to have stat rolls recorded in the database for a game in which we were not using the character sheets, just the dice roller. I ended up creating a dummy character, called "Steve01", and then made the stat roll with that character. I also made a macro for the Hit Point roll.

Is there a better/easier way to do something like this, when not utilizing the character sheet but still needing the dice roller?

Cheers! Steve

User avatar
ToniXX
Site Admin
Site Admin
Posts: 3225
Joined: Sat Sep 19, 2009 5:21 pm
Location: Long Beach, CA

Re: Dice roller down?

#13 Post by ToniXX »

The easiest thing is to do what I outlined above:
ToniXX wrote:break up your stat rolls into two 'on the fly' rolls, like this:

Str: [3d6] Dex: [3d6] Con: [3d6]
Int: [3d6] Wis: [3d6] Cha: [3d6]
Does that answer your question?
"Sir, our research shows that the bird is equal to or greater than the word."

User avatar
StevetheNPC
Scout
Scout
Posts: 54
Joined: Tue Mar 03, 2020 6:39 am
Location: Colorado Springs

Re: Dice roller down?

#14 Post by StevetheNPC »

It does indeed. Thank you for your support!

Post Reply

Return to “Help and Support”