Jump to content

xVec

Members
  • Content Count

    23
  • Joined

  • Last visited

Everything posted by xVec

  1. nice man, thanks. Is secure to use in a production server, or still not?
  2. Sorry for the old post, buy anyone knows the solution of this? :/
  3. Thanks, I'll test in my testserver.
  4. Very sad because this will be a great way to get more people into Herc.. rAthena has a stable version of rAmod (Herc don't) and this is not necessary in there and check it now the rA forum, very active with a great comunity.
  5. I see.. I have a very very dummy question. What if i don't want update my production herc and i just want add the PACKET_ZC_GROUP_LIST_SUB support? If I modify this files it should work? https://github.com/HerculesWS/Hercules/search?q=ZC_PROGRESS_ACTOR&unscoped_q=ZC_PROGRESS_ACTOR
  6. I have an error when i make the plugins: CC showbuff.c showbuff.c: In function ‘status_change_start_post’: showbuff.c:50: warning: suggest parentheses around assignment used as truth value showbuff.c: In function ‘clif_party_info_overload’: showbuff.c:114: error: dereferencing pointer to incomplete type showbuff.c:114: error: invalid application of ‘sizeof’ to incomplete type ‘struct PACKET_ZC_GROUP_LIST_SUB’ showbuff.c:119: error: dereferencing pointer to incomplete type showbuff.c:119: error: ‘partyinfo’ undeclared (first use in this function) showbuff.c:119: error: (Each undeclared identifier is reported only once showbuff.c:119: error: for each function it appears in.) showbuff.c:120: error: dereferencing pointer to incomplete type showbuff.c:125: error: dereferencing pointer to incomplete type showbuff.c:129: error: dereferencing pointer to incomplete type showbuff.c:130: error: dereferencing pointer to incomplete type showbuff.c:131: error: dereferencing pointer to incomplete type showbuff.c:132: error: dereferencing pointer to incomplete type showbuff.c:139: error: dereferencing pointer to incomplete type showbuff.c:139: error: dereferencing pointer to incomplete type showbuff.c:139: error: invalid application of ‘sizeof’ to incomplete type ‘struct PACKET_ZC_GROUP_LIST_SUB’ showbuff.c:148: error: dereferencing pointer to incomplete type showbuff.c:152: error: dereferencing pointer to incomplete type showbuff.c:172: error: dereferencing pointer to incomplete type showbuff.c:182: error: dereferencing pointer to incomplete type showbuff.c:186: error: dereferencing pointer to incomplete type showbuff.c:114: warning: unused variable ‘buf’ make[1]: *** [../../plugins/showbuff.so] Error 1 make[1]: Leaving directory `/home/hercules1234/Hercules/src/plugins' make: *** [plugins] Error 2 Any ideas'? Thx in advance
  7. Hi, I don't found any config to remove the damage that a player make to a MvP when it logoff, any help? Thx a lot guys
  8. sometimes when the Emergency Call is used the server throw a map crash signal without any details, there is any wrong in this code? case GD_EMERGENCYCALL: { int dx[9]={-1, 1, 0, 0,-1, 1,-1, 1, 0}; int dy[9]={ 0, 0, 1,-1, 1,-1,-1, 1, 0}; int i = 0, j = 0; struct guild *g; // i don't know if it actually summons in a circle, but oh well. ;P if (sd && (g = hBG_get_guild(sd->bg_id)) != NULL) { clif->skill_nodamage(*src, *bl, *skill_id, *skill_lv, 1); for (i = 0; i < g->max_member; i++, j++) { if (j>8) j=0; if ((dstsd = g->member[i].sd) != NULL && sd != dstsd && !dstsd->state.autotrade && !pc_isdead(dstsd)) { if (map->getcell((*src)->m, *src, (*src)->x + dx[j], (*src)->y + dy[j], CELL_CHKNOREACH)) dx[j] = dy[j] = 0; pc->setpos(dstsd, map_id2index((*src)->m), (*src)->x+dx[j], (*src)->y+dy[j], CLR_RESPAWN); } } guild->block_skill(sd, skill->get_time2(*skill_id, *skill_lv)); } }
  9. Its possible to get the Skill used when a character kill other char?
  10. Sorry... I mean something like that: https://www.gatheringro.ch/?module=ranking&action=woe
  11. I already search in that repository but the Hercules section don't have the eAmod implementations. I just want fill the 'char_woe_log' and 'char_wstats' tables to display the char stats in woe. :/ No, I'm referring to woe stats like kills, skills used, etc...
  12. Hi! I have a question, any of you know someting about the WoE Ranking implemented in eAmod in Hercules? I can pay for the implementation...
  13. xVec

    Plugin errors

    Sorry for the necro, but this plugins are too useful and now they are out of date with the new changes of Plugin System ;( Can help us?
×
×
  • Create New...

Important Information

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