Large

Facebook MouseHunt Game Auto Horn Blower

By NOrack Last update Oct 31, 2009 — Installed 99,406 times.

Suggestion

in
Subscribe to Suggestion 47 posts, 21 voices



IYG User
FirefoxWindows

Thank you for the macro.
It works great. I just have some small suggestions.
Could you limit the delay horn from 1 to 5 seconds?
Sometimes it got up to 60 seconds.
The King's reward will be automatically off after 90 minutes. So may you continue the macro (by refreshing the homepage) after 90 minutes wait?
Thank you.

 
NOrack Script's Author
FirefoxWindows

Good suggestion, thank you.

I just implemented sound warning feature into the new version of my script (v2.5). After finding that the new feature works well I can move on to fulfilling your requests. Actually, if you know how to read the codes in my script, you can modify the delay by yourself. But in case you dont know where to play with in the script to modify the delay, I promise you I will make the modification easier for you in the next version of the script by introducing new variables holding the value of delays, then I will add comments to explain what to do with those variables so you can reach the condition you need.

I just knew from you that the king reward will stop nagging us after 90 minutes, I will make the script to check every 15 minutes whether the king reward is still there or it has gone.

Again, thank you. It is highly appreciated if you would like to review my script.

 
IYG User
FirefoxWindows

I can read the code a little bit.
You used random var in the last version so I don't know how to change it.
What is the purpose of checking trap?
And may you put the true/false value of sound warning feature, so I can turn it off?
Thank you.

 
IYG User
FirefoxWindows

Did you turn off the timer?
I'd like to have it.
I don't think that checking the trap every 15 minutes whether the king reward is still there is a good idea.
You may got banned from it. Just check the trap again after 90 minutes. And maybe every 15 minutes after that if the king reward is still there.
Hope you got the script fix soon. It's not working right now.
Thank you.

 
NOrack Script's Author
FirefoxWindows

is it still not working for you? it is working for me though. Please reinstall your script to make it works again.
The way my script check every 15 minutes, in my opinion, wont make us get banned, I risk my own game account for that. But use it at your own risk, I provide this script as is without any guarantee you will not get banned. The scripts tell us clearly how it works, including how it checks the king reward nagging captcha every 15 minutes, if you can read the codes. It opens the main page of the game every 15 minutes, if one gets banned by doing that I wonder if there will be people still playing the game right now for all of us surely have been banned.

 
IYG User
FirefoxWindows

Yes, it is working.
I said the script shouldn't check the trap every 15 minutes in King's reward, because basing on the the term, they are not allow players using auto horn or auto refresh program. When there is a King's reward, the monitor will be activated. If the script keeps refreshing the page, then it would be seen as an auto refresh program.
Just my 2 cents thought.

 
IYG User
FirefoxWindows

window.setTimeout(function ()
{ window.location.href = "http://apps.facebook.com/mousehunt/" }, 900000);
Does it support to be 900 instead of 900 000?

 
xcal Scriptwright
OperaWindows

norack i think i gotta agree with IYG about the king's reward thing.

Its not really safe to have it refreshing at a 15 minute interval once king's reward has kicked in. Because the logic is that no players will want to actually refresh the page every 15 minutes when there is a king's reward waiting to be claimed. The 90 minutes or perhaps a 60 minutes delay will be nice. As for the sound effect, can we use an audio file from our pc instead? It will be great if u can point out to us which portion controls wat.. but maybe i'll understand better after learning this greasemonkey language.. seems interesting. Maybe we can upgrade this script to hav a gui one day.. that will be really user friendly.. just like the mafia wars script. Even a newbie can change settings if there is a gui.

 
NOrack Script's Author
FirefoxWindows

@iyg and xcal:
that line tells us that the script will refresh the page every 900 seconds (or 15 minutes), with 900000 is a delay in miliseconds. If you would like to shorten the waiting delay, please change the value to whatever you like, accordingly.

@xcal:
to utilize local sound resource and to implement GUI on this simple script are not in my near future plan. I can't promise you anything regarding this suggestion.

 
xcal Scriptwright
FirefoxWindows

"Check again later after 15 minutes whether the king reward
captcha has gone already or not yet."

Is it possible to change it to check again after a random 30-40 minutes whether the king reward has gone already instead of 15 minutes? I think it'll be safer if what IYG said is true.. (90 minutes for it to disappear).

Dun worry bout the GUI and local sound resources... Those r just some suggestions.. XD

 
NOrack Script's Author
FirefoxWindows

To make this script checks the disapearance of captcha every 30 - 40 minutes.

find these lines:
window.setTimeout(function () { window.location.href = "http://apps.facebook.com/mousehunt/" }, Math.round(Math.random() * 15000) + 900000);

and replace 'em with:
window.setTimeout(function () { window.location.href = "http://apps.facebook.com/mousehunt/" }, Math.round(Math.random() * 600000) + 1800000);

 
xcal Scriptwright
FirefoxWindows

Will there be additional stuff in the about page? Such as changes in the version. 2.8 vs 2.5

 
NOrack Script's Author
FirefoxWindows

I am barely able to have additional task to keep the diff of version and maintain the chronological modification of script from version to version. I do scripting in my spare time and I have the spirit to share what I have made with fellow players around the globe. That is why you see this script on userscripts.org. Beyond that, I do apologize for disappointing all of you my friends because the best I can do still does not fulfill your needs.

p.s: I unfortunately also forgot to record what changes (features and bug fixs) I have done with this script so I can share those info with the script users.

 
xcal Scriptwright
FirefoxWindows

U hav done a great job certainly and your spirit of sharing is something that those who downloaded the script will not forget. I am just giving some feedback on improvements as a user ^_^

I am sorry if my post seems like i am just demanding more out of it. Happy hunting :D

 
Irrony User
FirefoxWindows

what do i have to change to make it such that.
when i get a king reward check the script will stop totally and only check if the king reward is still there after 90-100mins.
since king reward only last for 90mins? does it still work this way?

 
Eugene Yip User
FirefoxWindows

Does the king's reward last for 90 mins?
if so, try this
add it at the bottom of the script
this makes it try and sound the horn every 30mins if there is a reward
not sure if it works though.


var min = 29;
var max = 31;
var hour = 3600000;
var timeout = Math.round((Math.random()*(max-min) + min) * 60000);

if (document.title == "MouseHunt on Facebook | Claim a King's Reward!")
setTimeout(function() { document.location = 'http://apps.facebook.com/mousehunt/soundthehorn.php'; } , timeout);

i have another method of doing it but i require a screenie of the king's reward page.

 
NOrack Script's Author
FirefoxWindows

Dear xcal, your contribution in delivering fresh and useful suggestions is highly appreciated.
We will see how far this script can go in term of evolution. Who knows someday it could be a heavily full-loaded mousehunt script.
But I can promise nobody about that.

 
NOrack Script's Author
FirefoxWindows

Dear Irrony, Eugene Yip has answered your question. I haven't try his code yet but it seems it will work just fine.

In case you need another kind of approach, you can manipulate the approach taken by xcal to fulfill your need.

This will make the script checks the disappearance of captcha every 90 - 100 minutes.
in between that 90 minutes, no activity will be taken.
After the timer reaches 90 - 100 minutes, the script will check the disappearance of captcha.
If the captcha still there after 90 minutes, the script will wait for another 90 minutes to recheck the captcha disappearance.

find these lines:
window.setTimeout(function () { window.location.href = "http://apps.facebook.com/mousehunt/" }, Math.round(Math.random() * 15000) + 900000);

and replace 'em with:
window.setTimeout(function () { window.location.href = "http://apps.facebook.com/mousehunt/" }, Math.round(Math.random() * 600000) + 5400000);

 
NOrack Script's Author
FirefoxWindows

Dear Eugene Yip, thank for helping us achieving our uniquely personal need.
Nice snippet code you suggest, but I dont see when you use that 'hour' variable.

so this line is not necessary in my humble opinion:

var hour = 3600000;

 
Jedi_Knight User
FirefoxMacintosh

First of all let me thank you for your wonderful effort :)

I wish to enquire as to what is the purpose of the repeated refreshing that the script does every ~5 mins or so. I am concerned whether that would potentially flag out the user as a result of the high rate of refreshing.

Would it not be enough to just have the auto horn blowing as well as the hourly check?

Pls enlighten me if there is something I'm missing.

 
Nzzzzz User
FirefoxWindows

I know this might seem like a stupid question.. How can I edit your script like replacing the king's reward checking timer, refreshing every 5 minutes.. Coz I don't have any basic of scripting. Btw are you Indonesian? Some of the line in your scripts are in Indonesian language ^^... Mantep scriptnya bos

 
Ame-furi User
FirefoxWindows

i dont know abt scripting.. my mousehunt account, if i at comp A running auto horn, then im checking at comp B if got king reward, i type the code there will my comp A auto horn stop at king reward page?

will king reward page auto refresh?

 
NOrack Script's Author
FirefoxWindows

Considering so many worries of people who use this script, though I myself undoubtly use this script without modification compared to the released USO version almost 24/7 because I am one of the hunters too, I plan to remove the 'unnecessarily annoying' page refreshing feature in the upcoming version of this script (version 3.1). The captcha checking feature, which is also one type of page refreshing process, will still be there, but with delay 90-100 minutes and keeps doing that repetitively in the same duration of delay until the captcha gone. The result will be a more server friendly mousehunt autoplay script, leaving the hunters and the game developers happy, I guess.

@Jedi_Knight: with this plan, I hope you have nothing to worry anymore.

@Nzzzzz: I am indonesian, acehnese to be precise. It is nice to see more indonesian hunters use my script. speaking in bahasa indonesia: Rame ga indonesian hunter di mousehunt? kenapa ga bikin grup hunter di FB untuk berbagi tips, trick dan pengalaman ngehunt? Susah banged ya nyari gold di mousehunt, trap butut ga ganti-ganti karena gold habis buat beli cheese umpan. -_-
Soal merubah-ubah delay, sudah ada variable disiapkan di bagian awal script. Kalo ada delay yang belum saya siapkan variablenya, tolong diingatkan, ya bro.

@Ame-furi: I dont get your question, buddy. I wish I could help you.

 
Jedi_Knight User
SafariMacintosh

Thanks Norack.

Don't let my question bug you though. As I've said my first intention is that of gratitude and appreciation of your hard work :)

Thanks aplenty!
Looking fwd to seeing the upcoming version~

 
xcal Scriptwright
FirefoxWindows

3.1 sounds good... then i dun hav to modify the scipt after each updates :D

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel