[Question] Realmlist menu

Shout-Out

User Tag List

Results 1 to 14 of 14
  1. #1
    frkcoaster6's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Question] Realmlist

    Ok so I am trying to mod the realmlist
    Here is what I used to use.

    Code:
    Dim installpath As String = String.Empty
            installpath = Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Blizzard Entertainment\World of Warcraft", "InstallPath", "")
            Dim fs As New FileStream(installpath & "realmlist.wtf", FileMode.Create, FileAccess.Write)
            Dim s As New StreamWriter(fs)
            s.WriteLine("set realmlist hidden ")
            s.Close()
    I tried adding
    Code:
    \data\enUS
    After
    Code:
    HKEY_LOCAL_MACHINE\SOFTWARE\Blizzard Entertainment\World of Warcraft\data\enUS
    But it doesn't do anything.
    If anyone has any ideas I would appreciate them.

    [Question] Realmlist
  2. #2
    ReidE96's Avatar Archer Authenticator enabled
    Reputation
    470
    Join Date
    Dec 2006
    Posts
    1,625
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you're EU, try enGB. Anyway, you wouldn't add \Data\enUS or \Data\enGB to the registry key. You put it on installpath, like so:

    Code:
    installpath = Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Blizzard Entertainment\World of Warcraft", "InstallPath", "") & "\Data\enGB"
    Last edited by ReidE96; 06-05-2009 at 04:18 PM. Reason: Code tags

  3. #3
    Mitron's Avatar Contributor
    Reputation
    127
    Join Date
    Jun 2008
    Posts
    1,326
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what is this for ?? O.o

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

  4. #4
    frkcoaster6's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks Reid +rep

  5. #5
    ReidE96's Avatar Archer Authenticator enabled
    Reputation
    470
    Join Date
    Dec 2006
    Posts
    1,625
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Happy to help

  6. #6
    frkcoaster6's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Another question >.>
    I know I am doing it wrong, if you have any suggestions.

    Code:
       Dim installpath As String = String.Empty
            installpath = Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Blizzard Entertainment\World of Warcraft", "InstallPath", "")
    
            If Directory.Exists("installpath" & "\Data\enUS\realmlist.wtf") Then
                Dim fs As New FileStream(installpath & "\Data\enUS\realmlist.wtf", FileMode.Create, FileAccess.Write)
                Dim s As New StreamWriter(fs)
                s.WriteLine("set realmlist 65.75.241.232 ")
                s.Close()
            ElseIf Directory.Exists("installpath" & "\Data\enGB\realmlist.wtf") Then
                Dim fs As New FileStream(installpath & "\Data\enGB\realmlist.wtf", FileMode.Create, FileAccess.Write)
                Dim s As New StreamWriter(fs)
                s.WriteLine("set realmlist 65.75.241.232 ")
                s.Close()
            End If

  7. #7
    marco1234's Avatar Active Member
    Reputation
    46
    Join Date
    May 2008
    Posts
    137
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Try this dude..
    Dim installpath As String = String.Empty
    installpath = Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Blizzard Entertainment\World of Warcraft", "InstallPath", "")

    If Directory.Exists("installpath" & "\Data\enUS\realmlist.wtf") Then
    Dim fs As New FileStream(installpath & "\Data\enUS\realmlist.wtf", FileMode.Create, FileAccess.Write)
    Dim s As New StreamWriter(fs)
    s.WriteLine("set realmlist 65.75.241.232 ")
    s.Close()
    Else
    If Directory.Exists("installpath" & "\Data\enGB\realmlist.wtf") Then
    Dim fs As New FileStream(installpath & "\Data\enGB\realmlist.wtf", FileMode.Create, FileAccess.Write)
    Dim s As New StreamWriter(fs)
    s.WriteLine("set realmlist 65.75.241.232 ")
    s.Close()
    End If
    I'm a proffesional DB Developer, worked for top servers like WoWScape, UberWoW etc. I can work for you aswell, add me on MSN: [email protected]
    Still looking for a host, be part of a great succes and earn much money. Add me on MSN.

  8. #8
    frkcoaster6's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can't put Else then If on the next line because it would require an End If before the second If which would kind of void what I am trying to do.

    EDIT: Figured it out.


    Dim installpath As String = String.Empty
    installpath = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE\blizzard entertainment\world of warcraft", "installpath", Nothing)
    If File.Exists(installpath & "\data\enus\realmlist.wtf") Then
    File.Delete(installpath & "\data\enus\realmlist.wtf")
    Dim fs As New FileStream(installpath & "\data\enus\realmlist.wtf", FileMode.Create, FileAccess.Write)
    Dim s As New StreamWriter(fs)
    s.WriteLine("set realmlist realmlist")
    s.Close()
    MsgBox("Launcher Message: Realmlist Sucessfully Set To: realmlist")
    Else : File.Exists(installpath & "\data\engb\realmlist.wtf")
    File.Delete(installpath & "\data\engb\realmlist.wtf")
    Dim fs As New FileStream(installpath & "\data\engb\realmlist.wtf", FileMode.Create, FileAccess.Write)
    Dim s As New StreamWriter(fs)
    s.WriteLine("set realmlist realmlist")
    s.Close()
    MsgBox("Launcher Message: Realmlist Sucessfully Set To: realmlist")
    Last edited by frkcoaster6; 06-06-2009 at 09:57 AM.

  9. #9
    ReidE96's Avatar Archer Authenticator enabled
    Reputation
    470
    Join Date
    Dec 2006
    Posts
    1,625
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'd have suggested using a different filemode myself, but w/e works for you

  10. #10
    frkcoaster6's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The current code isn't going to be permanent, I am attempting to make it have your browse for WoW's location and then it will just work from that.

  11. #11
    ReidE96's Avatar Archer Authenticator enabled
    Reputation
    470
    Join Date
    Dec 2006
    Posts
    1,625
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Look into OpenFileDialog and Settings then. That's what I'd use - a one-off dialogue to locate your main WoW folder (opening by default in the InstallPath folder I'd do), then save the folder they choose to an application setting.

    Links to help you:
    File Dialogues - Common Dialog's in VB .NET - OpenFileDialog, SaveFileDialog, FontDialog, ColorDialog
    Application Settings - Application Settings in VB.NET 2008

  12. #12
    frkcoaster6's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can I add you to msn if I run into any trouble?

  13. #13
    frkcoaster6's Avatar Member
    Reputation
    7
    Join Date
    May 2008
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Which I did hehe. God I fail at scripting >.>

  14. #14
    ReidE96's Avatar Archer Authenticator enabled
    Reputation
    470
    Join Date
    Dec 2006
    Posts
    1,625
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yup, but I'm not on MSN that much Addy is on my profile.

Similar Threads

  1. [Request / question of possibility] Private Server Lag Tool Via Realmlist Input
    By owndapwn in forum World of Warcraft Bots and Programs
    Replies: 6
    Last Post: 10-27-2008, 01:15 AM
  2. Question regarding Realmlist
    By nieco in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 12-20-2007, 05:51 AM
  3. [QUESTION]What is the PTR realmlist?
    By R3DINK in forum World of Warcraft General
    Replies: 2
    Last Post: 10-21-2007, 10:13 AM
  4. Question..
    By janzi9 in forum Community Chat
    Replies: 3
    Last Post: 04-02-2006, 10:20 AM
  5. A GALB question
    By bassman in forum World of Warcraft General
    Replies: 4
    Last Post: 03-28-2006, 09:49 AM
All times are GMT -5. The time now is 06:36 PM. 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