Jump to content

Dani3lArt

Members
  • Posts

    15
  • Joined

  • Last visited

Everything posted by Dani3lArt

  1. Don't work but you give me a hint. Fixed changing mob.hpp enum e_mob_bosstype : uint8{ BOSSTYPE_NONE, BOSSTYPE_MINIBOSS, BOSSTYPE_MVP }; to enum e_mob_bosstype : uint8{ BOSSTYPE_NONE, BOSSTYPE_MVP, BOSSTYPE_MINIBOSS }; Thank you so much.
  2. There is, I installed it manually on the latest rAthena without problems. @partybuff / @spb - Source Modifications - rAthena
  3. Hello, I need help with this, I applied the diff of NEMO: Because I want MVP with a big HP bar, but, only mini boss has it: And MVP are like this: Thanks for helping me with this. Edit: My EXE date is 2020-04-01
  4. The crash is because the NPC called in the source don't exist, just duplicate it with the name of OnPCLeaveBG on bg_common.txt I fixed the crashes doing that.
  5. In the diff skill.cpp:3054: -#ifdef RENEWAL skill_blockpc_start(sd, skill_id, skill_get_cooldown(skill_id, skill_lv)); -#else - guild_block_skill(sd, skill_get_time2(skill_id, skill_lv)); -#endif I suggest: #ifdef BGEXTENDED skill_blockpc_start(sd, skill_id, skill_get_cooldown(skill_id, skill_lv)); #else #ifdef RENEWAL skill_blockpc_start(sd, skill_id, skill_get_cooldown(skill_id, skill_lv)); #else guild_block_skill(sd, skill_get_time2(skill_id, skill_lv)); #endif #endif And in diff skill.cpp:3140: -#ifdef RENEWAL skill_blockpc_start(sd, skill_id, skill_get_cooldown(skill_id, skill_lv)); -#else - guild_block_skill(sd, skill_get_time2(skill_id, skill_lv)); #endif to: #ifdef BGEXTENDED skill_blockpc_start(sd, skill_id, skill_get_cooldown(skill_id, skill_lv)); #else #ifdef RENEWAL skill_blockpc_start(sd, skill_id, skill_get_cooldown(skill_id, skill_lv)); #else guild_block_skill(sd, skill_get_time2(skill_id, skill_lv)); #endif #endif #endif Thanks for the code.
  6. Desde skill_db.txt puedes decidir la cantidad de golpes que dará, lee el formato del encabezado, así sabrás que columna editar. Mucha suerte.
  7. Así es, igual puedes estar pendiente de las publicaciones de Andrei respecto a NEMO a ver si saca un parche compatible en algún momento. https://gitlab.com/4144/Nemo
  8. Se hace mediante lua, sign algo, no recuerdo bien el nombre.
  9. En caso de que lo actives con comando sería más viable - script ONKICKGMWOE -1,{ OnPCLoginEvent: if (getgmlevel() >= 90 && (agitcheck() || agitcheck2())) atcommand "@kick "+strcharinfo(0); end; } Así no importa la hora, si se encuentra activa WoE no dejará entrar al GM.
  10. Igual puedes hacer misiones custom donde el usuario deba matar al boss final de la instancia, y al matarlo y reclamar su recompensa le de Cash Points con: #CASHPOINTS += 15; Saludines.
  11. On mob.cpp search: if (sd->sc.data[SC_ITEMBOOST]) and replace with: if (sd->sc.data[SC_ITEMBOOST] && (status->class_ != CLASS_BOSS))
  12. achievement.c? But achievement system is coded on yaml, and it's .cpp. Which versión of rAthena are you using?
  13. Hi, I coded this NPC, there is an update of the script, but it's only on Spanish, sry :c DevilsTower.txt
  14. When the mob be killed, and exit from the map, return to this and the same mob appear but with HP 0% and immortal :$
×
×
  • Create New...