PDA

View Full Version : Anyone have showeq for quarm?



Someone
12-09-2023, 07:22 PM
You can DM me if you prefer. Not sure if it’s allowed,but I’d be willing to donate for your time to get it working.

santa47
01-25-2024, 10:07 PM
I'm about half way there. Got all the structs / opcodes updated. The big problem I have is it uses the original packet format from 2001ish, and I am not strong enough in C derivatives to make the major changes required to reimplement that packet stream style.

Someone
02-06-2024, 07:36 PM
I had originally hoped that all the open source part of this game server would make it easier to get us up and running, but the client is so old it nearly predates showeq all together. Ive tried a few things here and there but yeah... no dice on my end.

Honestly messing with showeq has started me down the path of learning to code... but Ive got a long ways to go. Hosting apps on linux is my thing, creating them... not so much.

BlueAdept
02-07-2024, 03:14 PM
Most of the old versions of ShowEQ are on the sourceforge site. I think one of these https://sourceforge.net/projects/seq/files/ShowEQ/ShowEQ-5.2.x%20-%20for%20project%201999/ will work for that era. It would just need any changes for structs or opcodes that they changed.

santa47
02-10-2024, 01:35 AM
I really didn't want to go all the way back to the dark ages just to get the correct underlying packet format. At that point I'd almost rather use the SINS codebase.

FWIW i've gotten it all tied together to get the datastream, and process the packets into opcode payload formatted app packets, but I've run into a snag on the encryption. I'm either missing something, or secrets has an additional branch they apply that isn't public containing modified crypt code.

santa47
02-14-2024, 03:13 PM
Hey blue, I saw on the roadmap a long term goal is to split showeq into two. Still interested in that? I ask because my solution for capture / decryption due to some frustration is a grpc service offering app packets via stream.

Marcellus
02-15-2024, 10:42 PM
Interesting development! ShowEQ's division into two halves accords with long-term objectives. Your use of a gRPC service for packet capture and decryption is a novel way that may alleviate annoyance while also improving functionality. I'm excited to watch how things progress!
Hey blue, I saw on the roadmap a long term goal is to split showeq into two. Still interested in that? I ask because my solution for capture / decryption due to some frustration is a grpc service offering app packets via stream.

santa47
02-15-2024, 10:49 PM
https://github.com/nomoresecretz/ghoeq/

I have working decryption but the public repo doesn't include those short specific modules or the opcode list, but still working on the branch which turns this into a gRPC service that showeq can connect to, assuming blue wants to support that.