Recent content by Napster

  1. N

    Hercules ready for client SQL 5.5 ?

    Implement for this ? new feature in SQL 5.5 query update and transition ref : by eAthena https://trac.paradoxsystems.net/changeset/15096
  2. N

    Implement The Shadows System

    I hope to find it in Hercules  detail http://gmvylow.com/blog/2012/12/11/kro-update-shadow-system-full-costume/
  3. N

    How to increase buffer size

    this code in chrif.c void chrif_authok(int fd) in   //Check if both servers agree on the struct's size if( RFIFOW(fd,2) - 29 != sizeof(struct mmo_charstatus) ) { ShowError("chrif_authok: Data size mismatch! %d != %dn", RFIFOW(fd,2) - 29, sizeof(struct mmo_charstatus)); return; } thank you
  4. N

    I need help abort party reply invite

    this code void party_reply_invite(struct map_session_data *sd,int party_id,int flag){ struct map_session_data* tsd; struct party_member member; if( sd->party_invite != party_id ) {// forged sd->party_invite = 0; sd->party_invite_account = 0; return; } tsd =...
Back
Top