Results 1 to 5 of 5
  1. #1
    metre's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Next to you!
    Posts
    137
    Reputation
    10
    Thanks
    2,935
    My Mood
    Paranoid

    Question Crossfire Launcher

    Hello MPGH,
    I want to make an Crossfire Launcher for my Injector.
    But the Launcher does not work very well.
    I always get an error.
    I have Windows 7 64-Bit


    I use this code :

    Code:
    Process.Start("C:\Program Files (x86)\Z8Games\CrossFire\CF_G4box.exe")
    But nothing happens

    Or I use this code :

    Code:
    Process.Start("C:\Program Files (x86)\Z8Games\CrossFire\patcher_cf.exe")
    But then comes an Error "Failed to load url of Version.ini."



    Can anyone say me what I do wrong.

  2. #2
    QryS's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    8
    My Mood
    Tired
    Use just the app. name,you don't need the path,just tell the users to put the launcher in game folder.

  3. #3
    willrulz188's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Ohio?
    Posts
    1,786
    Reputation
    35
    Thanks
    231
    My Mood
    Amazed
    No. The best and easiest way to get the correct location is just reading the registry.

    Code:
    Dim Reg As RegistryKey = Registry.LocalMachine
                Dim RegKey As RegistryKey
                Dim MyValue As String
                RegKey = Reg.OpenSubKey("SOFTWARE\Crossfire")
                MyValue = RegKey.GetValue("{{{{What ever the name is}}}")
                RegKey.Close()
    'Wont fully work
    Find the name or it will just crash
    I dont have crossfire so I'm not 100% sure crossfire has registries that will work for this, but most games do.
    ____

    also I dont think it's
    Code:
    Process.Start("C:\Program Files (x86)\Z8Games\CrossFire\CF_G4box.exe")
    try
    Code:
    Process.Start("C:\Program Files\Z8Games\CrossFire\CF_G4box.exe")
    Question ALL statements! ?
    You're in denial that you're in denial. ?
    [img]https://i360.photobucke*****m/albums/oo45/blood188/Untitled-3.jpg?t=1284590977[/img]

  4. #4
    teddygun300's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    world
    Posts
    43
    Reputation
    20
    Thanks
    526
    My Mood
    Amazed

    Wink

    or
    Code:
      System.Diagnostics.Process.Start("C:\Program Files\Z8Games\CrossFire\CF_G4box.exe")
    and start the .exe as ADMIN

  5. #5
    metre's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Next to you!
    Posts
    137
    Reputation
    10
    Thanks
    2,935
    My Mood
    Paranoid
    Quote Originally Posted by QryS View Post
    Use just the app. name,you don't need the path,just tell the users to put the launcher in game folder.
    Okay, thank you! It work

Similar Threads

  1. [Tutorial] How To : Make Pro Crossfire Launcher Program VB.NET
    By Dark Side in forum CrossFire Spammers, Injectors and Multi Tools
    Replies: 10
    Last Post: 08-07-2011, 03:42 PM
  2. [Tutorial] How To : Make Pro Crossfire Launcher Program VB.NET
    By Dark Side in forum CrossFire Tutorials
    Replies: 6
    Last Post: 08-04-2011, 12:39 PM
  3. What do you think of the new crossfire launcher
    By addcoolman1 in forum CrossFire Discussions
    Replies: 14
    Last Post: 02-17-2011, 04:24 PM
  4. [Release] Crossfire launcher + automatic REZ disable
    By teun95 in forum CrossFire Hacks & Cheats
    Replies: 163
    Last Post: 03-03-2010, 09:13 AM
  5. [Help] plzzzz (Crossfire launcher + automatic REZ disable)
    By tabuzo013 in forum CrossFire Hacks & Cheats
    Replies: 17
    Last Post: 03-02-2010, 03:26 PM