Results 1 to 5 of 5

Thread: Seq and WineX

  1. #1
    Registered User
    Join Date
    May 2002
    Posts
    6

    Seq and WineX

    Is it possible? I've read a few old posts over at winehq's forums saying that Showeq doesn't work if you run it on a linux box.

    Since EQ is the only thing that's tieing me to windows still....and I don't want to play without SEQ .... Does it work under WineX? And if so did it require any changes to the SEQ box itself?

    Thanks in advance!

  2. #2
    Registered User
    Join Date
    Dec 2001
    Posts
    849
    Search is your friend.... winex
    "What you've just said is one of the most insanely, idiotic things i've ever heard. At no point in your rambling, incoherant response were you even close to anything that could be considered a rational thought. Everyone in this room is now dumber for having listened to it. I award you NO points, and may god have mercy on your soul."

  3. #3
    Registered User Zaphod's Avatar
    Join Date
    Dec 2001
    Posts
    648

    Re: Seq and WineX

    Originally posted by mbiwpeoyc
    Is it possible? I've read a few old posts over at winehq's forums saying that Showeq doesn't work if you run it on a linux box.

    Since EQ is the only thing that's tieing me to windows still....and I don't want to play without SEQ .... Does it work under WineX? And if so did it require any changes to the SEQ box itself?

    Thanks in advance!
    There was support. At some point before I got involved it got broken. A possible fix has been made and will be included in my next CVS commit.

    Enjoy,
    Zaphod (dohpaZ)
    Chief Software Engineer of the Apocalypse.
    http://showeq.doomed.to/
    SourceForge.net user: dohpaz.

    Personal thank you donations are now accepted.

  4. #4
    Registered User
    Join Date
    Oct 2002
    Posts
    93

    Not hard to get working

    I use the transgaming version of Wine. Worth every penny.

    To make seq monitor the same machine which is running EQ under wine, I used the hint from this thread : http://seq.sourceforge.net/forums/sh...ighlight=winex


    The basic hack is to go to packet.cpp and comment out this titbit:

    if ( ((packet.getDestPort() >= LoginServerMinPort) ||
    (packet.getSourcePort() >= LoginServerMinPort)) &&
    ((packet.getDestPort() <= LoginServerMaxPort) ||
    (packet.getSourcePort() <= LoginServerMaxPort)) )
    return;

    I often have 3 copies of SEQ running to monitor both my windows boxes and the winex version.

    -piggy

  5. #5
    Registered User Zaphod's Avatar
    Join Date
    Dec 2001
    Posts
    648

    Re: Not hard to get working

    Originally posted by codepig666
    I use the transgaming version of Wine. Worth every penny.

    To make seq monitor the same machine which is running EQ under wine, I used the hint from this thread : http://seq.sourceforge.net/forums/sh...ighlight=winex


    The basic hack is to go to packet.cpp and comment out this titbit:

    if ( ((packet.getDestPort() >= LoginServerMinPort) ||
    (packet.getSourcePort() >= LoginServerMinPort)) &&
    ((packet.getDestPort() <= LoginServerMaxPort) ||
    (packet.getSourcePort() <= LoginServerMaxPort)) )
    return;

    I often have 3 copies of SEQ running to monitor both my windows boxes and the winex version.

    -piggy
    Actually my attempt at a long-term fix is very much related to that bit of severely malformed code. The problem is that the code in question doesn't do what the author intended (to eliminate only the login server ports).

    My fixed version of the code has the form:
    Code:
      if (((packet.getDestPort() >= LoginServerMinPort) &&
           (packet.getDestPort() <= LoginServerMaxPort)) ||
          (packet.getSourcePort() >= LoginServerMinPort) &&
          (packet.getSourcePort() <= LoginServerMaxPort))
        return;
    So, feel free to replace the malformed code with this and test it. If you do, please let me know if it works.

    Thanks and Enjoy,
    Zaphod (dohpaZ)
    Last edited by Zaphod; 10-29-2003 at 02:58 PM.
    Chief Software Engineer of the Apocalypse.
    http://showeq.doomed.to/
    SourceForge.net user: dohpaz.

    Personal thank you donations are now accepted.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

You may post new threads
You may post replies
You may post attachments
You may edit your posts
HTML code is Off
vB code is On
Smilies are On
[IMG] code is On