Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

tickleu

Members
  • Posts

    33
  • Joined

  • Last visited

    Never

Everything posted by tickleu

  1. Alright, thanks for adding to it.
  2. Some people prefer to have there IP not shown by others. Title says all so lets make this quick. Open up your client in vb6 and go to modClientTcp. Find: frmMain.Socket.RemoteHost = Options.IP frmMain.Socket.RemotePort = Options.Port and replace to this: frmMain.Socket.RemoteHost = IP frmMain.Socket.RemotePort = Port Next go to modConstants and add this anywere: 'Connection Protocol Public Const IP As String = "127.0.0.1" Public Const PORT As String = 5555 Next go to modDatabase and search for "Public Sub SaveOptions()" Delete all these lines of code: Call PutVar(filename, "Options", "IP", Options.IP) Call PutVar(filename, "Options", "Port", Str(Options.PORT)) Options.IP = "127.0.0.1" Options.PORT = 7001 Options.IP = GetVar(filename, "Options", "IP") Options.PORT = Val(GetVar(filename, "Options", "Port")) Thats all. Just delete your current config.ini and compile and run.
×
×
  • Create New...