What kind of error is this ? ** ERROR:: CLS_Server: Invalid packet type: 0x7eb, Size:

Results 1 to 7 of 7
  1. #1
    Apprentice artie26 is offline
    MemberRank
    Mar 2008 Join Date
    19Posts

    talk What kind of error is this ? ** ERROR:: CLS_Server: Invalid packet type: 0x7eb, Size:

    ( World Server EXE ) , When i trying to login and click the channel its stuck, How to fix this ?

    Connected to login server


    Start Channel SERVER :: Dragon - 1 / 127.0.0.1 / 29200


    Server Dragon - 1 Active: 1


    Server Dragon - 1 user limit count : 1000


    ** ERROR:: CLS_Server: Invalid packet type: 0x7eb, Size: 8 <<<<Only this my ERROR

    ( Game Server EXE )

    Connected to WORLD server


    Connected to ACCOUNT server


  2. #2
    Member hijakob is offline
    MemberRank
    May 2014 Join Date
    81Posts

    Re: What kind of error is this ? ** ERROR:: CLS_Server: Invalid packet type: 0x7eb, S

    Yo.

    ** ERROR:: CLS_Server: Invalid packet type: [Type],[SIZE]

    thats an arcturus error provided by the gameserver or worldserver.

    To make it simple you're having an unknown type of packet being sent to your gameserver and it doesn't like it, so it rejects it sending an error message instead of executing the suposed action.

    it should look like that
    Code:
     switch ( pPacket->m_wType ) {
            case WHATEVER :
                return Action1(Things);
    
      default :
                LOGFUNCTION ( "** ERROR:: CLS_Server: Invalid packet type: 0x%x, Size: %d\n", pPacket->m_wType, pPacket->m_nSize);
        }
    So erm, theres a few possibilities there.

    Something wrong is going on and the client sends wrong stuff to your server if you're using custom files.

    Or maybe someone is trying to send whatever packets to your gameserver, or.. Many other possibilities actually.

    EDIT: as I've seen you're connecting using localhost. So it may be linked to that to. Some tests should be done there.

    I hope it helped.

    Hij.
    Last edited by hijakob; 29-03-15 at 08:00 PM.

  3. #3
    Apprentice artie26 is offline
    MemberRank
    Mar 2008 Join Date
    19Posts

    Re: What kind of error is this ? ** ERROR:: CLS_Server: Invalid packet type: 0x7eb, S

    Quote Originally Posted by hijakob View Post
    Yo.

    ** ERROR:: CLS_Server: Invalid packet type: [Type],[SIZE]

    thats an arcturus error provided by the gameserver.

    To make it simple you're having an unknown type of packet being sent to your gameserver and it doesn't like it, so it rejects it sending an error message instead of executing the suposed action.

    it should look like that
    Code:
     switch ( pPacket->m_wType ) {
            case WHATEVER :
                return Action1(Things);
    
      default :
                LOGFUNCTION ( "** ERROR:: CLS_Server: Invalid packet type: 0x%x, Size: %d\n", pPacket->m_wType, pPacket->m_nSize);
        }
    So erm, theres a few possibilities there.

    Something wrong is going on and the client sends wrong stuff to your server if you're using custom files.

    Or maybe someone is trying to send whatever packets to your gameserver, or.. Many other possibilities actually.

    EDIT: as I've seen you're connecting using localhost. So it may be linked to that to. Some tests should be done there.

    I hope it helped.

    Hij.
    Where can i find this and what kind of files should i edit?

  4. #4
    Member hijakob is offline
    MemberRank
    May 2014 Join Date
    81Posts

    Re: What kind of error is this ? ** ERROR:: CLS_Server: Invalid packet type: 0x7eb, S

    About your question, this is mostly a guess from what I know so far from arcturus and has been released from it. Its... Experience basicly, as I've seen such errors before.

    About what you should edit, at this right moment I can't anwser as I may lead you to a wrong direction.

    Thats why you have to do the folowing:

    First of all, what files are you using?

    We need to know both the server and client file you are using.

    When does exactly this happens ? The more details you give, the more we can do for you.

    If it just happens as you're trying to login to the server (channel select) then it might be linked to the client you're using.


    Hij.
    Last edited by hijakob; 29-03-15 at 07:59 PM. Reason: missed something :)

  5. #5
    Proficient Member Kingdom Rose is offline
    MemberRank
    Nov 2013 Join Date
    FetusLocation
    199Posts

    Re: What kind of error is this ? ** ERROR:: CLS_Server: Invalid packet type: 0x7eb, S

    used a different client , with different server files. if u are using evo source you need to compile the trose if u are using arcturus (original not raven change) and using some other client like aruarose it won't work. if u are using ravens server dlls , you can't use bratok or arua :).

    there that should solve your problem lols. i wrote this too fast so i might have done some mistakes.

  6. #6
    Apprentice artie26 is offline
    MemberRank
    Mar 2008 Join Date
    19Posts

    Re: What kind of error is this ? ** ERROR:: CLS_Server: Invalid packet type: 0x7eb, S

    how can i compile TRose ?

  7. #7
    Proficient Member Kingdom Rose is offline
    MemberRank
    Nov 2013 Join Date
    FetusLocation
    199Posts

    Re: What kind of error is this ? ** ERROR:: CLS_Server: Invalid packet type: 0x7eb, S

    the same way u compiled your server.



Advertisement