Cheating Network
 
 

Go Back   Cheating Network > General Computing > Programming
Reload this Page [help] NetWinner script. (Moneywheel)



Programming

This is a discussion about [help] NetWinner script. (Moneywheel) within the Programming section, where you will Anything related to programming or scripting should go here.



Reply
 
LinkBack Thread Tools Display Modes
Old 02-16-2008, 01:39 PM   #1 (permalink)
Senior Member
 
champbronc2's Avatar
 
Join Date: Feb 2008
Posts: 612
Reputation: 20
champbronc2 is on a distinguished road
Default [help] NetWinner script. (Moneywheel)

Current script:
Quote:
WinWait, TreasureTrooper.com - Mozilla Firefox,
IfWinNotActive, TreasureTrooper.com - Mozilla Firefox, , WinActivate, TreasureTrooper.com - Mozilla Firefox,
WinWaitActive, TreasureTrooper.com - Mozilla Firefox,
MouseClick, left, 606, 546
Sleep, 16000
MouseClick, left, 807, 558
Sleep, 13000
I need to know how to
A) Make it keep repeating until I am out of my spins.
B) How to stop at a captcha so I can type it.

I know for the captcha I use something like pixelgetcolor but I have no idea where to put that.

So if you can help just edit the script and repost what need be fixed.

Thank you.:redface:
champbronc2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-16-2008, 01:45 PM   #2 (permalink)
Senior Member
 
Seatbelt99's Avatar
 
Join Date: Dec 2007
Location: Grand Rapids, MI
Posts: 1,069
Reputation: 68
Seatbelt99 will become famous soon enough
Send a message via AIM to Seatbelt99 Send a message via MSN to Seatbelt99
Default

A) Make it keep repeating until I am out of my spins.
B) How to stop at a captcha so I can type it.

Code:
Loop, 100
{
WinWait, TreasureTrooper.com - Mozilla Firefox,
IfWinNotActive, TreasureTrooper.com - Mozilla Firefox, , WinActivate, TreasureTrooper.com - Mozilla Firefox,
WinWaitActive, TreasureTrooper.com - Mozilla Firefox,
MouseClick, left, 606, 546
Sleep, 16000
MouseClick, left, 807, 558
Sleep, 13000
pixelGetColor, ColorVariable,  *x/Y of where captcha pops up
If ColorVariable = *ID of color in hex if there IS a captcha*
       PlaySound, 8833***
       Pause
Else
      sleep, 100
}

That should work I think...Not exactly sure on the code of playing a sound but that is in the AHK help file.

Let me know if that is what you needed.
__________________
Seatbelt99 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-16-2008, 02:03 PM   #3 (permalink)
Senior Member
 
champbronc2's Avatar
 
Join Date: Feb 2008
Posts: 612
Reputation: 20
champbronc2 is on a distinguished road
Default

Quote:
Originally Posted by Seatbelt99 View Post
A) Make it keep repeating until I am out of my spins.
B) How to stop at a captcha so I can type it.

Code:
Loop, 100
{
WinWait, TreasureTrooper.com - Mozilla Firefox,
IfWinNotActive, TreasureTrooper.com - Mozilla Firefox, , WinActivate, TreasureTrooper.com - Mozilla Firefox,
WinWaitActive, TreasureTrooper.com - Mozilla Firefox,
MouseClick, left, 606, 546
Sleep, 16000
MouseClick, left, 807, 558
Sleep, 13000
pixelGetColor, ColorVariable,  *x/Y of where captcha pops up
If ColorVariable = *ID of color in hex if there IS a captcha*
       PlaySound, 8833***
       Pause
Else
      sleep, 100
}

That should work I think...Not exactly sure on the code of playing a sound but that is in the AHK help file.

Let me know if that is what you needed.
How can I find the x and y coordinates and the hex color?

I know what they are but not sure how to find that. Is there a tool I can use?:confused:
champbronc2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-16-2008, 02:06 PM   #4 (permalink)
Senior Member
 
Seatbelt99's Avatar
 
Join Date: Dec 2007
Location: Grand Rapids, MI
Posts: 1,069
Reputation: 68
Seatbelt99 will become famous soon enough
Send a message via AIM to Seatbelt99 Send a message via MSN to Seatbelt99
Default

yes, use the autoIt window spy included with the AutoHotKey Download. It should be easy to figure out, it will provide the x/y and hex color code for you by putting your mouse over it.
__________________
Seatbelt99 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-16-2008, 02:13 PM   #5 (permalink)
Senior Member
 
champbronc2's Avatar
 
Join Date: Feb 2008
Posts: 612
Reputation: 20
champbronc2 is on a distinguished road
Default

Quote:
Originally Posted by Seatbelt99 View Post
yes, use the autoIt window spy included with the AutoHotKey Download. It should be easy to figure out, it will provide the x/y and hex color code for you by putting your mouse over it.
Thank you seatbelt:bowdown:

I'll tell you if it works.
champbronc2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-16-2008, 02:35 PM   #6 (permalink)
Senior Member
 
champbronc2's Avatar
 
Join Date: Feb 2008
Posts: 612
Reputation: 20
champbronc2 is on a distinguished road
Default

Okay this is what I got.

Code:
Loop, 100
{
WinWait, TreasureTrooper.com - Mozilla Firefox,
IfWinNotActive, TreasureTrooper.com - Mozilla Firefox, , WinActivate, TreasureTrooper.com - Mozilla Firefox,
WinWaitActive, TreasureTrooper.com - Mozilla Firefox,
MouseClick, left, 606, 546
Sleep, 16000
MouseClick, left, 807, 558
Sleep, 13000
pixelGetColor, ColorVariable,  738, 284

If ColorVariable = 0x99FFFF
       SoundPlay, C:\WINDOWS\Media\ding.wav
       Pause

      sleep, 100
}
It won't loop.

It goes through once and quits.
champbronc2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-16-2008, 03:11 PM   #7 (permalink)
Senior Member
 
Seatbelt99's Avatar
 
Join Date: Dec 2007
Location: Grand Rapids, MI
Posts: 1,069
Reputation: 68
Seatbelt99 will become famous soon enough
Send a message via AIM to Seatbelt99 Send a message via MSN to Seatbelt99
Default

Try this...

Code:
Loop, 100
{
WinWait, TreasureTrooper.com - Mozilla Firefox,
IfWinNotActive, TreasureTrooper.com - Mozilla Firefox, , WinActivate, TreasureTrooper.com - Mozilla Firefox,
WinWaitActive, TreasureTrooper.com - Mozilla Firefox,
MouseClick, left, 606, 546
Sleep, 16000
MouseClick, left, 807, 558
Sleep, 13000
pixelGetColor, ColorVariable,  738, 284

If ColorVariable = 0x99FFFF
{
       SoundPlay, C:\WINDOWS\Media\ding.wav
       Pause
}
      sleep, 100
}

#P::Pause
Then if/when it finds the captcha and you enter it in you will have to hit Windows+P to unpause it.

If that does not work let me know.
__________________
Seatbelt99 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-16-2008, 03:33 PM   #8 (permalink)
Senior Member
 
champbronc2's Avatar
 
Join Date: Feb 2008
Posts: 612
Reputation: 20
champbronc2 is on a distinguished road
Default

Thanks it works now!
champbronc2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-16-2008, 03:36 PM   #9 (permalink)
Senior Member
 
Seatbelt99's Avatar
 
Join Date: Dec 2007
Location: Grand Rapids, MI
Posts: 1,069
Reputation: 68
Seatbelt99 will become famous soon enough
Send a message via AIM to Seatbelt99 Send a message via MSN to Seatbelt99
Default

No problem...In case you did not realize, where i made the mistake is with the If command I needed to put in the { } so it would only run them IF the color was there.

what was happening before it it would run them regardless, thus pausing the script for no reason.

My stupid mistake, but I am glad we figured it out. Good luck on winning!
__________________
Seatbelt99 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Tags
moneywheel, netwinner, script


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Netwinner Bot cheaterdiddy Tutorials / Releases 18 02-23-2008 08:45 PM
NetWinner - Haxable? iforget General Discussion of Networks/Survey Sites 14 02-08-2008 07:08 PM
NetWinner Sifka4 Other / Unlisted Networks 8 12-05-2007 12:31 PM


Powered by vBulletin
Copyright © 2000-2008 Jelsoft Enterprises Limited.
Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.