Search:

Type: Posts; User: SEQLurker

Search: Search took 0.00 seconds.

  1. Here's my ever so slight contribution to the seq...

    Here's my ever so slight contribution to the seq project - I added 2 to everything in opcodes.h, except for the ones that said obsolete at the bottom, because I was tired of adding 2 by then. ;) I...
  2. Replies
    54
    Views
    42,673

    gnome01, I don't mean to sound mean and nasty,...

    gnome01,

    I don't mean to sound mean and nasty, but the answer to your question has been answered at least 3 times in this very thread. I suggest you scroll up and read.
  3. Replies
    11
    Views
    8,507

    WinHex (http://www.winhex.com/winhex/index-m.html)

    WinHex
  4. Replies
    25
    Views
    18,592

    If anyone cares, here it is modified so it...

    If anyone cares, here it is modified so it compiles under VC++...


    #include <stdio.h>
    #include <stdlib.h>

    int main (int argc, char **argv)
    {
    /* NOTE: search algorithm depends on each...
  5. Replies
    54
    Views
    42,673

    Change this: ret = sendto(ssocket,...

    Change this:


    ret = sendto(ssocket, &SessionKey, sizeof(unsigned long long), 0, (SOCKADDR *)&seq, sizeof(seq));


    To this:


    ret = sendto(ssocket, (char *) &SessionKey, sizeof(ULONGLONG),...
  6. Replies
    30
    Views
    17,568

    I don't know if this means anything to anyone,...

    I don't know if this means anything to anyone, but there's a debug.txt file in the eq dir, and when run as admin, I get:

    SisaOpenComms rdp_create beginSisaOpenComms rdp_create endSisaOpenComms...
  7. Replies
    54
    Views
    42,673

    You need to replace all the 'unsigned long long'...

    You need to replace all the 'unsigned long long' with 'ULONGLONG'...

    You need to replace the call to 'sleep' with a call to 'Sleep'...

    For the error in line 171, you probably just need to...
  8. Thread: 0xFFFFFFFF*

    by SEQLurker
    Replies
    8
    Views
    5,506

    Hmm... I haven't played around with the key...

    Hmm... I haven't played around with the key pullers, and thus haven't seen any sample keys, but out of curiosity, if it doesn't start with 0xffffffff, does it start with 0x00000000? If so, it'd...
  9. Replies
    17
    Views
    12,214

    Aye, I mis-typed... had it right in my head, but...

    Aye, I mis-typed... had it right in my head, but forgot the 'times' in my post... 4 billion times more is what I meant to say. Clearly I hadn't had enough 'Dew' yet. ;)
  10. Replies
    17
    Views
    12,214

    Well, I don't really know what goes in with the...

    Well, I don't really know what goes in with the key breaking, but given that the old key was 32bits, and the new one is 64bits, that's over 4 *billion* more combinations to try than before. ...
Results 1 to 10 of 10