[Release] AMulti, a live servers multihack menu

User Tag List

Page 3 of 99 FirstFirst 123456753 ... LastLast
Results 31 to 45 of 1482
  1. #31
    dukafbaby's Avatar Private
    Reputation
    1
    Join Date
    Feb 2010
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone got any good coords?

    [Release] AMulti, a live servers multihack
  2. #32
    Barrt73Rus's Avatar Banned
    Reputation
    171
    Join Date
    May 2009
    Posts
    1,273
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i got DC when using:
    /console stopfall
    /console fly

    not work for me:
    /console noclip
    /run Teleport(<X>,<Y>,<Z>)

    Work for me:
    /console setspeed
    /console climb

  3. #33
    elitestevo999's Avatar Private
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice one Ty

  4. #34
    WannaBeProgrammer's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    156
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    tehepic

    It works ^^ Every functions works!

    Thats a pretty big / stable injection ^^.

  5. #35
    WannaBeProgrammer's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    156
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here´s a list about Keys to bind console window etc.

    (Dident find another list about keys in c#)

    if (ShiftKey)
    {
    switch (vkCode)
    {
    case 48:
    MyKey = ")";
    break;
    case 49:
    MyKey = "!";
    break;
    case 50:
    MyKey = "\"";
    break;
    case 51:
    MyKey = "£";
    break;
    case 52:
    MyKey = "$";
    break;
    case 53:
    MyKey = "%";
    break;
    case 54:
    MyKey = "^";
    break;
    case 55:
    MyKey = "&";
    break;
    case 56:
    MyKey = "*";
    break;
    case 57:
    MyKey = "(";
    break;
    }
    }
    else
    {
    MyKey = (vkCode - 4.ToString();
    }
    }
    else
    {
    // num pad
    if (vkCode >= 96 && vkCode <= 105)
    {
    MyKey = (vkCode - 96).ToString();
    }
    else
    {

    // Function keys
    if (vkCode >= 112 && vkCode <= 123)
    {
    MyKey = "{F" + (vkCode - 111).ToString() + "}";
    }

    //specials
    switch (vkCode)
    {
    case 32:
    MyKey = " ";
    break;
    case 13:
    MyKey = "{Enter}\r\n";
    break;
    case 186:
    if (ShiftKey)
    {
    MyKey = ":";
    }
    else
    {
    MyKey = ";";
    }
    break;
    case 187:
    if (ShiftKey)
    {
    MyKey = "+";
    }
    else
    {
    MyKey = "=";
    }
    break;
    case 188:
    if (ShiftKey)
    {
    MyKey = "<";
    }
    else
    {
    MyKey = ",";
    }
    break;
    case 189:
    if (ShiftKey)
    {
    MyKey = "_";
    }
    else
    {
    MyKey = "-";
    }
    break;
    case 190:
    if (ShiftKey)
    {
    MyKey = ">";
    }
    else
    {
    MyKey = ".";
    }
    break;
    case 191:
    if (ShiftKey)
    {
    MyKey = "?";
    }
    else
    {
    MyKey = "/";
    }
    break;
    case 192:
    if (ShiftKey)
    {
    MyKey = "@";
    }
    else
    {
    MyKey = "'";
    }
    break;
    case 219:
    if (ShiftKey)
    {
    MyKey = "{";
    }
    else
    {
    MyKey = "[";
    }
    break;
    case 221:
    if (ShiftKey)
    {
    MyKey = "}";
    }
    else
    {
    MyKey = "]";
    }
    break;
    case 222:
    if (ShiftKey)
    {
    MyKey = "~";
    }
    else
    {
    MyKey = "#";
    }
    break;
    case 223:
    if (ShiftKey)
    {
    MyKey = "¬";
    }
    else
    {
    MyKey = "`";
    }
    break;
    case 27:
    MyKey = "{Esc}";
    break;
    case 44:
    MyKey = "{Print Screen}";
    break;
    case 145:
    MyKey = "{Scroll Lock}";
    break;
    case 19:
    MyKey = "{Pause Break}";
    break;
    case 144:
    MyKey = "{Num Lock}";
    break;
    case 111:
    MyKey = "/";
    break;
    case 106:
    MyKey = "*";
    break;
    case 109:
    MyKey = "-";
    break;
    case 107:
    MyKey = "+";
    break;
    case 110:
    MyKey = "";
    break;
    case 36:
    MyKey = "{Home}";
    break;
    case 35:
    MyKey = "{End}";
    break;
    case 45:
    MyKey = "{Insert}";
    break;
    case 33:
    MyKey = "{Page Up}";
    break;
    case 46:
    MyKey = "{Delete}";
    break;
    case 34:
    MyKey = "{Page Down}";
    break;
    case 38:
    MyKey = "{Up}";
    break;
    case 37:
    MyKey = "{Left}";
    break;
    case 40:
    MyKey = "{Down}";
    break;
    case 39:
    MyKey = "{Right}";
    break;
    //case 161:
    // MyKey = "{Shift}";
    // break;
    //case 163:
    // MyKey = "{Ctrl}";
    // break;
    case 93:
    MyKey = "{Applications}";
    break;
    case 92:
    MyKey = "{Windows}";
    break;
    case 91:
    MyKey = "{Windows}";
    break;
    //case 162:
    // MyKey = "{Ctrl}";
    // break;
    //case 160:
    // MyKey = "{Shift}";
    // break;
    case 20:
    MyKey = "{Caps Lock}";
    break;
    case 9:
    MyKey = "{Tab}";
    break;
    case 220:
    if (ShiftKey)
    {
    MyKey = "|";
    }
    else
    {
    MyKey = "\\";
    }
    break;
    case 183:
    MyKey = "{Application 1}";
    break;
    case 182:
    MyKey = "{Application 2}";
    break;
    case 166:
    MyKey = "{Browser Back}";
    break;
    case 169:
    MyKey = "{Browser Stop}";
    break;
    case 167:
    MyKey = "{Browser Forward}";
    break;
    case 181:
    MyKey = "{Open Media Player}";
    break;
    case 177:
    MyKey = "{Media Skip Back}";
    break;
    case 179:
    MyKey = "{Media Play/Pause}";
    break;
    case 176:
    MyKey = "{Media Skip Forwards}";
    break;
    case 178:
    MyKey = "{Media Stop}";
    break;
    case 174:
    MyKey = "{Volume--}";
    break;
    case 173:
    MyKey = "{Volume Mute}";
    break;
    case 175:
    MyKey = "{Volume++}";
    break;
    case 172:
    MyKey = "{Open Browser}";
    break;
    case 168:
    MyKey = "{Refresh}";
    break;
    case 171:
    MyKey = "{Favourite}";
    break;
    case 170:
    MyKey = "{Search}";
    break;
    case 180:
    MyKey = "{Emails}";
    break;
    case 8:
    MyKey = "{Backspace}";
    break;

  6. #36
    jonnyc55's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't like it when new users say "It works, thanks alot" or along those lines because i have seen hackers post things on forums and their friends would write comments as such to persuade others to download.

    I might be paranoid (?).

  7. #37
    Norus's Avatar Elite User CoreCoins Purchaser
    Reputation
    347
    Join Date
    Aug 2007
    Posts
    117
    Thanks G/R
    10/4
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thedruid View Post
    /SetConsoleKey("<key>") is not a command.
    SetConsoleKey is part of wow lua api and should be used like that : /run SetConsoleKey("x")

    Originally Posted by Sjustin View Post
    ok, if you crash by flying DONT jump. Make sure you ENABLE fly when you are standing, not moving, and not falling. you wont crash if you do that. i also reccomend putting the noclip on/off into your fly on/off macros. works good for a quick flyaway or to fly underground really fast in an emergency.

    EDIT: STOPFALL DOES NOT WORK!

    EDIT2: DONT FLY INTO WATER = INSTANT DC ALSO DONT FLY AND KEEP MOVING AS YOU TURN IT OFF. DONT MOVE WHEN TELEPORTING = INSTANT DC.
    Flying toggle works fine while moving (but not while falling) in my case, that's strange :s
    You should not be able to move while teleporting, that's strange too
    Don't use stopfall to quickly, d/cs only occurs when I use it right away fall start (in my case)
    Perhaps those bugs are due to addons... hmm

    Originally Posted by Barrt73Rus View Post
    i got DC when using:
    /console stopfall
    /console fly

    not work for me:
    /console noclip
    /run Teleport(<X>,<Y>,<Z>)
    Noclip only work with flymode enabled (there's no sense in falling through the floor... and die)
    And just to be sure, the correct syntax (of any lua command) is : /run Teleport(8,64,512) (for example)


    Btw, I would like to have more details for resolve these disparate bugs ^^
    Last edited by Norus; 03-03-2010 at 01:11 PM.

  8. #38
    Barrt73Rus's Avatar Banned
    Reputation
    171
    Join Date
    May 2009
    Posts
    1,273
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Noclip only work with flymode enabled (there's no sense in falling through the floor... and die)
    lol when i enable fly and move, i got DC

  9. #39
    Barrt73Rus's Avatar Banned
    Reputation
    171
    Join Date
    May 2009
    Posts
    1,273
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    and
    UltraXYZR:
    disconected me

  10. #40
    Arcanejunk's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    it works but...

    it works but cant fly/use the XyZ but spiderman mode works i didint try the rest tho.

  11. #41
    thedruid's Avatar Member
    Reputation
    7
    Join Date
    Oct 2006
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do i get my current position? I notice that the coordinates are not the same as other application.

  12. #42
    Norus's Avatar Elite User CoreCoins Purchaser
    Reputation
    347
    Join Date
    Aug 2007
    Posts
    117
    Thanks G/R
    10/4
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you can use GetTargetPosition()

  13. #43
    thedruid's Avatar Member
    Reputation
    7
    Join Date
    Oct 2006
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah but GetTargetPosition will only return the targets position. It won't print the position so i still have no idea what the position are.
    If i want to teleport directly to a position without aggro a mob i need to know the coordinates.

  14. #44
    WannaBeProgrammer's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    156
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thedruid View Post
    I notice that the coordinates are not the same as other application.
    What application are u refering to?

  15. #45
    Norus's Avatar Elite User CoreCoins Purchaser
    Reputation
    347
    Join Date
    Aug 2007
    Posts
    117
    Thanks G/R
    10/4
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thedruid View Post
    Yeah but GetTargetPosition will only return the targets position. It won't print the position so i still have no idea what the position are.
    If i want to teleport directly to a position without aggro a mob i need to know the coordinates.
    /run print(GetTargetPosition())

Page 3 of 99 FirstFirst 123456753 ... LastLast

Similar Threads

  1. [Release] UltraXYZ (Teleporting on live server)
    By Sel3n in forum World of Warcraft Bots and Programs
    Replies: 30
    Last Post: 09-22-2009, 12:48 AM
  2. Martin Thunder -live server
    By kelat in forum World of Warcraft General
    Replies: 22
    Last Post: 03-20-2007, 05:36 PM
  3. Bugged TBC Item Live server
    By fletcherkid in forum World of Warcraft General
    Replies: 15
    Last Post: 01-24-2007, 09:11 PM
  4. GM island live servers 1.12
    By frigget in forum World of Warcraft Model Editing
    Replies: 14
    Last Post: 11-24-2006, 09:55 AM
  5. live Server GM question!
    By Snor11 in forum Community Chat
    Replies: 0
    Last Post: 09-09-2006, 11:52 PM
All times are GMT -5. The time now is 01:07 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