Jump to content

Hakuryuu

Members
  • Content Count

    20
  • Joined

  • Last visited


Reputation Activity

  1. Upvote
    Hakuryuu reacted to Haziel in New Improved 3RD JOB Sprites.   
    I'm back.
    Fixed sprite on the way.
  2. Upvote
    Hakuryuu reacted to evilpuncker in Desactive Item Compare   
    I don't really remember, you will need to disable the diff "ignore missing files error" in your hexed and then look the file names that are being show in the error
  3. Upvote
    Hakuryuu reacted to Dastgir in Desactive Item Compare   
    Grab this folder: https://github.com/ROClientSide/Translation/tree/master/data/texture/%C3%80%C2%AF%C3%80%C3%BA%C3%80%C3%8E%C3%85%C3%8D%C3%86%C3%A4%C3%80%C3%8C%C2%BD%C2%BA
  4. Upvote
    Hakuryuu reacted to IndieRO in Add Increase Headgear ViewID in Hexed Diffed   
    use nemo patcher
     
    http://herc.ws/board/topic/2905-nemo-client-patcher/page-1
  5. Upvote
    Hakuryuu reacted to 4144 in Help...   
    Probably need use pcg->reload(); and not pcg->reload;
  6. Upvote
    Hakuryuu reacted to ossi0110 in Help...   
    try this
     
     
    ACMD(helper){ int new_group = 0; nullpo_retr(-1, sd); if (!pcg->exists(3) || !pcg->exists(4)) { clif->message(fd, msg_fd(fd,1227)); // Specified group does not exist. return -1; } if ( sd->group_id == 4) { sd->group_id = 3; clif->message(fd,"Mensagens do sistema Helper ativo."); pcg->reload;/* update cache */ return 0; } if ( sd->group_id == 3) { sd->group_id = 4; clif->message(fd,"Mensagens do sistema Helper desativo."); pcg->reload;/* update cache */ return 0; } return 0;}
  7. Upvote
    Hakuryuu reacted to ossi0110 in Help...   
    try this
     
    ACMD(helper){ int new_group = 0; nullpo_retr(-1, sd); if (!pcg->exists(3) || !pcg->exists(4)) { clif->message(fd, msg_fd(fd,1227)); // Specified group does not exist. return -1; } if ( sd->group_id == 4) { sd->group_id = 3; clif->message(fd,"Mensagens do sistema Helper ativo."); pcg->reload(sd);/* update cache */ return 0; } if ( sd->group_id == 3) { sd->group_id = 4; clif->message(fd,"Mensagens do sistema Helper desativo."); pcg->reload(sd);/* update cache */ return 0; } return 0;}
  8. Upvote
    Hakuryuu reacted to ossi0110 in Help...   
    this exe seems to be a RagexeRE , so be sure to uncomment this line in your   /src/common/mmo.h and recompile your server
     
     
    #define ENABLE_PACKETVER_RE
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.