Dice analyzer 1.5.1a, 1.5.1b and 1.5.1c
Moderator: Tech Team
Forum rules
Please read the Community Guidelines before posting.
Please read the Community Guidelines before posting.
- DiM
- Posts: 10415
- Joined: Wed Feb 14, 2007 6:20 pm
- Gender: Male
- Location: making maps for scooby snacks
Re: Can't get it to work - please help
scottie wrote:I'm being really dim
really?
and to be ontopic here is how i'm currently having a bad luck streak. i'm under the ideal stats at all battles except 1vs2. and i roll mostly 1 and 3

“In the beginning God said, the four-dimensional divergence of an antisymmetric, second rank tensor equals zero, and there was light, and it was good. And on the seventh day he rested.”- Michio Kaku
- AtomicSlug
- Posts: 164
- Joined: Thu Apr 13, 2006 11:51 am
- Location: VA
- Contact:
I was going to convert my Spreadsheet to a script or a stand-alone program, but I see that there's now no need, unless (and I haven't read this entire thread) this only works for CC....
"I have heard of a place where humans do battle in a ring of jello." - Teal'c
- cyberdaniel
- Posts: 281
- Joined: Sat Apr 01, 2006 10:31 am
- sportdaqking
- Posts: 53
- Joined: Tue Jan 09, 2007 9:29 am
- Sargeant_Pepper
- Posts: 58
- Joined: Mon Jan 01, 2007 8:03 pm
- Contact:
exporting dice analyzer stats
I use more than 3 computers to play CC. They all have BOB and Dice Analyzer #1. I would like to see a way to join all of my dice analyzer statistics into ONE file, for later analysis. Also, one computer may have 1,200 dice rolled, and another 40 dice rolled, so the stats would be skewed. Ideally, there should be a way to export the information into a TXT (text) file, and import it again into any computer.
If you need any webspace, bandwidth for this, I can donate it for the project, since it would be benefiting me and the CC community.
What are the chances of adopting this idea? Votes? Comments? Suggestions? I'm open...
If you need any webspace, bandwidth for this, I can donate it for the project, since it would be benefiting me and the CC community.
What are the chances of adopting this idea? Votes? Comments? Suggestions? I'm open...
Visit Felipe Alvarez's website.
- cyberdaniel
- Posts: 281
- Joined: Sat Apr 01, 2006 10:31 am
For some time now I was thinking of a way to store all this information to a dedicated server and make some kind of a logging system. This way you could play on any computer that has the script installed and configured. Further more this would allow for mass analysis of all the dice rolls that are taking place at a certain time (like hour or day). Plus this would give the opportunity for others to see how well you're doing and what kind of rolls you're taking and others .... Plus this could expand into another area, keeping track of each player's map preferences and other statistics like this.
The thing is how many people would like to see this?
About the web space, I already have something that might work.
The thing is how many people would like to see this?
About the web space, I already have something that might work.
"Every battle has been won before it's been fought." Sun Tzu
- Sargeant_Pepper
- Posts: 58
- Joined: Mon Jan 01, 2007 8:03 pm
- Contact:
cyberdaniel wrote:For some time now I was thinking of a way to store all this information to a dedicated server and make some kind of a logging system. This way you could play on any computer that has the script installed and configured. Further more this would allow for mass analysis of all the dice rolls that are taking place at a certain time (like hour or day). Plus this would give the opportunity for others to see how well you're doing and what kind of rolls you're taking and others .... Plus this could expand into another area, keeping track of each player's map preferences and other statistics like this.
The thing is how many people would like to see this?
About the web space, I already have something that might work.
What an AMAZING IDEA! Start a new thread. Give it 4 weeks. Put it to a vote, see how many people are interested. Count me in! Tell me what to do -- I'd love to help you out and get this out the door!
Visit Felipe Alvarez's website.
- cyberdaniel
- Posts: 281
- Joined: Sat Apr 01, 2006 10:31 am
- Night Strike
- Posts: 8512
- Joined: Wed Apr 18, 2007 2:52 pm
- Gender: Male
-
chessplaya
- Posts: 1875
- Joined: Sat Jan 20, 2007 1:46 pm
- cyberdaniel
- Posts: 281
- Joined: Sat Apr 01, 2006 10:31 am
Version update
The scripts were updated to fit the new Ajax game interface.
The scripts will not support the old interface!
The scripts can be found at http://cyberdaniel.50webs.com. Make sure that it says version 1.5 and not 1.4. Refresh the page if it says 1.4.
Hopefully, the small modifications that I made will benefit to updating every other script.
For those interested this is the part that I had to update:
The scripts will not support the old interface!
The scripts can be found at http://cyberdaniel.50webs.com. Make sure that it says version 1.5 and not 1.4. Refresh the page if it says 1.4.
Hopefully, the small modifications that I made will benefit to updating every other script.
For those interested this is the part that I had to update:
Code: Select all
function main()
{
createButton();
var dashboard = document.getElementById('dashboard');
var log = document.getElementById('log');
if( !(dashboard && log)) return;
var handle = unsafeWindow.handleResponse;
unsafeWindow.handleResponse = function()
{
var request = unsafeWindow.request;
if (request.readyState == 4)
{
var elem = document.createElement("div");
elem.innerHTML = request.responseText;
var divs = elem.getElementsByTagName("div");
for (var i = 0; i < divs.length; i++)
if (divs[i].id == "rolls")
{
analyzeDiceRolls(divs[i]);
break;
}
}
return handle();
}
}
"Every battle has been won before it's been fought." Sun Tzu
Hmm I installed it played a round in a game and clicked the dice analyzer with no results any suggestions?
Edit: this might help I noticed this at the top
Game not found!! Cookie name: 'conquerclub'
Edit: If its a cookie issue I looked and cant find where to add conquer club? I use IE7 and of course Firefox the latest version.. Any suggestions?
Edit: this might help I noticed this at the top
Game not found!! Cookie name: 'conquerclub'
Edit: If its a cookie issue I looked and cant find where to add conquer club? I use IE7 and of course Firefox the latest version.. Any suggestions?
- cyberdaniel
- Posts: 281
- Joined: Sat Apr 01, 2006 10:31 am
Sorry for the late reply, I'm not online as much as I used to be. The script creates the cookie in case it doesn't exist. The current version of the script was designed to work with the Ajax version of the site. In case you're not running the Ajax version it will not create the cookie and it will not track the statistics.
"Every battle has been won before it's been fought." Sun Tzu
cyberdaniel wrote:Sorry for the late reply, I'm not online as much as I used to be. The script creates the cookie in case it doesn't exist. The current version of the script was designed to work with the Ajax version of the site. In case you're not running the Ajax version it will not create the cookie and it will not track the statistics.
I have AJAX turned off and it seems to be tracking my dice just fine (I think?)... Is that because I was using Dice Analyzer before the 1.5 update? (therefore it doesn't need to create the cookie cuz it's already there)
- cyberdaniel
- Posts: 281
- Joined: Sat Apr 01, 2006 10:31 am
Are you sure it's still tracking? The cookie will not get deleted so you'll still see the statistics, but I don't think they're modifying.
What version are you using and with what version of the web page?
v1.4 was designed for no Ajax and v1.5 was designed for Ajax
What version are you using and with what version of the web page?
v1.4 was designed for no Ajax and v1.5 was designed for Ajax
"Every battle has been won before it's been fought." Sun Tzu
-
soundout9
- Posts: 4519
- Joined: Sun Aug 26, 2007 12:30 pm
- Location: Good ol' MO Clan: Next-Gen Gamers
- Contact:
lol
Will someone tell me exactually how to install this! ive clicked on the link saved the download to my computer but i never shows up in the games im in. Do i need to put the script in my signature or something idk. Som1 just tell me exactually how to do it
- Ishiro
- Posts: 324
- Joined: Mon Jul 17, 2006 5:53 pm
- Gender: Male
- Location: Under the Rainbow
- Contact:
It is a Greasemonkey script. There a nine billion threads on here explaining how to use them.
1) You must be using the FireFox web browser.
2) You must have the Greasemonkey extension installed for FireFox.
3) When you click on the link to the script, it will ask if you want to install it instead of asking you to save it.
1) You must be using the FireFox web browser.
2) You must have the Greasemonkey extension installed for FireFox.
3) When you click on the link to the script, it will ask if you want to install it instead of asking you to save it.
cyberdaniel wrote:Are you sure it's still tracking? The cookie will not get deleted so you'll still see the statistics, but I don't think they're modifying.
What version are you using and with what version of the web page?
v1.4 was designed for no Ajax and v1.5 was designed for Ajax
I'll check next turn.
I'm using 1.5b.
Not sure what you mean regarding what version of the web page. (Ajax is disabled in my settings area)
- cyberdaniel
- Posts: 281
- Joined: Sat Apr 01, 2006 10:31 am
Tyrion81 wrote:cyberdaniel wrote:Are you sure it's still tracking? The cookie will not get deleted so you'll still see the statistics, but I don't think they're modifying.
What version are you using and with what version of the web page?
v1.4 was designed for no Ajax and v1.5 was designed for Ajax
I'll check next turn.
I'm using 1.5b.
Not sure what you mean regarding what version of the web page. (Ajax is disabled in my settings area)
By web page version I meant if you were using the Ajax thing or not.
"Every battle has been won before it's been fought." Sun Tzu
cyberdaniel wrote:Tyrion81 wrote:cyberdaniel wrote:Are you sure it's still tracking? The cookie will not get deleted so you'll still see the statistics, but I don't think they're modifying.
What version are you using and with what version of the web page?
v1.4 was designed for no Ajax and v1.5 was designed for Ajax
I'll check next turn.
I'm using 1.5b.
Not sure what you mean regarding what version of the web page. (Ajax is disabled in my settings area)
By web page version I meant if you were using the Ajax thing or not.
Ok I recant, it's not tracking my dice
- Urban Achiever
- Posts: 72
- Joined: Sat Jul 07, 2007 10:01 pm
Dice
It's great that 1.5 works with Ajax, but i have to have Ajax turned off for my other greasemonkey whatnots, and I can't turn it on just for the dice analyzer. Am I doing something wrong? Can I still get 1.4 somewhere?



