Jump to content

  • Curse Sites
Help

Diablo Stopwatch + run Stats


  • Please log in to reply
55 replies to this topic

#21 Smiggins

Smiggins

    Zealot

  • Members
  • 68 posts
  • BattleTag:GhostBusters#1680
  • B-Net Username:Smiggins

Posted 08 December 2012 - 02:44 AM

I don't know if this was just a freak accident, but i timed it on my phone and i was at 30min on my phone but the app was at 45min? any1 have this problem?

#22 thormond

thormond

    Zealot

  • Members
  • 89 posts
  • BattleTag:thormond#2241
  • B-Net Username:thormond

Posted 08 December 2012 - 11:26 AM

View PostSmiggins, on 08 December 2012 - 02:44 AM, said:

I don't know if this was just a freak accident, but i timed it on my phone and i was at 30min on my phone but the app was at 45min? any1 have this problem?
it would imply that i'm actually doing alkaizers in 3-4 minutes - not possible bro :P

#23 Kanio

Kanio

    Zealot

  • Members
  • 132 posts
  • Location:Sweden
  • BattleTag:k4rst3n#2267

Posted 11 December 2012 - 12:35 PM

Just a tiny small thing which prolly get fixed if you redesign the layout but the border for General is a bit too small once you get over three digits. Keep up the good work!

Posted Image

#24 Ashbinder

Ashbinder

    Faithful

  • Members
  • 12 posts
  • Location:Croatia
  • BattleTag:Ashbinder#2138

Posted 12 December 2012 - 12:08 AM

vary nice tool but do you mind posting a sorce code for this i would like to add some more things in to the tool :) like gold per run and staff like that . thnx

#25 thormond

thormond

    Zealot

  • Members
  • 89 posts
  • BattleTag:thormond#2241
  • B-Net Username:thormond

Posted 12 December 2012 - 11:07 AM

Source
here you go (VS C# 2010 template), nevermind Form2, i was just derping with chart control a bit - just remove it

i'm scheduling works on 1.0.3 for this weekend, i don't know how far ill be able to progress through that time

Edited by thormond, 12 December 2012 - 11:13 AM.


#26 Ashbinder

Ashbinder

    Faithful

  • Members
  • 12 posts
  • Location:Croatia
  • BattleTag:Ashbinder#2138

Posted 12 December 2012 - 02:01 PM

thnx :)

#27 Nensec

Nensec

    Zealot

  • Members
  • 77 posts
  • BattleTag:Nensec#2753

Posted 12 December 2012 - 02:10 PM

Why not dump it on google code? : )

#28 Smiggins

Smiggins

    Zealot

  • Members
  • 68 posts
  • BattleTag:GhostBusters#1680
  • B-Net Username:Smiggins

Posted 12 December 2012 - 02:20 PM

View Postthormond, on 08 December 2012 - 11:26 AM, said:

View PostSmiggins, on 08 December 2012 - 02:44 AM, said:

I don't know if this was just a freak accident, but i timed it on my phone and i was at 30min on my phone but the app was at 45min? any1 have this problem?
it would imply that i'm actually doing alkaizers in 3-4 minutes - not possible bro :P
Have you tried using it for like an hour, this could've been my mistake but i'll try it again today after work. B/c i have done it for 7-8 minutes during my runs and its fine, buut i wanted to see how much exp an hour i was getting including loading times ect.

#29 JKlimek

JKlimek

    Sexton

  • Members
  • 326 posts

Posted 12 December 2012 - 02:24 PM

Thanks for making this, I can totally relate to your issues with excel and a stopwatch :)

I'd like to second (or third) the addition of a gold counter.  This should be an easy add since you basically have the code already there for calculating it, you just need a couple more input fields.

Seems kinda like a duh statement, but this is great when running on dual monitors :)

#30 divineanger

divineanger

    Zakarumite

  • Members
  • 6 posts

Posted 14 December 2012 - 07:08 AM

Hello,
First of all I would like to thank you for sharing this amazing application! :Thumbs Up:
My problem is similar to Smiggins - the timer is running extremely slow counting 1 sec every 5-6 or so real time seconds. I have the latest .Net Framework updates and running this on Windows XP 64-bit edition. Any clue how can I fix this?
Thank you in advance.

#31 thormond

thormond

    Zealot

  • Members
  • 89 posts
  • BattleTag:thormond#2241
  • B-Net Username:thormond

Posted 14 December 2012 - 10:33 AM

i was running it on Win7 64-bit, maybe latest .Net Frameworks for WinXP are not compatible with this - but we need like at least 3 ppl using WinXP having this problem to be sure if that's the case (i'm not sure about the other guy)

or lemme ask this: is there anyone using WinXP and NOT encountering this problem? If so, tell this guy your settings

Edited by thormond, 14 December 2012 - 11:27 AM.


#32 piterek2003_new

piterek2003_new

    Faithful

  • Members
  • 22 posts

Posted 14 December 2012 - 11:38 AM

View Postthormond, on 06 December 2012 - 09:00 AM, said:

well i'm using built-in c# parsing from strings to doubles and it happens not to support dots (in my .NET framework version at least)
also when i'm trying to parse string with dots Double.TryParse() fails and exception is properly handled
mby if it differs between framework versions i should write my own parsing method

Just do a replace on that string before parsing.

#33 ikigai

ikigai

    Advanced Member

  • Members
  • PipPipPip
  • 30 posts

Posted 14 December 2012 - 11:39 AM

no problems here win7 64 bit

#34 Nensec

Nensec

    Zealot

  • Members
  • 77 posts
  • BattleTag:Nensec#2753

Posted 15 December 2012 - 06:26 PM

View Postpiterek2003_new, on 14 December 2012 - 11:38 AM, said:

View Postthormond, on 06 December 2012 - 09:00 AM, said:

well i'm using built-in c# parsing from strings to doubles and it happens not to support dots (in my .NET framework version at least)
also when i'm trying to parse string with dots Double.TryParse() fails and exception is properly handled
mby if it differs between framework versions i should write my own parsing method

Just do a replace on that string before parsing.

Localization, different countries use a dot or comma. You need to make sure you make the localization of type invariant ( which is actually just US ) for the parsing or you will get silly exceptions

Edited by Nensec, 15 December 2012 - 06:26 PM.


#35 Goldroger_82

Goldroger_82

    Zealot

  • Members
  • 78 posts

Posted 22 December 2012 - 12:01 PM

Congrats for the tool, amazing

#36 Ordak81

Ordak81

    Zakarumite

  • Members
  • 3 posts

Posted 22 December 2012 - 12:09 PM

Rly gg for this tool. More needed than a lot of dps calculating sites. Thanks.

#37 Wardore

Wardore

    Zakarumite

  • Members
  • 1 posts

Posted 28 December 2012 - 09:23 AM

View Postthormond, on 12 December 2012 - 11:07 AM, said:


here you go (VS C# 2010 template), nevermind Form2, i was just derping with chart control a bit - just remove it

i'm scheduling works on 1.0.3 for this weekend, i don't know how far ill be able to progress through that time

Great tool. Did you manage to finish the 1.0.3 version?
Posted Image

#38 Raknar

Raknar

    Faithful

  • Members
  • 27 posts
  • Location:Austria

Posted 29 December 2012 - 12:45 AM

View Postthormond, on 14 December 2012 - 10:33 AM, said:

i was running it on Win7 64-bit, maybe latest .Net Frameworks for WinXP are not compatible with this - but we need like at least 3 ppl using WinXP having this problem to be sure if that's the case (i'm not sure about the other guy)

or lemme ask this: is there anyone using WinXP and NOT encountering this problem? If so, tell this guy your settings

I am on XP, downloaded the framenetwork 4.0 and it worked.

windowed Diablo decreases my fps, but it works pretty nice.

one more thing:
could you please save more data in your log?  now its time and xp, but seeing xp/hour for each run (not only a medium and last run value) would be nice.

Reason: I like to see wether one area more or less is better, therefore i save more than once a run.



thx for the tool =)
Somebody call for dee docter?

#39 divineanger

divineanger

    Zakarumite

  • Members
  • 6 posts

Posted 29 December 2012 - 06:35 PM

Are you using 32bit version of Win XP?

#40 thormond

thormond

    Zealot

  • Members
  • 89 posts
  • BattleTag:thormond#2241
  • B-Net Username:thormond

Posted 31 December 2012 - 11:03 PM

well i had this holiday thing and dumped some time into learning android D: (mby some time ill develop android version of this one, who knows)

anyway since interface change is something that's giving opportunity to introduce more new things (like gold/h, legendaries/h, charts, blabla) it became hard to design UI that will be able to connect all of these things without having to add more windows and make is as minimalistic as possible, still trying to figure it out - if you guys happen to have some artistic skills you can post here your designs made even via paint ( it doesn't have to be some shiny sophisticated outline, just where to place controls and how the window will expand : P )




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users