[Release][AutoITv3 code] Bot for mailing letters to yourself (gambling ) menu

User Tag List

Results 1 to 9 of 9
  1. #1
    bloodshed794's Avatar Active Member
    Reputation
    49
    Join Date
    Nov 2008
    Posts
    151
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Release][AutoITv3 code] Bot for mailing letters to yourself (gambling )

    AutoItv3 Source for the gambling game with the auction house plain letters ( link below )

    Link Here: HERE
    Link Here: HERE
    Link Here: HERE
    Link Here: HERE
    Link Here: HERE

    Sorry for keeping it bland. People in the previous thread about the 1,000 gold in 15minutes thread ( Link Here: HERE). There is a couple steps on how to run it, because I am somewhat new to AutoIT and I don't know much of pixel searching and executing. So just follow these steps and you should be fine!
    ------------------------------------------------------------
    ------------------------------------------------------------
    1. Fix the coordinates or run at my resolution. Well, in the code below, there are numbers, as in coordinates, for example:

    mouseclick ("left", 150, 550, 1)

    Let me break that apart for you new people to AutoIT:

    Mouseclick - Tells the mouse to click
    "left" - The mouse will click your left button
    150, 550 - Coordinates, going by x, y . You have to fool around with these and the game to line them up right.
    1 - The mouse will click once.


    There is also the following:

    mousemove (150, 157)

    mousemove - Will move the mouse to a certain location

    150, 157 - Coordinates, going by x, y . You have to fool around with these and the game to line them up right.

    --------------------------------------------------------------------

    While $i <= 600 Change the 600 to whatever you want, however many times you want the letter to be sent to yourself.

    ---------------------------------------------------------------------
    2. )
    Where it says :

    Send ("Thanks for trying to find the prize. This is not a winner! However, if you return this to **** you will get 1g back.")

    Change that to a custom message INSIDE THE ""

    --------------------------------------------------------------------

    3.) Where it says:

    end ("NameHERE")

    Edit that to your character name to where the messages will be sent.
    -------------------------------------------------------------------
    4.) Where it says:

    send ("SubjectHERE")

    Edit that to a subject title.
    -----------------------------------------------------------------
    everything else is pretty self explanatory to what I just taught you

    -----------------------------------------------------------------
    How to run the bot correctly.

    ----------------------------------------------------------------

    1.) Go to First person right up next to a mailbox so the mailbox is showing on most of your screen.

    2.) Run the bot.



    IF YOU WANT TO RUN BY MY RESOLUTION, IT'S WINDOWED MODE, WITH 1024X768.


    Here is the source:

    global $i
    sleep (5000)
    mouseclick ("right", 550, 450, 1)
    sleep (1000)
    mouseclick ("left", 150, 550, 1)
    sleep (1000)
    $i = 0
    While $i <= 600
    mousemove (150, 157)
    sleep (1000)
    send ("Spíke")
    sleep (1000)
    Send ("{TAB}")
    sleep (1000)
    send ("Letter")
    sleep (1000)
    Send ("{TAB}")
    sleep (1000)
    Send ("Thanks for trying to find the prize. This is not a winner! However, if you return this to Amathiam you will get 1g back.")
    Send ("{ENTER}")
    send ($i)
    sleep(1000)
    mouseclick ("left", 300, 520, 1)
    sleep (1000)
    $i = $i + 1
    WEnd




    Please do not flame, because honestly, there is no point, I tried to make this to make other lifes easier when doing the game ... So yah, Don't taze me bro
    Last edited by bloodshed794; 04-17-2010 at 08:26 PM.
    Dunemaul


    [Release][AutoITv3 code] Bot for mailing letters to yourself (gambling )
  2. #2
    malik8u's Avatar Active Member
    Reputation
    42
    Join Date
    Jan 2009
    Posts
    93
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's an elite guide, so we can't see it

  3. #3
    turner850's Avatar Member
    Reputation
    14
    Join Date
    Jul 2007
    Posts
    83
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  4. #4
    tashin's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tinkered with the source a little and made it a bit more formated.

    Also the bottom script is for finding the mouse coords by pushing "z".

    Code:
    global $i
    sleep (5000)
    mouseclick ("right", 550, 450, 1)
    sleep (1000)
    mouseclick ("left", 141, 480, 1)
    sleep (1000)
    $i = 0
    While $i <= 600
    mousemove (150, 157)
    sleep (1000)
    send ("****") ; Name of you're intended recipient.
    sleep (1000)
    Send ("{TAB}")
    sleep (1000)
    send ("Letter")
    sleep (1000)
    Send ("{TAB}")
    sleep (1000)
    Send ("Thank you for trying to find the prize.")
    sleep (1000)
    Send ("{ENTER}")
    Send ("{ENTER}")
    Send ("{SPACE}")
    Send ("{SPACE}")
    Send ("{SPACE}")
    Send ("{SPACE}")
    Send ("{SPACE}")
    Send ("{SPACE}")
    Send ("{SPACE}")
    Send ("{SPACE}")
    Send ("{SPACE}")
    Send ("{SPACE}")
    Send (" This is not a winner")
    Send ("{!}")
    sleep (1000)
    Send ("{ENTER}")
    Send ("{ENTER}")
    Send ("However, if you return this to **** you will get 1g back.") ; Replace **** with your main's name.
    sleep (1000)
    Send ("{ENTER}")
    Send ("{ENTER}")
    send ("Ticket #: ")
    send ($i)
    sleep (1000)
    mouseclick ("left", 218, 459, 1)
    sleep (1000)
    $i = $i + 1
    WEnd
    Following is the Coordinates script:

    Code:
    HotKeySet("z","jPos")
    
    While 1
        Sleep(100)
    WEnd
    
    Func jPos()
        $jPos = MouseGetPos()
        MsgBox(0, "Mouse x,y:", $jPos[0] & "," & $jPos[1]) ; $jPos[0] is x co-ordinate and $jPos[1] is Y co-ordinate
    EndFunc
    Last edited by tashin; 04-19-2010 at 12:52 AM.

  5. #5
    bloodshed794's Avatar Active Member
    Reputation
    49
    Join Date
    Nov 2008
    Posts
    151
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ahh thank you, like I said, i'm still new to autoIT, so thanks for tweaking it!
    Dunemaul


  6. #6
    tashin's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Greetings,

    This email is to inform you of our policy regarding player-run casinos. We realize that many players enjoy running or patronizing casinos, and we did not come to this decision lightly. However, due to the many issues caused by casinos, we have decided to prohibit this form of gameplay until further notice. We apologize for any inconvenience this may cause and hope this doesn"t detract from your enjoyment of the game.

    This email is simply a notification of our new policy regarding casinos. Your account will not be negatively affected at this time. However, future violations of this new policy may result in disciplinary action. Thank you for your understanding and cooperation.

    For any game play questions, please refer to our site at Blizzard Support

    *** Please do not respond to this email as all conversations on this matter would be best handled online. ***


    Regards,

    Dehoniarinn
    Game Master
    World of Warcraft
    World of Warcraft Community Site

  7. #7
    bloodshed794's Avatar Active Member
    Reputation
    49
    Join Date
    Nov 2008
    Posts
    151
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yah, I got it, too, I put out the thread before I knew it was a problem.
    Dunemaul


  8. #8
    elinya's Avatar Active Member CoreCoins Purchaser
    Reputation
    40
    Join Date
    Apr 2007
    Posts
    115
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So simply put, are people getting warnings or temp bans for Casino-type activity?
    The mods are sleeping...

  9. #9
    tashin's Avatar Member
    Reputation
    1
    Join Date
    Jan 2007
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Warnings at the moment

Similar Threads

  1. [Release] Bot for Jact
    By mynamesucks in forum World of Warcraft Bots and Programs
    Replies: 35
    Last Post: 05-23-2008, 09:07 AM
All times are GMT -5. The time now is 05:57 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search