Jump to content

Start_

Members
  • Posts

    924
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by Start_

  1. Make sure there are no new variable got re-registered again on OnInit / OnPCLoginEvent.
  2. Some bonuses check equip location. Go to \src\map\pc.cpp then find target bonus and change sd->state.lr_flag to your desire. (Hover at it you will see tooltip)
  3. itemskill will triggered only if item type was 'DelayConsume'
  4. I mean use item delay (Like cashshop item delay). See - Id: 11524 for example
  5. Wrong forum? That's Hercules emulator I think so.
  6. I'm busy, maybe other people can help you fix the script.
  7. Remove OnPCDieEvent, OnPCKillEvent -> That script will stop working. You need to re-write it properly.
  8. It's call from different NPC even you didn't realize that. Simple solution -> Remove some event that you added and this problem will solve.
  9. I think Tokei said you need to fix it like this. From Script A OnPCDieEvent: Script B OnPCDieEvent: Script C OnPCDieEvent: Script D OnPCDieEvent: Script E OnPCDieEvent: Script F OnPCDieEvent: to Script A OnPCDieEvent: *from your screenshot there was too many npc calling this event.
  10. Add 3s delay when using it to prevent multiple consumption.
  11. Follow this That should fix ITEM label on skill icon.
  12. Hi this is how fo fix. You need to increase MAX_SKILL in src. -------------------------- \db\import\skill_db.yml Header: Type: SKILL_DB Version: 3 Body: - Id: 5000 Name: SM_SWORD_CUSTOM Description: Sword Mastery Custom MaxLevel: 10 Type: Weapon \db\import\skill_tree.yml Header: Type: SKILL_TREE_DB Version: 1 Body: - Job: Novice Tree: - Name: SM_SWORD_CUSTOM MaxLevel: 9 \src\map\skill.hpp SM_SWORD_CUSTOM = 5000, \src\common\mmo.hpp #define MAX_SKILL 1455 ///Maximum skill can be hold by Player, Homunculus, & Mercenary (skill list) AND skill_db limit \data\luafiles514\lua files\skillinfoz\skilldescript.lub [SKID.SM_SWORD_CUSTOM] = { "Hello World" }, \data\luafiles514\lua files\skillinfoz\skillid.lub SM_SWORD_CUSTOM = 5000, \data\luafiles514\lua files\skillinfoz\skillinfolist.lub [SKID.SM_SWORD_CUSTOM] = { "SM_SWORD", SkillName = "Sword Mastery Custom", MaxLv = 10, SpAmount = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, bSeperateLv = false, AttackRange = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } }, \data\luafiles514\lua files\skillinfoz\skilltreeview.lub [JOBID.JT_NOVICE] = { [0] = SKID.NV_BASIC, [1] = SKID.SM_SWORD_CUSTOM, [7] = SKID.NV_FIRSTAID, [14] = SKID.NV_TRICKDEAD }, \data\luafiles514\lua files\skillinfoz\skilltreeview_web.lub NOVICE = { [0] = SKID.NV_BASIC, [1] = SKID.SM_SWORD_CUSTOM, [7] = SKID.NV_FIRSTAID, [14] = SKID.NV_TRICKDEAD },
  13. \rathena\doc\script_commands.txt Line 9033 (setchar)
  14. Yes possible. Write a custom string function to use anywhere in scripts.
  15. Not sure what problem is, but you can do - Update GPU Drivers (Latest version) - Windows Update (Keep update till it have nothing to update) - Change graphic devices on opensetup (Try all of them. Ex: Direct3D HAL and so on) - Check that green color was corrected on another software. Compare it like you did on RO. - Is there anywhere else in RO that had color issue? If not I think about .grf won't load in order, try put the skill description on data folder instead. Hope it help.
  16. I don't see any color difference between mine and yours. For login [Smooth] You need to check hex color on data/msgstringtable
  17. It's doesn't had logs because hide logging was enabled on 3 servers. Check it on .conf files.
  18. Mine was Sword Mastery 2. But for Kalabasa I didn't know.
  19. It's custom skill. Can't comment it because it doesn't had.
  20. Confirmed. It's happened on my end too. Please create issue here https://github.com/rathena/rathena/issues and let developer check it. 2022-05-27 23-28-54.mp4
  21. Ah I see, I will testing that too.
  22. Work fine for me. Import/ skill_tree.yml # This file is a part of rAthena. # Copyright(C) 2021 rAthena Development Team # https://rathena.org - https://github.com/rathena # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ########################################################################### # Skill Tree Database ########################################################################### # # Skill Tree Settings # ########################################################################### # - Job Job name. # Inherit Map of job name from which Job will inherit the skill tree. (Default: null) # Note that Job doesn't inherit the child skills, it only inherits the skills defined in Tree of the given job name. # Tree: List of skills available for the job. (Default: null) # - Name Skill name. # MaxLevel Max level of the skill. Set to 0 to remove the skill. # Exclude Whether the skill is excluded from being inherited. (Default: false) # BaseLevel Minimum base level required to unlock the skill. (Default: 0) # JobLevel Minimum job level required to unlock the skill. (Default: 0) # Requires: List of skills required to unlock the skill. (Default: null) # - Name Skill name. # Level Skill level required. Set to 0 to remove the skill. ########################################################################### Header: Type: SKILL_TREE_DB Version: 1 Body: - Job: Novice Tree: - Name: SM_BASH MaxLevel: 10 data/lua/skill/ skilltreeview.lub [JOBID.JT_NOVICE] = { [0] = SKID.NV_BASIC, [7] = SKID.NV_FIRSTAID, [3] = SKID.SM_BASH, [14] = SKID.NV_TRICKDEAD }, 2022-05-27 16-52-29.mp4
×
×
  • Create New...