Open the migpro.asm with UltraEdit (Notepad can do it too), and find the lines:

Code:

.data
DlgName db "MigDialog",0
;********INI***********
khead db "details",0
kickUname db "kickuname",0
chatroom db "chatroom",0
inifilename db "setup.ini",0
backslash db "\",0
szNull db 0
unamafini db "uname",0
pfini db "password",0
;***********************

;***********************
sucLogin db "LOGIN SUCCESFULL",0

;************************

IPAddress db "66.151.149.102",0 ; i decied to make it static
Port dd 25
socketerror db "socket error",0
wsadata WSADATA <>
sin sockaddr_in <>



edit the the line that defined configuration setting file, which is originally like this:

Code:
inifilename db "setup.ini",0



change it to setup01.ini like this:
(u can change it to more than 5 letters, but just save it to setup01.ini so we have the same story)

Code:
inifilename db "setup01.ini",0


now change the IP Address and Port number, which is originally like this:

Code:
IPAddress db "66.151.149.102",0 ; i decied to make it static
Port dd 25


into new IP Address and port number, like this:

Code:
IPAddress db "66.151.149.112",0 ; i decied to make it static
Port dd 9119


now save the file into new filename migpro01.asm

0 komentar