-
Content Count
1157 -
Joined
-
Last visited
-
Days Won
86
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Ridley
-
thank you, added mega downloads at first post, i also downloaded them and checked if anything was modified :> thank you a lot Virtue
-
@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!
-
Can you explain how exactly you do it? This looks mostly like an encoding issue
-
I remember a diff to extend it but I think this only affects the max input chars and not it's size
-
Gentleman Pipe is missing? Will look into that Thats why I said feel free to do other uploads and I add them here
-
Special Character not working (é, ù, à...)
Ridley replied to Monsieur Panda's question in Script Support
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 -
Since a few months they can do solo instances
-
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
-
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
-
Please give some info what exactly you did and which grf you used
-
How can we disable the warp back to savepoint on second death?
Ridley replied to anjasoleil0's question in Source Support
I guess you mean in pvp? -
updated the first post, contains now a Download for 2nd version of data.grf which contains official files from all the different servers.
-
if you use latest herc you shouldnt have a skill_cast_db, it has a skill_db.conf since a few weeks
-
A day without trolling is a bad day
-
Yes I am already aware of this and fix it in a future update :] download counter hit the 40k edit: uploaded new version
-
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
-
afkai it is not available but you could ask rytech to implement it its the cash mount
-
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.
-
rA ripped most of its features out of herc (packet obfuscation or roulette as other examples)
-
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.
-
Is this a problem only for you, or do your players face the same? What client do you use?
-
Never trust women who can bleed 3 days without dying Welcome back
-
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
-
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)