Jump to content

Bringer

Members
  • Posts

    748
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Bringer

  1. Here my Script @Winterfox the buffs fuction is Working how about i have different drops let say Red Potion,Yellow Potion,OrangePotion,BluePotion,GreenPotion will it give me different buffs according to item i picked up, is this possible? and buffs can be stack let say pickup RedPotion Buffs is STR + 10, then i pick again another red potion it will add up and will make it now 20str, till it reach maximum level 10
  2. in the future better update your makeitem we got same error i just diff this commit https://github.com/rathena/rathena/commit/2eebafb70330e37dd69a384ce0af52570b4956c2
  3. @Winterfox question is possible when they pickup the item players gain Buffs from item and item will be disappear current time ? let say 15mins buffs only work MAP EVENT ?
  4. 100% Working Thank So Much !! my Custom mob Setup Can Move No Random Walk MVP Knockback Immune Status Immune dMotion = 0 how long it is before the monster/player can move again. Endure is dMotion = 0, obviously.
  5. check this https://github.com/llchrisll/rAthena-Scripts/blob/master/requests/costume_enchant.txt
  6. on my orignal trunk i got this error FIXED ERROR https://github.com/rathena/rathena/commit/2eebafb70330e37dd69a384ce0af52570b4956c2 so test latest rathena is working but monster just like normal summon i can request to monster using unitwalk just like on the video monster only WALKING so monster walk only the giving coordinate 1st Respawn .map$ = "new_1-4"; .x = 11; .y = 188; once summoned monster will move 1st waypoint then 2nd waypoint and so on then repeat until the monster reach last waypoint then repeat again the loop 2nd Request can you make it drop shower? tell say 5x5 ?
  7. try item_data = item_db.searchname(item_name)
  8. i want to request a walking MVP just walking around on maps like this on Video mvp should drop items on the floor every time mvp loses 10% of its total HP once MVP Dead Timer will be 15mins here is the idea reference https://youtu.be/TaQt_cNKbfM?t=592
  9. https://rathena.org/board/topic/109539-utility-dress-changer-~-change-your-appearance-between-classes/
  10. check this https://rathena.org/board/topic/126106-multi-language-system-npcs-compact-npc-system/
  11. WoW i hope this release for free
  12. if reach 50 hearts make for version 2 with MVP and PVP Statues too hehe
  13. @Zell Hello is this same on this command? https://board.herc.ws/topic/8216-duplicate-npc-commands/
  14. strcharinfo(3) == "prontera" prontera? not WoE MAP and try to use isequipped you can check script_commands.txt for more details Check this Topic About Auto Kick https://rathena.org/board/topic/104887-no-guild-autokicker/?do=findComment&comment=297667
  15. try this skill.cpp if( sc && sc->data[SC_CURSEDCIRCLE_ATKER] ) //Should only remove after the skill has been casted. status_change_end(src,SC_CURSEDCIRCLE_ATKER,INVALID_TIMER); return 0; // not to consume item. + case MO_BODYRELOCATION: + if (battle_config.lock && sd && (sd->sc.data[SC_ANKLE] || sd->sc.data[SC_SPIDERWEB])) { + clif_skill_fail(sd, skill_id, USESKILL_FAIL_LEVEL, 0); + break; + } Find skill_blown(src,bl,skill_get_blewcount(skill_id,skill_lv),unit_getdir(bl),(enum e_skill_blown)(BLOWN_IGNORE_NO_KNOCKBACK #ifdef RENEWAL ADD THIS ABOVE + case TF_BACKSLIDING: //This is the correct implementation as per packet logging information. [Skotlex] + if (battle_config.lock && sd && (sd->sc.data[SC_ANKLE] || sd->sc.data[SC_SPIDERWEB])) { + clif_skill_fail(sd, skill_id, USESKILL_FAIL_LEVEL, 0); + break; + + } battle.hpp + int lock; #include "../custom/battle_config_struct.inc" }; battle.cpp + { "lock", &battle_config.lock, 0, 0, 1, }, #include "../custom/battle_config_init.inc" trunk\conf\import\battle_conf.txt +// If set to false, will not be enabled.) +lock: true i try this code i dont have any error + if (skill_id == MO_EXTREMITYFIST && ((sd->spiritball == 0 && battle_config.asura_absorb_cast_cancel) || (!sd->sc.data[SC_EXPLOSIONSPIRITS] && battle_config.asura_dispell_cast_cancel))) { + clif_skill_fail(sd, skill_id, USESKILL_FAIL_LEVEL, 0); + return 0; + } switch( sd->menuskill_id ) { case AM_PHARMACY:
  16. Really? Better ask @Functor
  17. Do you have gepard shield?
  18. thanks for this Working 100% i'm using itemlink-20190319-e6f1f21d.diff
  19. the video is from 10 years ago we dont know if that server have anti cheat or anti 0 delay GRF
  20. skill.conf // Will normal attacks be able to ignore the delay after skills? (Note 1) skill_delay_attack_enable: yes
  21. // The rate of time it takes to cast a spell (Note 2, 0 = No casting time) casting_rate: 100 // Delay time after casting (Note 2) delay_rate: 0 // Does the delay time depend on the caster's DEX and/or AGI? (Note 1) // Note: On Official servers, neither Dex nor Agi affect delay time delay_dependon_dex: no delay_dependon_agi: yes // Minimum allowed delay for ANY skills after castbegin (in milliseconds) (Note 1) // Note: Setting this to anything above 0 can stop speedhacks. min_skill_delay_limit: 10 // This delay is the min 'can't walk delay' of all skills. // NOTE: Do not set this too low, if a character starts moving too soon after // doing a skill, the client will not update this, and the player/mob will // appear to "teleport" afterwards. default_walk_delay: 80 Try this settings your skill. Conf
  22. did you try the mapflag? //= Mapflag: Nightmare mode. //= Players drop items/equipment on death.
  23. https://github.com/rathena/rathena/blob/master/npc/mapflag/nightmare.txt
×
×
  • Create New...