Wizardry Online Auto Roller? menu

Shout-Out

User Tag List

Results 1 to 7 of 7
  1. #1
    JustBenHere's Avatar Member
    Reputation
    5
    Join Date
    Aug 2011
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Wizardry Online Auto Roller?

    Do not suppose anyone has come up with a Wizardy Online auto roller for the bonus point part of the character creation. I gave it a try but could not get one to work. Hell I will even toss in a SoE account with Wizardry closed beta activated on it and 1000 SoE Points if someone can get one going.
    Last edited by JustBenHere; 11-25-2012 at 10:57 AM.

    Wizardry Online Auto Roller?
  2. #2
    JustBenHere's Avatar Member
    Reputation
    5
    Join Date
    Aug 2011
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No one is interested? Just looking for a AHK script

  3. #3
    Qryche51's Avatar Private
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    AutoRoll Macro

    Here's what I did.

    AutoRoll Macro for Wizardry Online Bonus Points.
    ;All x,y coordinates are for 1280x1024.
    ;Press the right key to start the macro.
    ;Press ESC to stop the macro.
    ;Macro will automatically stop on 20 or higher.

    right::
    BreakLoop = 0
    White = 0xffffff
    Loop
    {
    ;This section selects Character race/gender.
    ;Remove semicolon for whatever race/gender you are rolling for.
    ;click 445, 874, 5 ;Race Selection - Human (M)
    ;click 436, 914, 5 ;Race Selection - Human (F)
    ;click 569, 875, 5 ;Race Selection - Elf (M)
    click 566, 917, 5 ;Race Selection - Elf (F)
    ;click 727, 878, 5 ;Race Selection - Dwarf (M)
    ;click 726, 920, 5 ;Race Selection - Gnome (F)
    ;click 874, 878, 5 ;Race Selection - Porkul (M)
    ;click 861, 910, 5 ;Race Selection - Porkul (F)

    sleep 60 ;A slight pause
    ;Start the rolling
    click 569, 984, 5 ;OK Button
    Sleep 2000 ;Wait until the roll is done
    ;Search for white pixels in the area on the screen where a tens digit
    ;would be after the roll is done. This one stops on a 2 (20) or higher
    ;in the tens place.
    PixelSearch, Px, Py, 617, 500, 627, 520, White, 0, Fast RGB
    if (ErrorLevel = 0)
    break
    ;Stop macro
    if (BreakLoop = 1)
    break
    ;Continue to next roll
    click 637, 544, 5 ;OK Button on bonus points dialog.
    sleep 60 ;Pause
    click 720, 982, 5 ;Cancel character and reroll another.
    sleep 60 ;Wait for Server
    }
    return
    Esc::
    BreakLoop = 1
    return

    ;Used to stop macro when a 1 is in the tens place.
    ;PixelSearch, Px, Py, 622, 500, 632, 520, White, 0, Fast RGB

  4. #4
    JustBenHere's Avatar Member
    Reputation
    5
    Join Date
    Aug 2011
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah I cant get the cords down, those ar eway off for the resolution you listed. Just having a hard time with the pixel search

  5. #5
    ParanoiaComplex's Avatar Private
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JustBenHere View Post
    Yeah I cant get the cords down, those ar eway off for the resolution you listed. Just having a hard time with the pixel search
    I just adjusted it for 1920 by 1080 monitors:


    ;AutoRoll Macro for Wizardry Online Bonus Points.
    ;X and Y coords adjusted for 1920 x 1080 monitors.
    ;Press the right key to start the macro.
    ;Press ESC to stop the macro.
    ;Macro will automatically stop on 20 or higher.

    right::
    BreakLoop = 0
    White = 0xffffff

    Loop
    {
    ;This section selects Character race/gender.
    ;Remove semicolon for whatever race/gender you are rolling for.
    ;click 730, 936, 5 ;Race Selection - Human (M)
    ;click 730, 973, 5 ;Race Selection - Human (F)
    ;click 888, 936, 5 ;Race Selection - Elf (M)
    ;click 888, 973, 5 ;Race Selection - Elf (F)
    click 1035, 936, 5 ;Race Selection - Dwarf (M)
    ;click 1035, 973, 5 ;Race Selection - Gnome (F)
    ;click 1190, 936, 5 ;Race Selection - Porkul (M)
    ;click 1190, 973, 5 ;Race Selection - Porkul (F)

    sleep 60 ;A slight pause

    ;Start the rolling

    click 895, 1040, 5 ;OK Button

    Sleep 2100 ;Wait until the roll is done

    ;Search for white pixels in the area on the screen where a tens digit
    ;would be after the roll is done. This one stops on a 2 (20) or higher
    ;in the tens place.

    PixelSearch, Px, Py, 940, 525, 947, 550, White, 0, Fast RGB

    if (ErrorLevel = 0)
    break

    ;Stop macro

    if (BreakLoop = 1)
    break

    ;Continue to next roll

    click 960, 573, 5 ;OK Button on bonus points dialog.

    sleep 60 ;Pause

    click 1025, 1040, 5 ;Cancel character and reroll another.

    sleep 60 ;Wait for Server
    }

    return
    Esc::
    BreakLoop = 1
    return

    ;Used to stop macro when a 1 is in the tens place.
    ;PixelSearch, Px, Py, 940, 525, 952, 550, White, 0, Fast RGB
    Last edited by ParanoiaComplex; 12-28-2012 at 10:01 PM.

  6. #6
    ParanoiaComplex's Avatar Private
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Might want to change the roll wait to 2200 as well. I'm still getting a decent amount of misses with 2100.

  7. #7
    GetPhucked69's Avatar Private
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where do I enter this stuff?

Similar Threads

  1. [Selling] Grand Theft Auto Online Money Drops for PC, and Recovery Services for PC! 100% Safe
    By INFERNOHDX in forum Grand Theft Auto 5 Buy Sell Trade
    Replies: 0
    Last Post: 03-28-2016, 05:02 PM
  2. [Auto-Clicker] Wizardry Online - Bonus Stats AutoIt
    By Osirousftw2 in forum MMO Exploits|Hacks
    Replies: 0
    Last Post: 01-05-2013, 05:52 AM
  3. Evading Hack Detection Mechanisms in Online Games
    By Matt in forum World of Warcraft Guides
    Replies: 4
    Last Post: 10-06-2006, 06:47 PM
  4. Auto Responder
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 0
    Last Post: 04-06-2006, 06:12 AM
All times are GMT -5. The time now is 04:43 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search