Page 1 of 2 12 LastLast
Results 1 to 15 of 28
  1. #1
    dg123's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    552
    Reputation
    10
    Thanks
    264
    My Mood
    Bored

    MegaRealmScriptV3 (AutoHotKey)

    EVERYTHING WORKS IN FULL-SCREEN!
    FEATURES:
    AUTOLOOT V3 Right mouse click
    Drop inv in chest Ctr + D
    Pick up chest Ctr + W
    Inv swap left arrow for slot 1 down arrow for slot 2
    Chat messages F4-6
    Set/Send trade msg F7/F8
    Pause Ctr + P
    Nexus tutorial Ctr + T
    select all items in trade Ctr + A
    Change quality to low F9 (you have to use this for the script to work)
    /tp to /teleport say /tp
    Character slot Ctr + R
    Server selection Ctr + Y
    Turn chat on/off Ctr + H

    PICS:
    imgur: the simple image sharer
    imgur: the simple image sharer

    Scans:
    Qxxq Realmscript.zip - Jotti's malware scan

    <b>Downloadable Files</b> Downloadable Files
    Last edited by dg123; 06-05-2013 at 10:48 PM.

  2. The Following 48 Users Say Thank You to dg123 For This Useful Post:

    6ixth (06-07-2013),Alde. (06-10-2013),andrewshack (06-20-2013),Black (07-27-2013),BlackishPerson (07-16-2013),BlackRayquaza (11-21-2013),demoted123 (06-15-2013),Drowlys (12-23-2013),EnviousGamify (12-05-2013),erocano (04-03-2014),FainTMako (12-31-2013),FIRExFACTION (06-12-2013),Fprrr (06-07-2013),gainb (06-20-2013),gamer788 (06-14-2013),GimmeSomeClient (07-07-2013),guardian352 (06-13-2013),HaHaItsJake (11-11-2013),Helzgoth (06-09-2013),HeroOfSinnoh (11-18-2013),Hourglass1 (01-02-2014),ihazy (11-23-2013),jollyboots (06-24-2013),judi12 (06-22-2013),kiet112 (10-19-2013),ll1312ll (07-31-2013),mingzanliu (06-22-2013),narotox (12-30-2013),NecroticSkull (11-17-2013),OnLevel (06-15-2013),ooVALKYRIIEoo (06-29-2013),passee (06-30-2013),pingaspingaspingas (07-09-2013),quikslvrxx (08-12-2013),RageCakeRule (06-16-2013),rocker1988 (12-31-2013),SheikhMohammed (01-01-2014),snufflesrotmg (07-09-2014),soalokin (12-31-2013),SteveoSchwartzo (12-04-2013),Suedadlol (12-03-2013),ThunderCowNinja (06-29-2013),triborn (06-10-2013),TrollToast (06-14-2013),verarschen00 (01-06-2014),whomedude (07-27-2013),worldwidecoffee (11-11-2013),Xandy123 (01-23-2015)

  3. #2
    TheBeastBlake's Avatar
    Join Date
    May 2013
    Gender
    female
    Posts
    4
    Reputation
    10
    Thanks
    0
    Looks gooD!!2

  4. #3
    6ixth's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    3,033
    Reputation
    661
    Thanks
    19,907
    @Hux

    Approve pls.

  5. #4
    dg123's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    552
    Reputation
    10
    Thanks
    264
    My Mood
    Bored
    Quote Originally Posted by ForeverRed View Post
    @Hux

    Approve pls.
    i was waiting for someone to say it (im not for spamming approvals) but it is taking a long time
    Last edited by dg123; 06-07-2013 at 06:29 PM.

  6. #5
    Hero's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    memes
    Posts
    40,142
    Reputation
    4764
    Thanks
    9,684
    Sorry for the late approval guys. Hux is busy and it's pretty much exam season for most of us.

    Approved.
    [] [] [] [][]

    Editor from 06•14•2011 • 2014
    Donator since 09•16•2011
    Minion from 10•10•2011 • 01•06•2011
    Minion+ from 01•06•2012 • 08•08•2012
    Moderator from 08•08•2012 • 10•06•2012
    Global Moderator from 10•06•2012 • 12•05•2017
    Staff Administrator from 12•05•2017 • 05•01•2019
    Trusted Member since 07•13•2019
    Global Moderator since 09•11•2020




  7. The Following User Says Thank You to Hero For This Useful Post:

    dg123 (06-07-2013)

  8. #6
    dg123's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    552
    Reputation
    10
    Thanks
    264
    My Mood
    Bored
    Quote Originally Posted by Hero View Post
    Sorry for the late approval guys. Hux is busy and it's pretty much exam season for most of us.

    Approved.
    Me too...just finished now its summer! @Hux can you aprove the autoloot bot v2 its part of the autoloot v1
    Last edited by dg123; 06-07-2013 at 08:18 PM.

  9. #7
    dg123's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    552
    Reputation
    10
    Thanks
    264
    My Mood
    Bored
    FIXES IN THE SCRIPT:
    SWAP (replace the swap code with this):
    Code:
    ; switch items
    Left::
    slot = 1
    goto swap
    
    Down::
    slot = 2
    goto swap
    
    ; swap function
    swap:
    MouseGetPos, mousePosX, mousePosY
    WinGetPos, , , winSizeX, winSizeY, A
    ImageSearch, imageLocX, imageLocY, 0, 0, %winSizeX%, %winSizeY%, img\searchimage.png
    MouseClick, Left, imageLocX + (15 * slot) + 18, imageLocY - 55, 2
    MouseMove, mousePosX, mousePosY
    Return
    /tp to /teleport (replace the /tp code with this):
    Code:
    ; convert /tp to /teleport in the game chat
    :*:/tp::
    SendInput, {Enter}/teleport{Space}
    Return
    Last edited by dg123; 06-09-2013 at 04:26 PM.

  10. #8
    RotMGPLS's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    just stole all of kalles code fucking leacher.

  11. #9
    dg123's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    552
    Reputation
    10
    Thanks
    264
    My Mood
    Bored
    Quote Originally Posted by RotMGPLS View Post
    just stole all of kalles code fucking leacher.
    i used 2 ideas from him, but i did not take his codes.
    Example:
    kalle's code for /tp to /teleport:
    Code:
    :*:/tp::
    ClipSaved = %clipboard%
    clipboard = /teleport
    Blockinput, on
    Send ^a
    Send ^v
    Send {space}
    Blockinput, off
    Sleep 100
    clipboard = %ClipSaved%
    ClipSaved = 
    Return
    My code:
    Code:
    ; /tp to /teleport
    :*:/tp::
    SendInput, {Enter}/teleport{Space}
    Return

    Kalle's chat code:
    Code:
    F4::
    ClipSaved = %clipboard%
    clipboard = He lives and reigns and conquers the world
    goto ek
    Mine:
    Code:
    F4::
    SendInput, {Enter}He lives and reigns and conquers the world{Enter}
    return
    Please do not accuse me of stealing, Thanks
    Last edited by dg123; 06-09-2013 at 06:47 PM.

  12. #10
    MasterFart's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    Eastern Steppes
    Posts
    833
    Reputation
    15
    Thanks
    124
    Why don't you just manually enter it, ctrl+v.
    o_o
    The ends justify the means.

  13. #11
    dg123's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    552
    Reputation
    10
    Thanks
    264
    My Mood
    Bored
    Quote Originally Posted by MasterFart View Post
    Why don't you just manually enter it, ctrl+v.
    o_o
    because there are more then one....

  14. #12
    kian1991's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    124
    Reputation
    10
    Thanks
    142
    My Mood
    Bitchy
    what is the res for FS? for me it aint work =( what res u use?

  15. #13
    The richest man is not the one who has the most but the one who needs the least.
    MPGH Member
    Alde.'s Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    1,706
    Reputation
    166
    Thanks
    3,627
    My Mood
    Sleepy
    [QUOTE=dg123;8229585]E[QUOTE]

    Is the code source public? Too busy to download to check atm..!
    Alde is Alde is

  16. #14
    dg123's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    552
    Reputation
    10
    Thanks
    264
    My Mood
    Bored
    [QUOTE=ZBORNOX;8255756][QUOTE=dg123;8229585]E

    Is the code source public? Too busy to download to check atm..!
    wut... its just a ahk script.

  17. #15
    The richest man is not the one who has the most but the one who needs the least.
    MPGH Member
    Alde.'s Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    1,706
    Reputation
    166
    Thanks
    3,627
    My Mood
    Sleepy
    [FONT="Tahoma"][COLOR="Black"][SIZE="2"][QUOTE=dg123;8256224][QUOTE=ZBORNOX;8255756]
    Quote Originally Posted by dg123 View Post
    E

    wut... its just a ahk script.
    Maybe he compiled it has an .exe :3
    Alde is Alde is

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] NEW! AutoHotKey App!
    By AudiTT in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 40
    Last Post: 04-28-2010, 10:44 PM
  2. [Release] AutoHotKey for CoD 4,5,6
    By AudiTT in forum Call of Duty Hacks & Cheats
    Replies: 20
    Last Post: 04-02-2010, 02:40 PM
  3. Autohotkey burst-fire
    By sinister5964 in forum Call of Duty Modern Warfare 2 Help
    Replies: 14
    Last Post: 03-09-2010, 07:15 PM
  4. Simple AutoHotKey Pistol Rapid Fire
    By .:AsianTim:. in forum Combat Arms Hacks & Cheats
    Replies: 74
    Last Post: 09-27-2009, 10:07 PM
  5. Simple AutoHotKey Rapid Fire
    By .:AsianTim:. in forum Combat Arms Hacks & Cheats
    Replies: 16
    Last Post: 08-17-2009, 02:52 AM