Subscribe to CMWONG.COM

CMWONG.COM

Lazy Boy Lazy Blog

As you know that, all the hackers are still working hard to find the hacking method

At the monent, you must need much coins to buy items

Here is one of the fast way to earn coins method

You may never seen it in other website


Special thanks Sammo sharing this method


Actually there are a stupid cheat using webscarab!

When you go to stadium and bet a race! The program send a packet to tell the server you bet a race. You can hold it and wait until the race end and see if you win!

If you dun win, Abort the request and reload the game. If you win, Send the request to the server.

Then you win and never lose!

I have write a autohotkey script to do it automatically and it help me to cheat around $20000 a day

from http://www.cmwong.com/blog/2009/03/pet-society-computer-experts-need/comment-page-4/#comment-2158



I will explain more how to do it

When the match start, there are one request will send to the server
And if you win, there are two more request send but if not win, zero or just one more request send.

If you have use webscarab, there are a “Edit Request” windows pop up when there are request send thru it. I have change the path pattern to only intercept the traffic send to playfish.

Then I only have to count when the match finish. How many “Edit Request” windows are there. Three or more “Edit Request” may means you are the winner. :P

from http://www.cmwong.com/blog/2009/03/pet-society-computer-experts-need/comment-page-5/#comment-2184



This is the portion of code in my script to determine if I win or not.

The “WinGet” function count the no of “Edit Request” windows exist. If equal or more than 3 windows exist. Accept the request or then abort all request.

Loop, 8
{
WinGet, j, Count, Edit Request
Sleep 10000
if (j >= 3)
{
SendRequest(1)
SendRequest(1)
SendRequest(1)
SendRequest(1)
SendRequest(10)
break
}
}
SendAbortRequest(1)
SendAbortRequest(1)
SendAbortRequest(1)
SendAbortRequest(1)
SendAbortRequest(1)
SendAbortRequest(1)
SendAbortRequest(10)
}

from http://www.cmwong.com/blog/2009/03/pet-society-computer-experts-need/comment-page-6/#comment-2204




Ooo right right
I forgot that too

SendRequest(TIME=0)
{
if (TIME = 0)
{
WinWait, Edit Request,
IfWinNotActive, Edit Request, , WinActivate, Edit Request,
WinWaitActive, Edit Request,
MouseClick, left, 666, 884
Sleep, 100
}
else
{
WinWait, Edit Request,,%TIME%
if (ErrorLevel = 0)
{
IfWinNotActive, Edit Request, , WinActivate, Edit Request,
WinWaitActive, Edit Request,
MouseClick, left, 666, 884
Sleep, 100
}
}
}

SendAbortRequest(TIME=0)
{
if (TIME = 0)
{
WinWait, Edit Request,
IfWinNotActive, Edit Request, , WinActivate, Edit Request,
WinWaitActive, Edit Request,
MouseClick, left, 885, 888
Sleep, 100
}
else
{
WinWait, Edit Request,,%TIME%
if (ErrorLevel = 0)
{
IfWinNotActive, Edit Request, , WinActivate, Edit Request,
WinWaitActive, Edit Request,
MouseClick, left, 885, 888
Sleep, 100
}
}
}

from http://www.cmwong.com/blog/2009/03/pet-society-fast-way-to-earn-coins/comment-page-2/#comment-2296

Share and Enjoy:
  • RSS
  • Facebook
  • Twitthis
  • Digg
  • FriendFeed
  • del.icio.us
  • Google Bookmarks
  • Live
  • MySpace
  • Yahoo! Buzz
  • StumbleUpon
  • Reddit
  • Technorati

Related posts:

  1. Pet Society – Auto-brush your pet
  2. Restaurant City – New Coin Hack
  3. Pet Society – New Clone Method
  4. Pet Society – Cash coins bug
  5. Pet Society – Free Unlimited Deer Plushie

  1. Dima Said,

    A video would be nice cuz frankly i understood nothing of this!

  2. MysticTears Said,

    yeah me neither. i learned how to use cheat engine by watching a video.

  3. MadMolBo Said,

    Thanks, it works for me.
    However, i’m really boring that the clone cheat not works anymore. -”-

  4. scarlet Said,

    where to put the script? coz i can’t find a place that allow me to change or put the script. thanks.

  5. salida Said,

    how do we use the script you made??

  6. VV Said,

    This method depends on your luck..
    It is so sad that I never have a chance to clone..

  7. scarlet Said,

    @MadMolBo, can u please tell me how it works?

  8. Giff Said,

    good idea lol but how in the world can auto stript tell if you won or lost? lol

  9. amanda_idr Said,

    can give the video? thx lots… (^_^)

  10. amanda_idr Said,

    can you give us the video? THX LOTS

  11. Sammo Said,

    Oh right
    I didn’t mention the code is for a program called “AutoHotKey”

  12. eedoh Said,

    Successful!

    Sammo, Thanks!

  13. Aiuto Anonimo Said,

    @ sammo:

    Edit Request and Abort Request are functions. You have to declare them before calling them-the problem is, i do not have time doing that.

    Would it be a problem for you to post the complete code???

    Thanks a lot;

    A.A.

  14. Aiuto Anonimo Said,

    Ehu, sorry, i meant “Sendrequest” and “Sendabortrequest”.

    Anyway, thanks and cheers if you can paste the complete code.

    THX.

    A.A.

  15. CMWONG Said,

    @Giff,
    win ,have 3 or more requests
    lost ,have 2 requests

  16. Sammo Said,

    Ooo right right
    I forgot that too

    SendRequest(TIME=0)
    {
    if (TIME = 0)
    {
    WinWait, Edit Request,
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 666, 884
    Sleep, 100
    }
    else
    {
    WinWait, Edit Request,,%TIME%
    if (ErrorLevel = 0)
    {
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 666, 884
    Sleep, 100
    }
    }
    }

    SendAbortRequest(TIME=0)
    {
    if (TIME = 0)
    {
    WinWait, Edit Request,
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 885, 888
    Sleep, 100
    }
    else
    {
    WinWait, Edit Request,,%TIME%
    if (ErrorLevel = 0)
    {
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 885, 888
    Sleep, 100
    }
    }
    }

  17. Sammo Said,

    The two function SendRequest and SendAbortRequest is simple.

    it just go to windows “Edit Request” and click the button to accept or abort the request automaicatlly

  18. ano Said,

    Haven’t tried it yet, but don’t you have to bet manually? Choosing which pet and amount to bet, I mean.

  19. CMWONG Said,

    @Sammo,
    thanks your great help
    if it work with mouse record software, that can win much overnight

  20. Sammo Said,

    Oooo
    I forgot that too
    Here you are

    SendRequest(TIME=0)
    {
    if (TIME = 0)
    {
    WinWait, Edit Request,
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 666, 884
    Sleep, 100
    }
    else
    {
    WinWait, Edit Request,,%TIME%
    if (ErrorLevel = 0)
    {
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 666, 884
    Sleep, 100
    }
    }
    }

    SendAbortRequest(TIME=0)
    {
    if (TIME = 0)
    {
    WinWait, Edit Request,
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 885, 888
    Sleep, 100
    }
    else
    {
    WinWait, Edit Request,,%TIME%
    if (ErrorLevel = 0)
    {
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 885, 888
    Sleep, 100
    }
    }
    }

  21. Sammo Said,

    Oooo
    I forgot that too
    Here you are

    SendRequest(TIME=0)
    {
    if (TIME = 0)
    {
    WinWait, Edit Request,
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 666, 884
    Sleep, 100
    }
    else
    {
    WinWait, Edit Request,,%TIME%
    if (ErrorLevel = 0)
    {
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 666, 884
    Sleep, 100
    }
    }
    }

    SendAbortRequest(TIME=0)
    {
    if (TIME = 0)
    {
    WinWait, Edit Request,
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 885, 888
    Sleep, 100
    }
    else
    {
    WinWait, Edit Request,,%TIME%
    if (ErrorLevel = 0)
    {
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 885, 888
    Sleep, 100
    }
    }
    }
    Should say excellent post. Can’t wait to seeing your next one!

  22. maggy Said,

    @andrew,
    yes but you can do this only once a day!!!!
    this one is giving you enough coins if you can spend some time in ps!!!

  23. CMWONG Said,

    @andrew,
    but if you visit more friends, it get 5 coins only

  24. Alex Said,

    New method to earn coins, it’s work!!!
    http://www.youtube.com/watch?v=2k6_xuvkJqQ

  25. violettals Said,

    Sammo

    Can you please post the whole script for us. At the moment it’s in two parts and I really don’t know which comes first.

    Also it would be great if you can tell us how to install the script into webscarab and how to make it work together.

    As you can see, I’m a beginner at this :)

    Thanks

  26. Sammo Said,

    @andrew,

    I can earn around $20000 for just 4 hours
    Can visit friend do the same?

  27. CMWONG Said,

    @Alex,
    Thanks

  28. Sammo Said,

    @CMWONG,

    Actually AutoHotKey is a mouse recording software

  29. Pet society - new cheat coin part 2 | RockFu.Net - Play with Internet! Said,

    [...] English version CMWONG.COM! thx Sammo! 分享/Share and Enjoy: [...]

  30. tina Said,

    Guys pleez put a video!!
    We are not all professionals..

  31. toilet Said,

    @tina,
    hi, we will add some step for this later.

  32. Sammo Said,

    @andrew,
    The full script do all the job automatically. No touching ur computer after the script running

    The reason why I dun post the full script is that it is far too complicated for a beginner. But I think for a mediate and expert they know how to use AutoHotKey and Webscarab well so it is no point to post the script (Because the script won’t work well unless you update all the mouse movement geometry coordinate correct. It is fast to record a new one).

  33. Sammo Said,

    Hey guy

    I watched the video that Alex post. It is very interesting. but I think you may be tired to clean your pet manually to earn coins. Why don’t do it automatically. Put the script in a file with .ahk extension. Download and install a program called “AutoHotKey”. Then you have to change three mouse

    WinWait, Facebook | Pet Society – Mozilla Firefox,
    IfWinNotActive, Facebook | Pet Society – Mozilla Firefox, , WinActivate, Facebook | Pet Society – Mozilla Firefox,
    WinWaitActive, Facebook | Pet Society – Mozilla Firefox,
    WinWait, Facebook | Pet Society – Mozilla Firefox,
    IfWinNotActive, Facebook | Pet Society – Mozilla Firefox, , WinActivate, Facebook | Pet Society – Mozilla Firefox,
    WinWaitActive, Facebook | Pet Society – Mozilla Firefox,
    loop
    {
    MouseClick, left, 665, 533
    Sleep, 100
    MouseClick, left, 649, 597,,5,D
    loop, 1000
    {
    MouseMove, 822, 490,1
    MouseMove, 0, -50,1,R
    }
    Send, {ESC}{Enter}{ESC}{Enter}{ESC}{Enter}
    Sleep, 5000
    }

  34. Sammo Said,

    I will explain more here how to get the new mouse coordination. First you installed the autohotkey. Then there are a program called “AutoScriptWriter”. Open it and get ur pet society account ready! Then click “Record in the “AutoScriptWriter”. After that, please only click as following:

    1) The inventory box
    2) then your brush
    3) then your pet leg (Really please click the leg)

    You will get something like this:

    WinWait, Facebook | Pet Society – Mozilla Firefox,
    IfWinNotActive, Facebook | Pet Society – Mozilla Firefox, , WinActivate, Facebook | Pet Society – Mozilla Firefox,
    WinWaitActive, Facebook | Pet Society – Mozilla Firefox,
    MouseClick, left, 635, 387
    Sleep, 100
    MouseClick, left, 522, 449
    Sleep, 100
    MouseClick, left, 702, 339
    Sleep, 100

  35. elcuervo Said,

    @Alex,
    This method works fine..
    Thanks for your help

  36. Sammo Said,

    Then the three mouse coordination is:

    635, 387<–Inventory

    522, 449<–Brush

    702, 339<–Pet’s Leg

    See the script here, change the x1,y1 and x2,y2 and x3,y3 with Inventory, Brush and Pet’s Leg mouse coordination:

    Before Change:
    WinWait, Facebook | Pet Society – Mozilla Firefox,
    IfWinNotActive, Facebook | Pet Society – Mozilla Firefox, , WinActivate, Facebook | Pet Society – Mozilla Firefox,
    WinWaitActive, Facebook | Pet Society – Mozilla Firefox,
    loop
    {
    MouseClick, left, x1, y1
    Sleep, 100
    MouseClick, left, x2, y2,,5,D
    loop, 1000
    {
    MouseMove, x3, y3,1
    MouseMove, 0, -50,1,R
    }
    Send, {ESC}{Enter}{ESC}{Enter}{ESC}{Enter}
    Sleep, 5000
    }

    After change:
    WinWait, Facebook | Pet Society – Mozilla Firefox,
    IfWinNotActive, Facebook | Pet Society – Mozilla Firefox, , WinActivate, Facebook | Pet Society – Mozilla Firefox,
    WinWaitActive, Facebook | Pet Society – Mozilla Firefox,
    loop
    {
    MouseClick, left, 635, 387
    Sleep, 100
    MouseClick, left, 522, 449,,5,D
    loop, 1000
    {
    MouseMove, 702, 339,1
    MouseMove, 0, -50,1,R
    }
    Send, {ESC}{Enter}{ESC}{Enter}{ESC}{Enter}
    Sleep, 5000
    }

  37. Sammo Said,

    After all step you have done, right click the script and click “Run Script”. It will start runing forever so please do it while you sleep he he. Every 1000 times it run it will have 5 second for you to right the green “H” icon at the right bottom corner of your Windows to exit the script. Good Luck!!

    I found that PS already lower the coin can be earn for brushing ur pet. Last night it is increased 2 by 2. But today it is 1 by 1.

  38. Sammo Said,

    However I want to say, my auto betting script earn more :P

  39. MysticTears Said,

    please put a video on the betting hack!!! ):
    i don’t understand anything!

  40. choco Said,

    @Sammo,
    i can’t see where the “Run Script” is????

  41. CMWONG Said,

    @Sammo,
    i just try brush my pet, it is 2 coins

  42. Pet Society - Auto-brush your pet : CMWONG.COM Said,

    [...] at http://www.cmwong.com/blog/2009/03/pet-society-fast-way-to-earn-coins/comment-page-3/#comment-2309 [...]

  43. Sammo Said,

    Actually if you

    1) install the AutoHotKey program.
    2) Open a notepad and copy and paste the following code.
    3) save it to xxxx.ahk to Desktop.
    4) Install firefox and login your facebook
    5) Go to your pet society.
    6) Then go to Desktop and double click the xxxx.ahk

    You will see what I mean. Try :P

  44. Sammo Said,

    WinWait, Facebook | Pet Society – Mozilla Firefox,
    IfWinNotActive, Facebook | Pet Society – Mozilla Firefox, , WinActivate, Facebook | Pet Society – Mozilla Firefox,
    WinWaitActive, Facebook | Pet Society – Mozilla Firefox,
    loop
    {
    MouseClick, left, 665, 533
    Sleep, 100
    MouseClick, left, 649, 597,,5,D
    loop, 1000
    {
    MouseMove, 822, 490,1
    MouseMove, 0, -50,1,R
    }
    Send, {ESC}{Enter}{ESC}{Enter}{ESC}{Enter}
    Sleep, 5000
    }

  45. MysticTears Said,

    Sammo,
    what is suppose to happen? i downloaded the programme but what do i do with it?
    i followed your instructions but nothing happen. ):

  46. Aiuto Anonimo Said,

    @ Sammo: thanks a lot, i’m beginning to figure it out.

    Anyway, i understand you don’t wont to post your hard work to be reaped.

    If you want to help, though, that’s the best thing you can do.
    We will update mouse coordinates using AutoIT Window Spy 3.

    Let us know,

    Fede

  47. MysticTears Said,

    can any experts help me? i need instructions.
    PLEASE.
    generationgirls@hotmail.com

  48. Aiuto Anonimo Said,

    @ Sammo:

    Edit: i looked better at it, and i saw some discrepancies.
    There are brackets wich aren’t being closed, if without else, a strange TIME variable…all things i can’t understand if i don’t see the whole code.

    Please, post it, and help us ;-)

    A.A.

  49. L Said,

    thank you so much! :D now i can sleep and earn coins hehehe.. very productive :P

    thanks cm! ur the best :)
    sammo!! thanksss :) *hugs
    alex thankies! for sharing the vid. :D

    and also thanks to everyone who helps around! :) :)

  50. MysticTears Said,

    hey can anybody help me please? i wanna earn coins too. ):

  51. Monet Said,

    For a Mac version – I think Keyboard Maestro will work in place of Autohotkey. But I need help writing a script that OS X will recognize and figuring out how to use Keyboard Maestro. Any Mac people out there that could help me? Or a PC person who wants to play on the dark side?

  52. amweasly Said,

    too complicated!! :(

  53. Angel Said,

    can someone please help me, i really dont’ know what i’m doing wrong. When i refresh after aborting the requests and i have lost, what ever i had won in a pervious tme will also disappear….what am i doing wrong?

  54. bernice Said,

    —————————
    xxxxxxxxx.ahk
    —————————
    Error: Missing “{”

    Line#
    015: SendAbortRequest(1)
    016: SendAbortRequest(1)
    017: SendAbortRequest(1)
    018: SendAbortRequest(1)
    019: SendAbortRequest(1)
    020: SendAbortRequest(1)
    021: SendAbortRequest(10)
    —> 022: }
    025: {
    026: if (TIME = 0)
    027: {
    028: WinWait,Edit Request
    029: IfWinNotActive,Edit Request,
    029: WinActivate,Edit Request
    030: WinWaitActive,Edit Request

    The program will exit.
    —————————

    Sammo, I got this message after i copy both your scripts into the notepad. What actually went wrong? Can you explain thoroughly the steps to do the auto-betting? or it’s too complicated for us? sorry, it’s very confusing. Please help.

  55. ash Said,

    @ Sammo:
    can you give us your whole code?
    because the code not working.

  56. petsfan Said,

    guys, they are going to fix the game on 16th

  57. CMWONG Said,

    @petsfan,
    how do you know that

  58. Monet Said,

    @petsfan,

    How are they going to fix the game?

  59. MysticTears Said,

    please i need some answers. i wanna learn how to do the hacking. i am not here to rip off people’s work. i just want more coins for my pet.

  60. evil Said,

    @Sammo,
    What do you mean by this “I have change the path pattern to only intercept the traffic send to playfish.” .How do you do this on webscarab..Can you tell me more detail about this?

    And if you don’t mind, can you send your full script and more detail instruction to me? gothic707@hotmail.com

    I know about autoscriptwriter and how to record mouse coordinates…maybe if I have your FULL SCRIPT, I can figure out how to do this..(from the start to the end, including looping and clicking “ready”, “pick bet”, etc)

    Thanks a lot Sammo and sorry for my bad english..

  61. MysticTears Said,

    why are you people like this? there are some who understands and some of us who have no clue what to do.
    why can’t those who understand just give help?

  62. Pet Society - Auto-betting Scripts | CMWONG.COM Said,

    [...] Some of scripts available at http://www.cmwong.com/blog/2009/03/pet-society-fast-way-to-earn-coins/ [...]

  63. maggy Said,

    hi guys!!! i am having some troulbe connecting my webscarab this morning, does any of you has the same problem?

  64. bonbon Said,

    hey wong. sorry for this. but your english sucks man. maybe you need to try to get help from others. not that i am against you but your english makes it hard for other people to understand your posts. like me. im just asking if you could make it more clearly for the benefit of other. thankyou wong.

  65. MysticTears Said,

    cm, i don’t understand how to use webscarab along with the script. that is why i am desperately calling for help. i read the post you published many times. i don’t get a thing.

  66. MysticTears Said,

    actually, it is “more clear” &
    “for the benefit of others.”

  67. CMWONG Said,

    @MysticTears,
    have you use webscarab before?

    download it from
    http//sourceforge.net/project/showfiles.php?group_id=64424&package_id=61823
    webscarab-selfcontained-20070504-1631.jar

    must install Java runtime
    run the webscarab-selfcontained-20070504-1631.jar
    in Intercept tab> tick left box and choose POST methods
    set your browser’s proxy setting to localhost 8008
    open Pet Society or other webpage , you will have some popup

  68. MysticTears Said,

    @CMWONG,
    ok i got the webscarab started. i will try to figure out the rest. Thanks so much!

  69. MysticTears Said,

    ok i do not know what to do with the script which Sammo posted. and i lost the money i bet on the pet which lost in the match when i abort the change.
    this is so complicated. anyone kind enough to help?

  70. CMWONG Said,

    @MysticTears,
    when you have set the bet coins and tick that
    there will have a popup, dont click accept , until you win

    if lost , abort all edit request

  71. MysticTears Said,

    i tried. i followed your instructions. i abort all edit request pop-ups when i lost the bet. then i reload the game. the money was gone too. ): regarding the script Sammo came up with, what are we suppose to do with it?

  72. CMWONG Said,

    @MysticTears,
    after you choose the winner in bet,
    once you tick it, will have a popup, dont accept until you win. IT IS VERY IMPORTANT
    when you lost, you will get one more request
    abort both request

  73. f3nling Said,

    i really dont understand but really will like to learn….please sent me some tips
    f3ngling hotmail com

  74. f3nling Said,

    please help

  75. shafa Said,

    i cnt c ur vdo fo sum reson

    cn u please xplain d eaziest way to earn coins clearli?

    um desperate!!!!! plz reply

  76. CMWONG Said,

    @shafa,
    use cheat engine frozen the hygine value,
    use mouse record to record you bursh the pet
    (eg autohotkey, quickmarco)
    play it when you sleep

  77. Regfor Said,

    Here is another automation to automate the friends visiting. Please remember to skip you own pet and you may need to replace the coordinates with your own.

    With CheatEngine Speedhack, the hack can get about 100 in 2 minutes and the total amount depends on how many friends you have.

    ** This hack only works once a day because the second visit to your friend gets no coin.

    #x::ExitApp ; Use the Windows key + x to end
    #s::
    ; Use the Windows key + s to start
    WinWait, Pet Society on Facebook – Avant Browser,
    IfWinNotActive, Pet Society on Facebook – Avant Browser, , WinActivate, Pet Society on Facebook – Avant Browser,
    WinWaitActive, Pet Society on Facebook – Avant Browser,

    loop ? ; Replace the ? with the number of pages of friends
    {
    ; First friend in the list
    MouseClick, left, 740, 757
    Sleep, 1500
    MouseClick, left, 584, 522
    Sleep, 1500
    MouseClick, left, 620, 510
    Sleep, 9000
    MouseClick, left, 646, 587
    Sleep, 2000

    ; Second friend in the list
    MouseClick, left, 651, 719
    Sleep, 1500
    MouseClick, left, 571, 521
    Sleep, 1500
    MouseClick, left, 618, 502
    Sleep, 9000
    MouseClick, left, 640, 576
    Sleep, 2000

    ; Third friend in the list
    MouseClick, left, 587, 712
    Sleep, 1500
    MouseClick, left, 591, 522
    Sleep, 1500
    MouseClick, left, 593, 519
    Sleep, 9000
    MouseClick, left, 638, 572
    Sleep, 2000

    ; Fourth friend in the list
    MouseClick, left, 497, 715
    Sleep, 1500
    MouseClick, left, 578, 531
    Sleep, 1500
    MouseClick, left, 618, 510
    Sleep, 9000
    MouseClick, left, 648, 568
    Sleep, 2000

    ; Fifth friend in the list
    MouseClick, left, 425, 718
    Sleep, 1500
    MouseClick, left, 579, 527
    Sleep, 1500
    MouseClick, left, 602, 523
    Sleep, 9000
    MouseClick, left, 624, 583
    Sleep, 2000

    ; Next page
    MouseClick, left, 355, 765
    Sleep, 500
    }
    return

  78. Anthony Said,

    Goodness, I can’t even understand what to do. How do you input the script? How do you connect to Pet Society? Please explain in more detail.

  79. CMWONG Said,

    @Anthony,
    just are script , to do auto-betting
    this script are record the mouse movement

  80. sakura09 Said,

    i use cheat engine but there is no ‘Address’ appear.. why? that’s why i cant use it.. and where can you download the webscarab?

  81. sakura09 Said,

    i use cheat engine but there is no ‘Address’ appear.. why? that’s why i cant use it.. and where can you download the webscarab?
    Should write excellent post. Looking forward to seeing the next one!

  82. CMWONG Said,

    @sakura09,
    are you using auto-brush?
    http://sourceforge.net/project/showfiles.php?group_id=64424&package_id=61823
    webscarab-selfcontained-20070504-1631.jar

  83. el Said,

    so, we need autohotkey and webscarab? I have vista. is it ok?

  84. CMWONG Said,

    @el,
    no problem

  85. Monet Said,

    Auto-Tree Weaving

    Mac users and PC users who can’t use Cheat Engine might find this tree weaving bot to be useful. PC users need to download Axife. Mac users have their choice of Keyboard and Mouse Recorder 4.1, Keyboard Maestro and QuicKeys. The easiest to use is Keyboard and Mouse Recorder. However – if you want it to repeat more than 10 times (which you do) – you’ll need to spend $18 to get the full version. QuicKeys has a free 30 day demo, costs $79 and is more complicated. Keyboard Maestro doesn’t do what I tell it to, it may work better for you. (If anyone knows of a free mouse and key recorder for Mac – I’m interested).

    You can download Keyboard and Mouse Recorder 4.1 here:

    http://www.versiontracker.com/dyn/moreinfo/macosx/17551

    Instructions for Keyboard and Mouse Recorder 4.1 (KMR):

    1. Open PS and KMR.

    2. KMR’s little tool bar will pop up. Click on Record – which is the blue button in the middle that looks like a stop sign. KMR will begin to record your mouse movements.

    3. Click on the little door at the bottom of your pet’s room to exit the house.

    4. Click okay that you want to exit.

    5. Once outside of the house, move your pet through the trees surrounding the house.

    6. Click on the house so your pet goes back in.

    7. Click stop on KMR’s tool bar to stop the recording.

    8. Click on the button to the left of Record that looks like a floppy. Save the recording.

    9. Click on tools to the right of the Play button. In the box after Play – replace the 1 with 2 for testing purposes. (If you want the bot to run overnight – you’ll have to replace the 1 with a much larger number – something over a 1,000).

    10. Click on the file button (first button on the tool strip) and open the recording file you saved.

    11. Click on play. KMR will take over your Mac and walk your pet through the yard’s trees.

    Helpful Hints:

    If you move your scroll bar to a place that is different from where it was when you recorded the file, your pet isn’t going to hit the trees. So note where the scroll bars are when you record and always have them in the same place when using KMR.

    If you need to stop the bot, hold down the escape key while moving your cursor to the red stop button to stop KMR.

    When you start recording, wait 1 second before moving your pet. When ending the recording, wait 1 second before clicking on stop.

    It takes a few practice recordings before you get one that works well. Practice makes perfect.

    This bot isn’t going to result in a windfall – maybe 300 coins per hour. However, it is better than nothing until we have a Mac script for auto-betting. If someone is able to get it to produce more than 300 coins per hour – I’d be interesting in knowing how you did it.

  86. CMWONG Said,

    @Monet,
    interesting method :)
    is it waste time to go inside and outside the house?
    have you try auto-brush method using MAC ? it can ~20000 coins per hour

  87. Monet Said,

    @CMWONG,

    I tried staying outside of the house but I wasn’t getting coins after one lap through the trees, going back into the house appears to reset it so more coins pop out.

    Cheat Engine is only compatible with PC’s – so the auto brush method doesn’t work since you can’t freeze the happiness level. Mac programs similar to Cheat Engine are iHaxgamez and The Cheat 1.2.1. I’ve tried using both (for hours on end) to locate the happiness values. I’ve been unable to do so, even when running The Cheat as a root. Plus I don’t think iHaxgamez as the ability to freeze a value.

    Another problem is the memory the software is trying to access is locked. It can be unlocked which I’ve done – at least with The Cheat. But either The Cheat is locating the wrong values which explains why I can’t change the happiness level or it’s unable to change that value.

    Are there any other Mac users out there who want to play around with iHaxgamez and The Cheat? You might have better luck than I am.

    I’m also trying to work with Automator (which is in your Applications folder) to create a bot. So far, my Automator refuses to record. Can anyone else get their’s to record?

  88. CMWONG Said,

    @Monet,
    the happiness value is not a exact integer and changing ,so it may really hard to find

  89. VTM Said,

    Hey, I suggest you write another post in greater detail so that we, the more noob ones are able to understand. It’s kinda complicated and instructions is misleanding and not clear enough. Thanks.

  90. CMWONG Said,

    @VTM,
    http://www.cmwong.com/blog/2009/03/pet-society-auto-betting-scripts/

  91. QQ Said,

    I dont understand how to do the betting trick to get more coins. can you please explain in a more detailed manner please?!!?!!?

  92. CMWONG Said,

    @QQ,
    OK,
    use webscarab to stop the data send to server
    use autohotkey to record mouse movement,

    Open webscarab, change the “Include Paths matching” to ps server address

    use autohotkey record the below,
    Go to bet someone, for 500coins, start the race
    until the race end,
    if win ,it may more than 3 popup, accept all
    if lose , about all, restart ps

  93. Monet Said,

    @CMWONG,

    Cheat Engine and iHaxgamez are also unable to locate the coin and paw points value too. So I don’t think the problem is that the happiness value changes. Both cheat softwares were designed to be used with games uploaded to the computer, not online games.

  94. Monet Said,

    @Monet,

    Oops. I meant The Cheat, not Cheat Engine. :)

  95. CMWONG Said,

    @Monet,
    i know,
    coin and paw points cannot find in CE too…
    i guess, happiness value is double type, maybe The Cheat and iHaxgamez not support this..

  96. Monet Said,

    @Monet,

    The Cheat has Double and I’ve used it. I’ve tried changing the results I get, but it doesn’t change the happiness value.

  97. CMWONG Said,

    @Monet,
    maybe you need others cheating software

  98. Ivan Said,

    Hello, thanks for the information. I am new at this and I have a few questions. I managed to use CE and freeze the value of my pet’s happiness, however, the auto-script I don’t understand. I can’t seem to find the coordinates of the inventory box, brush, or pet’s leg. I click “Record” for autoscriptwriter but nothing happened. Can someone explain to me the steps once more? Thank you very much :)

  99. Ivan Said,

    @Ivan, Sorry posting in the wrong location.

  100. Geraldine Said,

    Hi may i know if any of these hacks are still working? Because i think PlayFish has just updated again and i found the auto-brushing hack not working already.

  101. Casper Said,

    I can do the betting trick, it’s just a little hard because you need to click all ACCEPT REQUESTs,until you bet…

    do you have any tips for betting so that I can always bet on the winning pet?

    betting is so hard, even you know your not losing your coIns now…

    tnx for this site and ways to earn money ;)

  102. Eliza Said,

    OH NO!! I was successful in doing this yesterday but now the address won’t appear!! any suggestions?? please help meeeeeeeeeee!!!!

  103. Don Said,

    I don’t understand how to make it automatically.
    Pls HELP !!!

  104. CMWONG Said,

    @Casper,
    for every pet, it is 1/3 opportunity

  105. liana Said,

    doesn t work anymore….

  106. Casper Said,

    @liana, still works for me, but still hard to bet on w/c pet will win..

  107. Camille Said,

    Hi Cmwong,

    I am a safari user, and i really have no idea how to do the tricks you’ve been teaching.. can you help me to understand more please?..

    thank you=)

    For your response, kindly reply @ my email. thanks a lot
    saiyuki_calycam@yahoo.com

    thank you=)

  108. avatar girl Said,

    I already install Auto Hot Key
    can i get “bet.ahk” please T___T
    I already try to create it from all the post
    but still can’t use it and still some error

    or maybe Youtube link please T___T

  109. Eliza Said,

    @Regfor,

    So does this still work? Do I have to record visiting atleast one friend? DO i just copy and paste the script you just wrote here to the CHEAT ENGINE SPEEDHACK program?

    thanks!!

  110. Eliza Said,

    Has anyone used the auto hot key for walking in trees? if you have please help meeeeee by posting the codeeeeeeeeee thankssssss :D

  111. Eliza Said,

    @Regfor,

    I’ve experimented on us and I\ve finally accomplished it. thank you!

    Do you happen to know the codes for walking around trees? :D

  112. Monet Said,

    @Eliza,

    No code is needed to use auto hot key to record walking through the trees.

  113. Eliza Said,

    @Monet,

    Mine won’t walk. It just goes out the house and doesn’t move. and comes back in the house again and goes out again. eventhough I tested it by recording it to go around the trees in my house and back again.

    I actually use axife and it works fine but sometimes its a bit OFF so I’m trying to find a more accurate one so I want to experiment on the auto hot key. Do you use auto hotkey? can you post the codes u use? like how long before the next click and all that? and I’ll just experiment on my codes. Plus I can’t save on axife so I have to walk around the trees once a day to record it every time. (Such a lazy bum I am haha!) :D

  114. avatar girl Said,

    i’m not computer expert
    i have read all the post and write it down in
    Auto Hot Key
    but still didn’t work
    any help pliss
    T__T
    explain in
    youtube will really help
    thanks

  115. liana Said,

    @Casper, hi casper i know this it still work?cause i haven t try it so long

  116. mewmew88 Said,

    @eedoh,

    how to use it eedoh?? tell me..huhu plezzz…=[

  117. mewmew88 Said,

    @Sammo,
    sammo…
    teach me how to use it plezzz…huhu add me in facebook k…i rally need the instructions in using the script..plezz share…huhu=[

  118. mewmew88 Said,

    cm wong…
    u owez mentioning that u get 20k per hour but u never wanna rally share wif us…wat the **** is dat…i rally get knotted by sum of u here.. if u wanna share wif us so better xplain it in a good clear way…a vid maybe help…but plez don’t put it in youtube..the PS admin will find out.

  119. CMWONG Said,

    @mewmew88,
    please read the instrution step by step

    When you go to stadium and bet a race! The program send a packet to tell the server you bet a race. You can hold it and wait until the race end and see if you win!

    If you dun win, Abort the request and reload the game. If you win, Send the request to the server.

  120. mewmew88 Said,

    @CMWONG,
    if so i can hold it, then where is the actual script dat actually cn make 20k per hour n where cn i download this autohotkey…??
    any suggestion?
    rally need help here…i wan 2 learn this…
    thnx 4 da notice n rply cmwong…

  121. avatar girl Said,

    @mewmew88,

    you can download in

    http://www.autohotkey.com/download/

    to CMWONG can I ask for code in bet race

    I have try this code

    Loop, 8
    {
    WinGet, j, Count, Edit Request
    Sleep 10000
    if (j >= 3)
    {
    SendRequest(1)
    SendRequest(1)
    SendRequest(1)
    SendRequest(1)
    SendRequest(10)
    break
    }
    }
    {
    SendAbortRequest(1)
    SendAbortRequest(1)
    SendAbortRequest(1)
    SendAbortRequest(1)
    SendAbortRequest(1)
    SendAbortRequest(1)
    SendAbortRequest(10)
    }

    SendRequest(TIME=0)
    {
    if (TIME = 0)
    {
    WinWait, Edit Request,
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 666, 884
    Sleep, 100
    }
    else
    {
    WinWait, Edit Request,,%TIME%
    if (ErrorLevel = 0)
    {
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 666, 884
    Sleep, 100
    }
    }
    }

    SendAbortRequest(TIME=0)
    {
    if (TIME = 0)
    {
    WinWait, Edit Request,
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 885, 888
    Sleep, 100
    }
    else
    {
    WinWait, Edit Request,,%TIME%
    if (ErrorLevel = 0)
    {
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 885, 888
    Sleep, 100
    }
    }
    }

    but isn’t working

    the truth is I’m not computer expert
    to all expert
    can you help me
    please please please please ^^

  122. avatar girl Said,

    @mewmew88,

    you can download in

    http://www.autohotkey.com/download/

  123. avatar girl Said,

    to CNWONG

    Help me I’m not a computer expert

    but I have made this base from what I read from this site

    Loop, 8
    {
    WinGet, j, Count, Edit Request
    Sleep 10000
    if (j >= 3)
    {
    SendRequest(1)
    SendRequest(1)
    SendRequest(1)
    SendRequest(1)
    SendRequest(10)
    break
    }
    }
    {
    SendAbortRequest(1)
    SendAbortRequest(1)
    SendAbortRequest(1)
    SendAbortRequest(1)
    SendAbortRequest(1)
    SendAbortRequest(1)
    SendAbortRequest(10)
    }

    SendRequest(TIME=0)
    {
    if (TIME = 0)
    {
    WinWait, Edit Request,
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 666, 884
    Sleep, 100
    }
    else
    {
    WinWait, Edit Request,,%TIME%
    if (ErrorLevel = 0)
    {
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 666, 884
    Sleep, 100
    }
    }
    }

    SendAbortRequest(TIME=0)
    {
    if (TIME = 0)
    {
    WinWait, Edit Request,
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 885, 888
    Sleep, 100
    }
    else
    {
    WinWait, Edit Request,,%TIME%
    if (ErrorLevel = 0)
    {
    IfWinNotActive, Edit Request, , WinActivate, Edit Request,
    WinWaitActive, Edit Request,
    MouseClick, left, 885, 888
    Sleep, 100
    }
    }
    }

    but the code won’t work
    Help me please

  124. CMWONG Said,

    @avatar girl,
    You are missing the main part of bet

  125. Charmoii Said,

    i’ve installed the autohotkey already but i can’t find the autoscriptwriter. do i need to install that as well.?

    Actually this is my first time to do some cheat and i can hardly understand any single instrustions here. And another thing, whats the difference between webscarab and autohotkey.

  126. charm Said,

    Why it didn’t work i don’t understand!

    Please sent me a mail for more details about these.

  127. jane Said,

    how do you change the path pattern to only intercept the traffic send to playfish

Add A Comment