Need a program to spam Zynga poker

NICKB

BANNED
Joined
May 12, 2010
Messages
129
Reaction score
5
Okay, I just was looking at Zynga poker and realized that you can press sit at table, always a random rable, then you can send a message, then you can press lobby. I need a macro or something where I can spam every table. Does anyone know of a program I can use to do this or a program that already does this?

Should I just use a macro or what? Thanks!
 
This should be easy with iMacros. Its just you'll have to sort the tables by buy in (obviously you wont be able to go into the 100m tables etc). Plus it'll be hard to tell which seats are taken...

Your best bet is to sort tables buy minimum buy in.

Then in your iMacro have this:

Choose top table (sorted by buy in).
Click go to table.
Click a seat.
Type a message and enter.
Click another seat.
Type message and enter.
-------------------------------------------------------------------
//the reason you do this twice is because theres no way to determine
whether a seat is taken or not. obviously it wont work all the time.
-------------------------------------------------------------------
Leave table.
Click scroll down button (so it scrolls down only one)
End....




When you repeat the macro it should go through the macro and when coming near to the end it will click scroll down, and go to the top one again (which has changed due to scrolling).
I can make this macro for you if you give me your screen resolution since your going to need to use XY clicks.
 
How much is this software worth for you? I have an awesome programmer who can have it done in Python, depends how much you are willing to pay, I can make him an offer.
 
How much is this software worth for you? I have an awesome programmer who can have it done in Python, depends how much you are willing to pay, I can make him an offer.

I'm not trying to spend anything on it. It's not worth much of anything to me. I can get a macro to do it, I just know it will mess it up sometimes. Thanks anyways
 
Isn't the whole poker app done in flash? You will need some OCR reader. Something like SCAR : http://freddy1990.com/index.php?page=product&name=scar

Or any sort of macro similar. Not sure if IMacros does OCR or just clicking links.

What is OCR? I have worked with macros before, just for basic stuff, but will I be able to figure this program out?
 
What is OCR? I have worked with macros before, just for basic stuff, but will I be able to figure this program out?

As in, you have to be able to read "colors" , "fonts" and bitmaps etc off the screen. Meaning you can't just inject your own code, or mess around with the source.

SCAR is fairly easy (I started using the app when I was 14). There is an easy learning curve, you can write things simple as pie. For example...

Code:
var 
x, y:integer;

begin
x := 50;
y :=50;
clickmouse(x, y); //Click the mouse at the co ordinates 50, 50
end.

It uses the same syntax as Pascal, or I guess a bit of Delphi. It is much much more powerful than IMacros IMO because it can find images/colors on the screen.
 
As in, you have to be able to read "colors" , "fonts" and bitmaps etc off the screen. Meaning you can't just inject your own code, or mess around with the source.

SCAR is fairly easy (I started using the app when I was 14). There is an easy learning curve, you can write things simple as pie. For example...

Code:
var 
x, y:integer;
 
begin
x := 50;
y :=50;
clickmouse(x, y); //Click the mouse at the co ordinates 50, 50
end.

It uses the same syntax as Pascal, or I guess a bit of Delphi. It is much much more powerful than IMacros IMO because it can find images/colors on the screen.

Alright, well will it be an issue that I know nothing about programming? Macros usually allows you to press record, then you do the task, and then you can play it back. Is that what this does or do I actually have to write it out myself? I don't think I would be able to write anything myself.
 
Alright, well will it be an issue that I know nothing about programming? Macros usually allows you to press record, then you do the task, and then you can play it back. Is that what this does or do I actually have to write it out myself? I don't think I would be able to write anything myself.

You will have to write it out yourself.

Honestly, I have given all the help you should need. You can't just expect everything to be done for you.
 
What is OCR? I have worked with macros before, just for basic stuff, but will I be able to figure this program out?

OCR = Optical Character Recognition

HTML:
http://en.wikipedia.org/wiki/Optical_character_recognition

Google (sometimes) is your best friend. :D
 
You will have to write it out yourself.

Honestly, I have given all the help you should need. You can't just expect everything to be done for you.

lol, when did I expect everythine done for me? I simply was asking questions before I download the software. If it requires me to write it myself, I don't know how to do that, which would make the download useless.

Sorry for asking questions.
 
dont expect zango poker being done by free iMacros.... you just wasting your time.
 
My team is willing to pay for this! Everyone who can code a bot or have something existing - PM me!

cheers
 
Back
Top