INREM
-
Posts
7 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Posts posted by INREM
-
-
Much thanks. Haven't had time to look into the hair style issue, but the suggested fix for Izlude worked.
To unpack that a bit for anyone who encounters this issue in the future...
This was a conflict with some pre-renewal assets that had also been included in my custom GRF (probably unnecessarily, since this is a renewal server). I opened myserver.grf with GRF editor and renamed data\izlude.gat, *.gnd, and *.rsw to "izlude_disabled.gat" (and so on). This caused the default data.grf's versions of those files to be loaded instead of the ROtransation pre-renewal assets.
The translation guide I was originally following had recommended including both renewal and pre-renewal translation patch assets, added to the custom GRF in a certain order, but I'm going to try rebuilding the client without that pre-renewal stuff in the mix at all since I suspect that other issues along these lines are going to crop up.
-
Hi all: I'm currently working on setting up a Renewal server. On the client side, I started with the kRO 20210406 client with Ragexe version 2020-04-01b patched with ROEnglish. Generally this seems to work, but there are some... errata....
Most pointedly, Izlude's map data is pretty off kilter. When a character makes it out of the "remote island" starting map, he ends up in the water outside of Izlude's marina. Based on iRO's maps, at least, I'd expect to find myself on top of a ship here - which seems to be missing entirely!
Additionally, various cells in the map are unwalkable. So, I'm assuming there is some kind of mismatch between map data going on, maybe with respect to versions? Some googling suggested that it might be necessary to refresh the "map cache", though I'm not sure if that's really at the root of this problem and figured I should ask around before possibly going after a red herring.
Not sure if this is in any way relevant, but I also noticed that during character creation, clicking on a hair style sometimes selects the wrong style. It sounds like that may require a NEMO patch for extended hair styles? So perhaps that's a different issue, but I figured I'd throw it out there.

Much thanks for any advice.
-
Much thanks. Will look into that.
-
Hi all: I'm trying to figure out the least disruptive way to add a totally new attribute, one just like "name", "weight", and so on, to items. This would potentially apply to many of the items in the database, both equipment, usable and generic items, and have one of several values. A string-type variable would be ideal. I would like to be able to access this value from within scripts, and without disrupting anything else.
It seems like one way to do this without much violence to the server code itself would be to create a pseudo bonus (i.e., there's no real status effect, it just acts as a label), enter that in as part of the item script, and check for the presence or absence of the bonus (https://github.com/rathena/rathena/wiki/Adding-New-Bonuses), maybe just the substring itself.
But at the same time, that seems pretty hacky and not especially intuitive and could come with other disadvantages (and might not work for generic items?).
Alternatively, is there any chance that this could be as simple as adding another nested key-value pair ("INREMsSpecialAttribute") to the YML entry for each item I want to modify? Would there be a supported way to retrieve that value through scripts, or would I need to add my own accessor function? Assuming it's a relevant concern, would doing this risk screwing up code that accesses item properties through arrays instead of by a dictionary and expects to find any values in a certain order?
- Id: 1101 AegisName: Sword Name: Sword Type: Weapon SubType: 1hSword Buy: 100 Weight: 500 Attack: 25 Range: 1 Slots: 3 INREMsSpecialAttribute: Whatever Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true Rogue: true SuperNovice: true Swordman: true Thief: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 2 Refineable: trueAny advice would be appreciated. Thanks.
Not sure if this is more of a "database support" question, a scripting question or a "source" question, but I figured I'll toss it out here first - if different subforum would be more appropriate, please let me know.
-
Really helpful info. Thanks.
-
Hi all: Reading through the documentation, I saw that rA (relatively) recently converted much of its db (notably item and monster skills) to YML format, with SQL as apparently a semi-legacy option for certain data. However, it seems like SQL may still be required for storing certain other info.
What SQL files are minimally required to be imported at this point? If I'm interpreting the README in the sql-files folder correctly, it seems like you could get by with just the following:
* main.sql - Contains tables for normal server usage. * roulette_default_data.sql - Contains data for the client's roulette game. * logs.sql - Contains tables for logging of server events.Also, how about the item_cash sql file? Assuming you want to implement the cash shop, is that a required import well? I see that the "import-tmpl" folder in the yml db folder has an associated cash shop file, but I wasn't sure if that is just meant to work with the sql file or can effectively replace it.
Or to put it more generally: what SQL files are required to be imported if you want a fully-featured server?
Also, if not strictly required, are there any SQL other files that are highly advisable to import due to performance issues? YML seems much more mod-friendly than SQL, so I would like to use it as far as is practical.
Any advice would be appreciated. Thanks!
Questions about item drop rate bonuses applied with SC_ITEMBOOST
in Scripting Support
Posted · Edited by INREM
Hi all,
I'm trying to get a better understanding of how drop rate bonuses applied with SC_ITEMBOOST work. Apologies for the waterfall of questions - I'll try to keep this clear.
If I wanted to apply a 100% drop rate bonus with SC_ITEMBOOST, without any duration limitation, I believe I could use this script command: sc_start SC_ITEMBOOST, INFINITE_TICK, 100;
I could end this bonus - and I assume all SC_ITEMBOOST bonuses (assuming more than one can be applied...) - by using this script command: sc_end SC_ITEMBOOST;
Digging a little deeper:
Much thanks in advance for any insights.