Jump to content

Jhedzkie

Members
  • Posts

    298
  • Joined

  • Last visited

Everything posted by Jhedzkie

  1. I've been doing some reading on common issues re: the new guild emblem web service. I'm using a 2023 rA commit so the webservice has already been merged into it. However I'm still facing this issue: Emblem is inside \emblem in client folder (as it is supposed to be) Lua/Lub files updated as per the guide. Web Server seems to be running fine but won't pickup my change on client side. I'm using 20200401bRagexe client. Anything I missed setting up? Thanks.
  2. So on official servers, RandomOptionGroup is attached to specific monster dropped equips and from boxes. What I want to do is to have all equips (weapons/armors) to have a RandomOptionGroup assigned to it, without manually editing all db entries (because that will be a lot of work). Is there any other way to set the value for RandomOptionGroup to all equips globally so I can skip to the good part? Thanks!
  3. I have figured it out and re-implemented my previous work. Closing this.
  4. So I've been away from RO/rAthena development for a number of years now and I've totally lost track of everything. I remember I was working on an SRC mod for random options that adds a chance for monster drop equips to be w/ random options. Question: - Is this how the current random option system works? As in, all items dropped by mobs have a chance to contain random options, regardles? ie: knife from poring can have xyz random options? or - Random option is only getting assigned to specific items based on the DB and not all monster dropped items can contain random options. ie: only exclusive to Crimson equips and the likes. If it's the latter, I am planning to rework my previous src mod from years back to be compatible with the latest db structure and whatnot. Thanks!
  5. @Panallox bumping this. Script needs to be updated.
  6. yeah. more than 1000 characters. write a function containing your bonus script. call it on your item. won't take you 1000 characters. function script F_MyItemBonus { // all your 1000+ lines of bonus. } /** * and on your item **/ 99999,My_Item,My Item,2,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc "F_MyItemBonus"; },{},{} I don't see any reason why you can't just use this.
  7. do you absolutely need to increase the maximum text of the script colum? or do you just want to create a function and call it on your itemdb script?
  8. Thanks a bunch. Worked like a charm.
  9. Seems to be it, but it disappears after some time. Ideally, what I would like is a permanent one. And sorry for posting it on the incorrect forum earlier. No. No need to diplay on chatbox.
  10. Can anybody tell me how to achieve the text above the NPC? Similar to the image below. Not sure if this is client side. I just made the assumption since signboardlist is a similar feature and it's clientside.
  11. Short answer, I don't think there's any way you can do that. I know it by experience, because I tried. As far as I know, the values displayed in the status window is fixed. You can only modify what's there, but you can't add a separate value to display there. (except maybe when you hex your client).
  12. It's quite easy, really. You just need to have some skills in pixel art as you create your own status icon. On src side, there's already a guide. You just need to do some reading on it.
  13. I actually already dropped my project with this implementation and went with what rA currently offers with regards randomoptions. So, I'm afraid I cannot help you here. It's been a while too. I might've already already lost the patches that I made before for this specific mod.
  14. Did you click/select the horn of hilsrion item in the refining window? You still need to click the requisite item to perform the refining just as in @openrefine.
  15. Exactly what I need. Thanks for the help.
  16. I'm trying to create a script for an mob event. Ex. When a player kills a special monster, it will trigger a buff that will affect all players in the map. Is it doable? Just a hint would suffice. I can most probably deal with the rest. Thanks in advance.
  17. Those .c files are missing because we moved from .c/.h to .cpp/.hpp. Code's pretty much the same tho. Are you using an outdated version of rathena? It might be a good time to upgrade. If its the other way around (you are using latest/newer rathena but applying older patches), you need to understand the new src structure. There are a bunch of stuff that looks the same but they aren't. If you really want to apply that patch, and can't currently do it yourself, you need someone to upgrade those patches for you. Better, if you learn it yourself. Might take more time but all worth it.
  18. https://github.com/rathena/rathena/wiki/Adding_new_statuses Tried to follow it, and it says Open but doesn't tell which file to open. Hope somebody updates this entry.
  19. As this is a paid release, you'll have to purchase it. ?
  20. Is there anybody here who can come up with a VS Code extension for rA scripting? I mean, we had the plugin for notepad++. I'm just wandering if we can have one for VS Code.
  21. This is exactly why I told you to do it manually, line by line, instead of just applying the git refine patch.
×
×
  • Create New...