2008-2010 - 2010-2012 - 2012-2018


Author Topic: OA_ServerConnect 4 Windows  (Read 1683 times)

Koma

  • (Archive)Evil|Clan Member
  • *
  • Posts (Archive): 21
OA_ServerConnect 4 Windows
« on: March 24, 2010, 19:40:44 PM »
Here comes the Windows version of OA_ServerConnect:

<OA_ServerConnect_Win>
<OA_ServerConnect_sources>

It's a .zip with the .exe and 5 dll's.
- The .exe must be in the same dir like your openarena.exe, or OA must be in your PATH
- The .dll's must be in the same dir like the OA_ServerConnect.exe or in C:\Windows\system32\

Screenshot under Win7:

http://home.snafu.de/hawkbikes/myStuff/oa/OA_ServerConnect_win.png (most possible offline)



Evil|ObaMa

  • (Archive)Evil|Clan Member
  • *
  • Posts (Archive): 96
Re: OA_ServerConnect 4 Windows
« on: March 25, 2010, 04:12:21 AM »
heeeeeeyyy!!!

and it also supports Widescreen and AERO  :D :D

http://dl.noise-force.com/bilder/oasc.jpg (possible offline)

really nice work, very good!!
works perfectly (tested on Win7 Pro x64)!!

thx a lot  ;D ;D

ObaMa


Evil|ObaMa

  • (Archive)Evil|Clan Member
  • *
  • Posts (Archive): 96
Re: OA_ServerConnect 4 Windows
« on: March 26, 2010, 21:03:36 PM »
hmm today i want join clanwars but the password thing in oasc don't work :(

Panic

  • (Archive)Evil|Clan Admin
  • *
  • Posts (Archive): 516
Re: OA_ServerConnect 4 Windows
« on: March 27, 2010, 00:12:17 AM »
same for me

Panic

  • (Archive)Evil|Clan Admin
  • *
  • Posts (Archive): 516
Re: OA_ServerConnect 4 Windows
« on: March 27, 2010, 00:20:29 AM »
I found the bug  ;D

file: mainwindow.cpp

at line 47+

This:

Code: [Select]
 if (d.getNick() != ""){
            command += "+name " + d.getNick();
        }
        if (d.getNick() != ""){
            command += "+password " + d.getPwd();
        }

have to be:

Code: [Select]
 if (d.getNick() != ""){
            command += "+name " + d.getNick();
        }
        if (d.getPwd() != ""){
            command += "+password " + d.getPwd();
        }

Koma

  • (Archive)Evil|Clan Member
  • *
  • Posts (Archive): 21
Re: OA_ServerConnect 4 Windows
« on: March 27, 2010, 05:42:27 AM »
Yery nice Panic  )( )( )(  ty :)
A really stupid copy&paste mistake  ::)
I will fix it soon.

Workaround: Type something in the nick field and rename in game with ur bind.

Ty 4 testing and ur nice words too, Obama  :)

Koma

  • (Archive)Evil|Clan Member
  • *
  • Posts (Archive): 21
Re: OA_ServerConnect 4 Windows
« on: March 29, 2010, 21:02:03 PM »