Jump to content

Help With Something...


Recommended Posts

Hmm, need some more help plz.

This is my AutoIt EXE file how it is for now:

$answer = MsgBox(4, "Diablo 2", "Do you want to run Diablo 2 with this program?")

If $answer = 7 Then
    MsgBox(0, "Diablo 2", "Diablo 2 did not run")
    Exit
EndIf

If $answer = 6 Then
    MsgBox(0, "Diablo 2", "Diablo 2 loading. Click OK to start.")
EndIf

$Diablo2Exe = IniRead("Config.ini","GLOBAL","Diablo2Exe", "ERROR")

Run($Diablo2Exe, "", @SW_MAXIMIZE)

And this is my INI file:

; Set the Diablo 2 exe to the correct location.

[GLOBAL]
Diablo2Exe=c:\Programfiler\Diablo II\Diablo II.exe
D2Parameters=-skiptobnet -w -ns -lq -res800 -title "Diablo II" -nonotify

[SETTINGS]
Account=YOUR_ACCOUNT_HERE
Password=YOUR_PASS_HERE

[IN-GAME]
Gamename=GAME_NAME_TO_MAKE

HOW do i make Diablo 2 start with the D2Parameters?

I cant figure it out!

I have enother script i downloaded, it have than function, but i can't read it since it's compiled. :whistle:

Link to comment
Share on other sites

  • Developers

$answer = MsgBox(4, "Diablo 2", "Do you want to run Diablo 2 with this program?")

If $answer = 7 Then
   MsgBox(0, "Diablo 2", "Diablo 2 did not run")
   Exit
EndIf

If $answer = 6 Then
   MsgBox(0, "Diablo 2", "Diablo 2 loading. Click OK to start.")
EndIf

$Diablo2Exe = IniRead("Config.ini","GLOBAL","Diablo2Exe", "ERROR")
$Diabloparam = IniRead("Config.ini","GLOBAL","Diablo2Exe", "ERROR")

Run($Diablo2Exe & " " & $Diabloparam, "", @SW_MAXIMIZE)

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • Developers

oops.. typo:

$Diablo2Exe = IniRead("Config.ini","GLOBAL","Diablo2Exe", "ERROR")
$Diabloparam = IniRead("Config.ini","GLOBAL","D2Parameters", "ERROR")

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...