Jump to content

Kuya Jeo

Members
  • Content Count

    596
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by Kuya Jeo

  1. Check your database in http://127.0.0.1/phpmyadmin and check the user you used.
  2. This is a good idea but we will wait for professionals to do it or pay for it.. because it will need a lot of work.
  3. Using linux or windows? but i can recommend you to read this topic, sometimes using search box is the best way to find a tutorials 😉😜
  4. First thing first you need to learn how to play this game, because without knowledge in the ragnarok, its hard for you to catch up.
  5. #define AUTOTRADE_PERSISTENCY src/config/core.h Did you already disabled this?
  6. Try to contact S1 Lykos FB Page : s1 Lykos | Facebook
  7. What client version you are using? because based on my experience, when I used 2015 client, after-casting delay is bit off even you used bragi and make the skill 0ms after casting delay.
  8. Based on the conf/map/battle/monster.conf // Show hp bar on monsters? (Note 3) // NOTE: only works on client 2012-04-04aRagexeRE onwards // 1 = Show hp bar on all monsters except Emperium and MVP // 2 = Enable hp bar on Emperium // 4 = Enable hp bar on MVP // (Default: 1) show_monster_hp_bar: 1 The monster bar is working on me. You cannot see HP of the monster unless you will hit it.
  9. yup, even you put 100ms, still some skill has a after cast delay because of sprite animation and client version you used
  10. Check you grf files, maybe you used a gear that doesn't have a sprite in your GRF, also check your diff in your client
  11. delay_rate : 100 - meaning you have minimum of 100ms after-casting delay in all skills vcast_stat_scale : 530 Your Total Dex * 2 + your total int Example : Dex : 100(2) = 200 Int : 100 = 100 Total = 300 I think this is only applied for renewal (vcast_stat_scale)
  12. Happy new year hercules family and community

  13. For me, I used OVH, it easy to manage if you know hos to setup your VPS and easy to contact them
  14. as you can see, i just copied the same code below the sharpshooting, so it will work, i will not affect other skills because it has a BREAK on the end If other skills still in bug then maybe there something wrong with the skill behavior, i just test it on the latest svn and i didnt experience this kind of bug, im using 2013, 2015 and 2019 client
  15. Try this one, i didnt test it yet Find this line in src/map/skill.c case NC_FLAMELAUNCHER: if (sd) pc->overheat(sd,1); /* Fall through */ case SN_SHARPSHOOTING: case MA_SHARPSHOOTING: Then replace with this one case NC_FLAMELAUNCHER: if (sd) pc->overheat(sd,1); /* Fall through */ case SN_SHARPSHOOTING: case MA_SHARPSHOOTING: if(sd->weapontype != W_BOW){ clif->skill_fail(sd, skill_id, USESKILL_FAIL_LEVEL, 0, 0); } else{ skill->area_temp[1] = bl->id; map->foreachinpath(skill->attack_area,src->m,src->x,src->y,bl->x,bl->y, skill->get_splash(skill_id, skill_lv),skill->get_maxcount(skill_id,skill_lv), skill->splash_target(src), skill->get_type(skill_id, skill_lv), src, src, skill_id, skill_lv, tick, flag, BCT_ENEMY); } break; after editing, please recompile and check it ingame if this code will fixed your problem, dont forget to make as solve
  16. All i know is bonus bAtkRate is not calculated bonus atk stats, it will add on your true damage
  17. Kuya Jeo

    FCP Strip

    You can use @Dastgir Plugin Here is the link https://github.com/dastgirp/HPM-Plugins/blob/master/src/plugins/fcp_bypass.c
  18. This is my first time to develop 3rd Job Server Is 2017 ragexe is good enough for 3rd job server? Or do you guys have other or better ragexe that is good for 3rd job server Thank you in advance
  19. All the magic AoE Skill become STR Base.. anyone can help? thank you..
  20. This is KS_PROTECTION, you must put the KS_PROTECTION on sc_config.conf SC_KSPROTECTED: { Flags: { NoClearanceReset: true Buff: true } Icon: "SI_ANGEL_PROTECT" }
  21. nope i used latest git, anyway i already solved it, im getting this error when i used blast mine on earth property monster.
  22. I dont modified PC.C and the hercules version i used is from github.. anyway i have other issues found, even in fresh git.. when i used @reloadscript frequently, map-server crashes
  23. Memory manager: Memory leaks found at 2020/04/24 14h16m11s (Git rev 'dd7f653b00239299cdecb7ca826c21e5957863da'). 0001 : pc.c line 9769 size 15 address 0x0xbd18154 Memory manager: Memory leaks found at 2020/04/24 19h15m46s (Git rev 'dd7f653b00239299cdecb7ca826c21e5957863da'). 0001 : pc.c line 9785 size 13 address 0x0xa747724 the map server crash p->value = aStrdup(val); line code 9769 and 9785 latest revision and no source modifications
  24. I found this error.. i dont know where it coming from since the server is live. using latest git, no modifications on source Edit : upon checking .. something about BL_MOB [Error]: --- failed assertion -------------------------------------------- [Error]: unit.c:100: '0' in function `unit_bl2ud' [Error]: ./map-server() [0x640090] [Error]: ./map-server() [0x629669] [Error]: ./map-server() [0x62eddf] [Error]: ./map-server() [0x62ee62] [Error]: ./map-server() [0x632c49] [Error]: ./map-server() [0x4af9d3] [Error]: ./map-server() [0x65524e] [Error]: ./map-server(main+0x2ea) [0x64f76a] [Error]: /lib64/libc.so.6(__libc_start_main+0x100) [0x7f267ccb2d20] [Error]: ./map-server() [0x408079] [Error]: --- end failed assertion ----------------------------------------
  25. I notice that mob_avail already removed in db folder, is there any guide on how to duplicate a monsters? thank you
×
×
  • Create New...

Important Information

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