Jump to content

PapaZola

Members
  • Posts

    925
  • Joined

  • Last visited

Posts posted by PapaZola

  1.  

    In theory this should be pretty simple. You'd simply use a command like atcommand "@job" to change your job on equip, and then the same thing to change your job when you unequip.

     

    See if this works for you.

    5132,Angeling_Hat,Angeling Hat,5,20,,700,,2,,0,0xFFFFFFFF,7,2,256,,0,0,204,{},{if(class !=12) atcommand "@job 4035"},{if(class !=4035) atcommand "@job 12"}
    

    greenmagic its posibble to make to multi job?

    example sinx to baby assassin LK to baby knight champion to baby monk

  2. im used New SVN

    the source code not same like old 1

     

    OLD

    /*==========================================
    * Specifies if item-type should drop unidentified.
    *------------------------------------------*/

    int itemdb_isidentified(int nameid)
    {
    int type=itemdb_type(nameid);
    switch (type) {
    case IT_WEAPON:
    case IT_ARMOR:
    case IT_PETARMOR:
    return 0;
    default:
    return 1;
    }
    }

     

     

    NEW

    /** Specifies if item-type should drop unidentified.
    * @param nameid ID of item
    */
    char itemdb_isidentified(unsigned short nameid) {
    }
     
    int type=itemdb_type(nameid);
    switch (type) {
    case IT_WEAPON:
    case IT_ARMOR:
    case IT_PETARMOR:
    case IT_SHADOWGEAR:
    return 0;
    default:
    return 1;
    }
    }

     

     

    PLEASE HELP

  3. If you disable packet obfuscation in your source files, you need to recompile.

    Would it be so that you'd want to utilise this feature, then you'd need to rediff your client with the correct packet keys that you can find in your packet_db.

    Also, I advise using 2013-08-07 client instead of your 2013-08-14.

     

    Good luck.

    i can use 2013-08-14 but when im used @spawn and bloody branch

    i got this problem

    https://rathena.org/board/topic/101812-spawn-mvp-error/

×
×
  • Create New...