help needed to create costom launcher

Results 1 to 6 of 6
  1. #1
    Member GunGrave21 is offline
    MemberRank
    Jul 2008 Join Date
    RigaLocation
    58Posts

    help needed to create costom launcher

    ok, im programing launcher in vb6.

    just i have one question.
    can anyone tell me how to run aion bin file with shell command.
    so he would accept ip configs. tryed to do this.

    shell("bin32\aion.bin", -ip:127.0.0.1 -ng -port:2106 -cc:1 -lang:enu);

    But he doesnt allow simbol : near ip or other option.

    And yes im new to vb6 so help realy would be needed.
    thx in adv.


  2. #2
    The Cat in the Hat cypher is offline
    MemberRank
    Oct 2005 Join Date
    IrelandLocation
    5,073Posts

    Re: help needed to create costom launcher

    I hate vb but this is how you should i would do it:

    Declare a string variable called params with the text you need to use as parameters.
    Use the string variable in shell like this:

    shell("bin32\aion.bin " & params);

  3. #3
    Member GunGrave21 is offline
    MemberRank
    Jul 2008 Join Date
    RigaLocation
    58Posts

    Re: help needed to create costom launcher

    oh thank you cypher :) ill try this out.
    You are realy helpfull!
    Now i go and prectice a bit.
    i have c# downloaded too but cant see understand how to program a launcher there. I used c++ to make wow scripts tho.

  4. #4
    Member GunGrave21 is offline
    MemberRank
    Jul 2008 Join Date
    RigaLocation
    58Posts

    Re: help needed to create costom launcher

    cypher is this will be correct or i should declare more values?
    Dim params As String
    params = -ip:127.0.0.1 -ng -port:2106 -cc:1 -lang:enu
    Shell("bin32/aion.bin" & params)[COLOR="Silver"]
    Last edited by GunGrave21; 28-03-10 at 02:20 PM. Reason: double post

  5. #5
    Member 5even is offline
    MemberRank
    Nov 2008 Join Date
    USALocation
    59Posts

    Re: help needed to create costom launcher

    Quote Originally Posted by GunGrave21 View Post
    cypher is this will be correct or i should declare more values?
    Dim params As String
    params = -ip:127.0.0.1 -ng -port:2106 -cc:1 -lang:enu
    Shell("bin32/aion.bin" & params)[COLOR="Silver"]
    put a quote on your params string like so:

    "-ip:127.0.0.1 -ng -port:2106 -cc:1 -lang:enu"

  6. #6
    Valued Member barbatocu is offline
    MemberRank
    Apr 2007 Join Date
    RomaniaLocation
    126Posts

    Re: help needed to create costom launcher

    I want to make a launcher for my server can you help me..?tkx



Advertisement