Open Side Menu Go to the Top

09-25-2008 , 08:41 AM
Yes, searched archives as well as internet for answer to this.

I don't want something that I have to click every time to get a random number. This is exceedingly inefficient when mass multitabling. I'm not exactly sure why this has been the focus on the few threads I've found here and on internet.

I'm hoping for a counter that will go from 1 to 100 and then back to 1 on a continuous basis. Then I just look up to top of screen and use whatever the counter is at currently. For instance, I might say if it's from 1-90 I'll raise AA UTG and if it's from 91-100 I'll limp. Just an example.

All of the counters/clocks I've found as freeware don't auto reset themselves and work on standard 60 seconds. While this setup is workable, it still leaves one with mental calculations that can be eliminated entirely.

So...two questions. First is if anyone knows of a program that will do what I've described. Second, if not, would anyone mind putting together one in the coming days? Can Paypal or Stars an appropriate payment if you want.

Thanks.
Randomizer Quote
Randomizer
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
Randomizer
09-26-2008 , 05:54 AM
Why don't you just use your watch?
Randomizer Quote
09-26-2008 , 05:14 PM
Here's an AHK script that does what you need.

Copy in into a file, name it <whateveryouwant>.ahk.

Run it, and you'll see a timer at the top of your screen that counts to 100 over and over again forever.

Right-click to close, or right-click the tray icon and exit that way.


Code:
; simple timer OSD for randomizing

#singleinstance, force
#noenv

; USER SETTINGS
transparency = 200  ; set this between 0 (invisible) and 255 (completely solid)
speed = 1000        ; this number sets how fast the counter counts (1000 = 1 second)
fontsize = 50       ; self-explanatory
; END USER SETTINGS

gui +lastfound +alwaysontop -caption +toolwindow
gui, margin, 0, 0
gui, color, black
gui, font, cred s%fontsize%
gui, add, Text, vnumber cred +center, XXX
gui, show, x%xloc% y0 noactivate

gid := winexist()
winset, transparent, %transparency%, ahk_id%gid%
wingetpos, , , winw, winh, ahk_id%gid%
xloc := (a_screenwidth/2) - (winw/2)
winmove, %xloc%, 0

gosub, looptheloop
return

looptheloop:
  loop, 100
  {
    guicontrol, , number, %a_index%
    sleep, %speed%
  }
  gosub, looptheloop
return

guicontextmenu:
exitapp
Randomizer Quote
09-26-2008 , 08:36 PM
Quote:
Originally Posted by maybedinero
Why don't you just use your watch?
Quote:
All of the counters/clocks I've found as freeware don't auto reset themselves and work on standard 60 seconds. While this setup is workable, it still leaves one with mental calculations that can be eliminated entirely.
.
Randomizer Quote
09-27-2008 , 03:28 AM
I look at the last digit on the windows clock and multiply by ten, even I can do that in my head while multitabling .
Randomizer Quote
09-30-2008 , 11:27 PM
Thanks for the script. I'm currently in Thailand and haven't been able to get much of a connection at all.

Also thanks to anonymous to responding to first response to me. I was going to reply by quoting myself too. Lol.
Randomizer Quote
10-01-2008 , 05:35 AM
I use this personally, F10 for a 2 second random number onscreen

Code:
;
; AutoHotkey Version: 1.0.47.1
; Language:       English
; Platform:       Win9x/NT
; Author:         Everlong@2p2 / Calling_St@Stoxpoker
;
; Script Function:

#NoEnv 
SendMode Input
SetWorkingDir %A_ScriptDir%
;======================================================

#persistent
f10::
Random, ran, 1, 100, NewSeed
Gui, add, text,, %ran%
Gui, +tooltip +alwaysontop
Gui, -resize -caption
Gui, show

sleep 2000
Gui, destroy
return
========================================================
~^!Q::
ExitApp
return ; Global exit command for Poker-related Scripts
Randomizer Quote
Randomizer
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
Randomizer

      
m