Is the preorder/account/forum page online ALARM Program!
Posted: February 26th, 2009, 9:17 am
Just a little python script that will get you out of bed if your waiting for that preorder page to load:
(handy if you want to buy another copy or just want to know if your current broken Preorder has been fixed( like me !! ))
Will beep at you on an interval of 11 seconds when it refreshes the page, sure you can work out how to tweak it.
Source code:
Requires a python compiler to be installed(no crazy compiling needs to be done, this aint C++ or even VB)
Download here:
Register to unlock hidden link
And dont forget, enjoy
(handy if you want to buy another copy or just want to know if your current broken Preorder has been fixed( like me !! ))
Will beep at you on an interval of 11 seconds when it refreshes the page, sure you can work out how to tweak it.
Source code:
( Dont even need to download my login.rar just the python compiler and paste that into a text file and rename it .ps )import sys, time, urllib2, winsound
while 1:
try:
page = urllib2.urlopen("Register to unlock hidden link").read()
print "SITE CHANGED"
winsound.Beep(1000, 500)
winsound.Beep(1000, 400)
winsound.Beep(1000, 500)
winsound.Beep(1000, 300)
winsound.Beep(1000, 500)
winsound.Beep(1000, 400)
winsound.Beep(1000, 500)
winsound.Beep(1000, 500)
winsound.Beep(1000, 400)
winsound.Beep(1000, 500)
except:
print "Error fetching"
time.sleep(11)
Requires a python compiler to be installed(no crazy compiling needs to be done, this aint C++ or even VB)
Download here:
Register to unlock hidden link
And dont forget, enjoy