auto loger ,selectserver,support martix card  lua script menu

User Tag List

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

    auto loger ,selectserver,support martix card lua script

    Code:
    login += "if (WoWAccountSelectDialog and WoWAccountSelectDialog:IsShown()) then " +
               "for i = 0, GetNumGameAccounts() do " +
                   "if GetGameAccountInfo(i) == '" + BnetAccount + "' then " +
                       "WoWAccountSelect_SelectAccount(i) " +
                   "end " +
               "end " +
           "elseif (AccountLoginUI and AccountLoginUI:IsVisible()) then " +
               "DefaultServerLogin('" + LoginMail + "', '" + Password + "') " +
               "AccountLoginUI:Hide() " +
           "elseif (RealmList and RealmList:IsVisible()) then " +
               "for i = 1, select('#',GetRealmCategories()) do " +
                   "for j = 1, GetNumRealms(i) do " +
                       "if GetRealmInfo(i, j) == '" + ServerName + "' then " +
                           "RealmList:Hide() " +
                           "ChangeRealm(i, j) " +
                       "end " +
                   "end " +
               "end " +
           "elseif (CharacterSelectUI and CharacterSelectUI:IsVisible()) then " +
               "if GetServerName() ~= '" + ServerName + "' and (not RealmList or not RealmList:IsVisible()) then " +
                   "RequestRealmList(1) " +
               "else " +
              // "  CharacterSelect_Delete(1)  " +
                   " UpdateCharacterList() "+
                   "for i = 0,GetNumCharacters() do " +
                       "if (GetCharacterInfo(i) == '" + CharacterName + "') then " +
                           " CharacterSelect_SelectCharacter(i) " +
                           " {0}:SetScript('OnUpdate', nil) " +
                           " EnterWorld() " +
                       "elseif (i==GetNumCharacters()) then " +
                           " SetGlueScreen(\"charcreate\")  "+
                       "end "+
                    "end " +
                "end " +
           "elseif (CharCreateRandomizeButton and CharCreateRandomizeButton:IsVisible() and GetNumCharacters()~=10) then " +
            " SetSelectedRace(1) "+
            " SetCharacterRace(1) "+
            " SetCharacterGender(GetSelectedSex()) "+
            " SetCharacterCreateFacing(-15) "+
            " CharacterCreateEnumerateClasses(GetAvailableClasses()) "+
            " local _,_,classIndex = GetSelectedClass() "+
            " SetCharacterClass(classIndex) "+
            " CharacterCreate_UpdateHairCustomization() "+
            " CharacterChangeFixup() " +
            " local button = _G[\"CharacterCreateClassButton3\"] button:Click() " +
            " CreateCharacter(\"" + CharacterName + "\")  " +
         "elseif (MovieFrame and MovieFrame:IsVisible()) then "+
            " local movieframe=_G[\"MovieFrame\"]  "+
            " movieframe:Hide() " +
         "elseif (TOSAccept and TOSAccept:IsVisible()) then "+
            " local acceptbutton=_G[\"TOSAccept\"] "+
            " acceptbutton:Enable() "+
            " acceptbutton:Click() " +
         "elseif (CinematicsFrame and CinematicsFrame:IsVisible()) then " +
            " local cinemaframe=_G[\"CinematicsFrameCloseButton\"] "+
            " CinematicsFrameCloseButton:Click()  " +
         "elseif (SecurityMatrixFrame and SecurityMatrixFrame:IsVisible()) then  " +
            " local row=tonumber(_G[\"SecurityMatrix_currentRow\"])   local  column=tonumber(_G[\"SecurityMatrix_currentColumn\"])   " +
            " local willinput= sMartix[row][column]  " +
            " for i=1,string.len(willinput),1 do  " +
               " local singelinput=string.sub(willinput,i,i) " +
               " local numberbutton=_G[\"SecurityMatrixPinwheelButton\"..singelinput..\"\"] " +
               " numberbutton:Click() " +
            " end " +
            " _G[\"SecurityMatrixKeypadButtonOK\"]:Click() " +
         "end ";
    
    
    
    
         string thehax = "";
         
    thehax += " local {0} = CreateFrame('Frame') " +
              " local {1} = 0 " +
              "{0}:SetScript('OnUpdate', "+
                "function() " +
                  "if GetTime()-2> {1} then " +
                       login +
                       "{1} = GetTime() " +
                   "end " +
                "end) ";
                 
    
    
    
                thehax = string.Format(thehax, RandomVarname, RandomVarname);
                thehax += smartix;
    Last edited by debiangrub3; 10-27-2011 at 01:08 AM.

    auto loger ,selectserver,support martix card  lua script
  2. #2
    Bananenbrot's Avatar Contributor
    Reputation
    153
    Join Date
    Nov 2009
    Posts
    384
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This seems to be the new spam bot of the US army in corporation with google... excellent heuristics, even random spelling errors...
    Seriously, I accidently marked your first post I read as spam, something about Bluemagic oO

    Please give me some proof of humanity: Format your code and say something about it^^
    Even though this was posted before, I would +rep (!) you.

    For critics: Fairly ugly and inefficient (to some degree). Use StringBuilder or string.Format on a constant format string.
    Please apply some indentation for readability, you shouldn't be concerned about performance or else you should have minified it...
    Last edited by Bananenbrot; 10-26-2011 at 04:03 AM.

  3. #3
    serock1's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think it is not sent by spam bot. Just some codes for interacting with wow login lua code, and can be used by in-process DoString. Perhaps.

  4. #4
    Bananenbrot's Avatar Contributor
    Reputation
    153
    Join Date
    Nov 2009
    Posts
    384
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah that's obvious... but if you read his other posts und this thread (especially the topic) you may even think he's a bot.

  5. #5
    debiangrub3's Avatar Private
    Reputation
    1
    Join Date
    Aug 2011
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i am not a bot ,is that my main language is not english,my english is poor,so i must less talk.

    ---------- Post added at 01:11 AM ---------- Previous post was at 01:10 AM ----------

    My language is not English, I speak less because I do not know how to express in English. I did not want to say something.

  6. #6
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I must admit I thought you were a spam bot too at first...

Similar Threads

  1. Replies: 2
    Last Post: 06-01-2010, 05:29 AM
  2. [Guide] Lua Scripting Guide is here [Updating]
    By Illidan1 in forum WoW EMU Guides & Tutorials
    Replies: 93
    Last Post: 11-04-2008, 06:56 PM
  3. Lua Scripts!
    By danis in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 12-15-2007, 03:16 PM
  4. How To LUA Script
    By Skuxta in forum WoW EMU Guides & Tutorials
    Replies: 1
    Last Post: 12-13-2007, 04:24 AM
  5. New LUA Scripts
    By 777devil777 in forum World of Warcraft Emulator Servers
    Replies: 8
    Last Post: 11-26-2007, 05:58 PM
All times are GMT -5. The time now is 03:21 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