Jump to content

Ridley

Administrators
  • Content Count

    1157
  • Joined

  • Last visited

  • Days Won

    86

Everything posted by Ridley

  1. thank you, added mega downloads at first post, i also downloaded them and checked if anything was modified :> thank you a lot Virtue
  2. @panda as we talked before, the first grf contains only kro sprites. Gpipe is no kro item and same goes for the zodiac headgear for this you need the second grf which contains the files of all official servers @Virtue Yes pls!
  3. Can you explain how exactly you do it? This looks mostly like an encoding issue
  4. I remember a diff to extend it but I think this only affects the max input chars and not it's size
  5. Gentleman Pipe is missing? Will look into that Thats why I said feel free to do other uploads and I add them here
  6. forced login background is only needed for some langtypes (set in clientinfo.xml), langtype 0, 1, 3, 4, 8, 9, 10, 11 and 14 support it without the diff, since you use french langtype (18) you use the diff to enforce it. This makes the client read thedata\texture\À¯ÀúÀÎÅÍÆäÀ̽\ t_¹è°æx-x.bmp files. In order to make a login screen you need to split it into 12 parts. There are tools available dooing that. without the diff you have to use bgi_temp edit: i uploaded them for you, it is containing 4 splitted backgrounds and 1 bgi_temp if you want only 1 background you use t_¹è°æ only t_ and t2 = first login and second login bg t3 and t4 are for old ragexe re (if i am correct) À¯ÀúÀÎÅÍÆäÀ̽º.7z
  7. Since a few months they can do solo instances
  8. 1. both of your questions can be solved by taking a single look at the wiki('s) 2. if you want it for rA maybe you should ask the rA community and not the other way around 3. i think all of the instances are already available for rA
  9. It's a cronjob, and you find plenty of guides if you Google for it http://unix.stackexchange.com/questions/19634/linux-equivalent-for-windows-startup
  10. Please give some info what exactly you did and which grf you used
  11. updated the first post, contains now a Download for 2nd version of data.grf which contains official files from all the different servers.
  12. if you use latest herc you shouldnt have a skill_cast_db, it has a skill_db.conf since a few weeks
  13. A day without trolling is a bad day
  14. Yes I am already aware of this and fix it in a future update :] download counter hit the 40k edit: uploaded new version
  15. Maybe different kind of instances instead of killing mobs all the time. Find levers/switches while more and more mobs spawn Boss loop, spawn boss with increasing stats all the time, reward depending on how often you beat him (setunitdata) Guild instance option
  16. afkai it is not available but you could ask rytech to implement it its the cash mount
  17. Sorry for late reply, as you can see in the first post, it is up to date. But it is pure kro data.grf and does not contain iro, jro or any other content.
  18. rA ripped most of its features out of herc (packet obfuscation or roulette as other examples)
  19. If it's not in program files folder and ran as admin, all I can think of is you use one of those clients where it was bugged in general. @.@ but I'm not exactly sure. Some clients also required UAC to be disabled.
  20. Is this a problem only for you, or do your players face the same? What client do you use?
  21. Never trust women who can bleed 3 days without dying Welcome back
  22. replace function SaveToFileCmdOnOffValueEx(nID) if nID == 0 then saveFile = io.open("SaveData\\OptionInfo.lua", "w") else saveFile = io.open("data\\OptionInfo.lua", "w") end if saveFile ~= nil then for k, v in pairs(CmdOnOffOderList) do local value = c_GetCmdOnOffValue(v) if value ~= -1 then saveFile:write(string.format("CmdOnOffList[\"%s\"] = %d\n", v, value)) end end saveFile:write("\n") io.close(saveFile) end end with function SaveToFileCmdOnOffValueEx(nID) if nID == 0 then saveFile = io.open("SaveData\\OptionInfo.lua", "w") else saveFile = io.open("data\\OptionInfo.lua", "w") end if saveFile ~= nil then saveFile:write("CmdOnOffList = {}\n") saveFile:write("OptionInfoList = {}\n") for k, v in pairs(CmdOnOffOderList) do local value = c_GetCmdOnOffValue(v) if value ~= -1 then saveFile:write(string.format("CmdOnOffList[\"%s\"] = %d\n", v, value)) end end saveFile:write("\n") io.close(saveFile) end end
  23. in your grf, in luafiles514\lua files\optioninfo open the optioninfo_f.lub look for the function SaveToFileCmdOnOffValueEx(nID) tell me what it contains (or provide the whole code of it)
  24. Did you check the grf? Maybe you switched the body sprites
×
×
  • Create New...

Important Information

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