Jump to content

Daraen

Members
  • Content Count

    134
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Daraen

  1. @Dastgir This guide is out of date, is it possible to have an update?
  2. Hi, Yommy If you go by, can you tell me why I get a server crash after activating your plugins when I enter the @autotrade command. I would like to use this add on for cp feed developed exclusively in relation to this plugin because hercules does not offer anything to display merchants / buyingstores. The only error that pops up on my server is: $ [Error]: Server received crash signal! Attempting to save all online characters! I have no idea where the error occurs, the only direction I have is that it comes after an @autotrade. I specify that my @autotrade works perfectly when I deactivate this plugin. I am using a client 2018-04-18b I will appreciate if someone helps me fix this problem. Thank you
  3. https://github.com/HerculesWS/Hercules/issues/2961
  4. I have been spamming Hercules Discord for an hour now for an important issue which is that skills above level 10 have no effect, only do one hit, one damage but no developer wants to. look into this topic. It will seem that there is no case for WZ_JUPITEL and WZ_METEOR in battle.c but I don't think this is the cause of the problem. In short, it doesn't matter if Mistress cast Jupitel THunder level 28 to me, I only get one hit, I'm not knockback and the skill effect is present on me but I only get one hit. Same for Meteor Storm level 11, I suffer only one hit per ball. It is not normal. It looks like there is a problem with any skill above level 10. How can you solve this big problem? I am using a 2018 client Some fix for rAthena : https://github.com/rathena/rathena/issues/4743 https://github.com/rathena/rathena/commit/b77ba3ae5bb765295df89151170ec4ccb9c5d3cf
  5. All you need to do is launch the official ragnarok online patcher. be careful, by doing this you will certainly have to redo certain steps. I won't tell you which one, I don't personally.
  6. basewin_mini in basic_interface folder but i'm not sure OR titlebar_fix / titlebar_left / titlebar_mid /titlebar_right
  7. This should work Script: <" bonus bHit,10; bonus bAllStats,1; if(getrefine() >= 6) { bonus bHit,10; bonus2 bAddRace,RC_Boss,10; } if(getrefine() >= 11) { bonus bHit,10; bonus2 bAddRace,RC_Boss,10; } ">
  8. http://nemo.herc.ws/clients/#2017
  9. This script does not belong to me, I found it on the internet, do whatever you want
  10. I got my hit bonus +10 when I refine my item to 6 Script: <" if(getrefine()>=6) { bonus bHit,10; bonus2 bAddRace,RC_Boss,10; } ">
  11. In my memories, you use the anacondaq pack. To add custom elements, go to your data.grf extract accessoryid.lub and accname.lub from luafiles514 / lua files / datainfo. Add ACCESSORY_Pegasus = 20000 in accessory id at the end of your file and [ACCESSORY_IDs.ACCESSORY_Pegasus] = "_Pegasus" in accname.lub save add now files in the grf which is read first by your client, save. Don't forget to add the object in item_db.conf do @reloaditemdb and it should work. Yes you also have to add that in iteminfo.
  12. https://github.com/HerculesWS/Hercules/blob/master/doc/script_commands.txt#L3737
  13. @Kuya Jeo Truth be told, it's the same as a frozen character receiving lightning bolt / jupitel thunder or any other wind property attack. the damage will be multiplied and ignore the property of the people. In short, being frozen gives us the water property for the time we are frozen. Finally, asura is really doubled in terms of damage? or is it the same number of damage approximately without a Ghostring card?
  14. Never put custom objects in your data.grf! Always put them in the grf read first by your client! Do you have the luafiles514 / lua files / datainfo folders in your <mygrf> .grf? Do you have the accessoryid.lub and accname.lub files in your <mygrf> .grf ?? Did you enter ACCESSORY_Pegasus = 20000 and [ACCESSORY_IDs.ACCESSORY_Pegasus] = "_Pegasus"?
  15. same error as @Zero Human etc etc I just recompile my server after dragging the files for the plugin.
  16. 1. For langtype, put this in the grf which is read first in your client, put your desired langtype back, it should have worked now °° --[[ GRF Editor [Version - 1.8.0] [Build - 1.5.3.3063] This file was generated by GRF Editor --______________________________________________________]] -- Using GRF Editor Decompiler (beta 1.0.3) MaxLevelTable = { BaseLevel = 99, BaseLevel3rd = 175, BaseLevelExtend2 = 160, BaseLevelUpperJob = 175, BaseLevelHomun = 175, BaseLevelDoram = 175, JobLevelNovice = 10, JobLevelSuperNovice = 99, JobLevelBase = 50, JobLevel2nd = 70, JobLevel3rd = 60, JobLevelExtend2 = 50, JobLevelUpperJob = 60, JobLevelDoram = 50 } MakeableRace = { Doram = false } Url = { TwitterUrl = "http://112.175.128.140:3000/" } LEVELAURA = {} LEVELAURA["EF_NONE"] = -1 LEVELAURA["EF_LEVEL99"] = 200 LEVELAURA["EF_LEVEL99_ORB1"] = 976 LEVELAURA["EF_LEVEL99_ORB2"] = 977 LEVELAURA["EF_LEVEL150"] = 978 LEVELAURA["EF_LEVEL150_SUB"] = 979 LEVELAURA["EF_LEVEL160"] = 1022 LEVELAURA["EF_LEVEL160_SUB"] = 1023 Level99AuraTable = { Default99LvAura = LEVELAURA.EF_LEVEL99, Default99LvAura_sub = LEVELAURA.EF_LEVEL99_ORB1, Baby99LvAura = LEVELAURA.EF_LEVEL99, Baby99LvAura_sub = LEVELAURA.EF_LEVEL99_ORB2, SecondHigh99LvAura = 0, SecondHigh99LvAura_sub = 0, Homun99LvAura = 0, Homun99LvAura_sub = 0, Boss99LvAura_sub = LEVELAURA.EF_LEVEL99_ORB1 } MaxLevelAuraTable = { Default150LvAura = LEVELAURA.EF_LEVEL150, Default150LvAura_sub = LEVELAURA.EF_LEVEL150_SUB, Default160LvAura = LEVELAURA.EF_LEVEL160, Default160LvAura_sub = LEVELAURA.EF_LEVEL160_SUB, HomunMaxLvAura = LEVELAURA.EF_LEVEL150, HomunMaxLvAura_sub = LEVELAURA.EF_LEVEL150_SUB } -- Function #0 GetTableIntValueForC = function(tableName, keyName) local t = _G[tableName] if nil == t then return -1 else local intValue = t[keyName] if nil == intValue then return -1 end return intValue end end -- Function #1 GetTableStringValueForC = function(tableName, keyName) local t = _G[tableName] if nil == t then return "" else local stringValue = t[keyName] if nil == stringValue then return "" end return stringValue end end -- Function #2 GetTableBoolValueForC = function(tableName, keyName) local t = _G[tableName] if nil == t then return false else local boolValue = t[keyName] if nil == boolValue then return false end return boolValue end end Go to your data.grf and extract the luafiles514 / lua files / service_kora / externalsettings_kr.lub folder now go to the grf which is read first by your server and create the following folders there, luafles514 / lua files / service_usa / modify externalsettings_kr.lub with the code I put for you and save. Now changed its name to ExternalSettings_usa.lub and drag it to luafles514 / lua files / service_usa / put the langtype you want, this should solve your problem Edit: set doram to true if your server is a renewal server and you are using dorams
  17. 1. no idea, i'm not brazilian i don't see what your special characters are. i am using langtype 18. 2/3. https://github.com/HerculesWS/Hercules/blob/stable/npc/custom/warper.txt#L21 leave the FAKE_NPC. go here: https://github.com/HerculesWS/Hercules/blob/stable/npc/custom/warper.txt#L471 change 4_F_VALKYRIE to 4_M_FAIRYSOLDIER for all. To replace Warper by Teletransportador, same things, L21 replace Warper by Teletransportador then go L471 replace duplicate (Warper) and Warper # by duplicate (Teletransportador) Teletransportador # Leave whatever is behind the # otherwise errors will be displayed. Do @reloadscript. 4 / For the personalized elements, creating a clean grf will be more favorable than modifying the data.grf, create a grf of the name of your example server server.grf and put all your custom elements there. Remember that it must be read in data.ini first Example: 0 = server.grf 1 = rdata.grf 2 = data.grf
  18. bro my question isn't whether it's paid or necessary in ro gameplay, my question is whether it's planned. I understand that the fps counter we don't care about the limit for a game like ro anyone does it at 60 fps minimum. But the ping counter is essential I will say.
  19. It's interesting thanks for the link, but I was talking about a few things directly implanted in the client, for example in RoExt or other. I saw that NovaRO have created a NovaExt and that there is an fps and ping counter and even an fps debrider built into their client. Then I simply ask the question, is this planned or not? I don't have the skills to develop my own dll yet, I'm going to lean into it and see what I can get out of it, with willpower I'll get there one day hahaha EDIT: indeed fraps works fine but I don't want to force people to dl external software just to display this. RO client is blocking 60 fps from what I see. And I can say that I have a good pc because on LoL I have 300 fps, cs go also and warzone I am at 100 fps.
  20. https://github.com/HerculesWS/Hercules/blob/master/doc/script_commands.txt#L7923
  21. Hi all, I know the discussion is redundant and I apologize if it tires people. Nowadays, all games are capable of showing the fps and ping that you get in games. Here are some examples came from my computer : Do you plan to do the same on Ragnarok Online? If the answer is no, I saw that on geforce experience, Ragnarok Online is taken into account, this software already offers an fps and ping counter, unfortunately the executables available on nemo are not considered as Ragnarok Online. I'm launching the topic, maybe other people will be interested. If my topic is tiring and redundant, delete it! Have a nice day / evening everyone
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.