Jump to content

changelets

Members
  • Content Count

    36
  • Joined

  • Last visited

Posts posted by changelets


  1. Hi guys,

     

    I tried to delete a character, but it didn't work. I made the delay deletion = 0 and character deletion by BaseLevel = 0, however, that didn't help either. I tried to enter the password, email, birthday when deleting .. all of them didn't work!

     

    Please help :(


  2. Hi guys default_wub.png

     

    In some languages, the writing direction is from right to left, such as Hebrew, which is the opposite of English writing style. However, almost all Ragnarok clients that we have don't support displaying NPC's messages from right to left. Therefore, I was wondering if you could help me make any client change the direction of displaying the text of NPCs from the right to the left. I have seen a client that have this kind of thing but I am not able to access to it anymore. So, how can we change that in the clients we are using today?

     

    I have attached a picture that shows what I mentioned, I know that it is in English but just to let you guys get the idea of what i'm talking about.

     

     

    pic.jpg.701c8c9ff4023c19c895a37753157577

    Thank you!


  3.  

    Hi guys!

     

    I wanted to make a change in a phrase but I couldn't find the file that contained the phrase.

     

    the phrase is " Total : (amount) Zeny " and it is shown when you buy items from a dealer.

     

    I thought it should have been in msgstringtable.txt, however, it wasn't there.

     

    pic:

    where.png

     

    thanks!

     

     

     

     

    Use hex editor and find this line:

     

    00 00 54 6F 74 61 6C 20 3A 20 25 73 20 5A 65 6E 79 00

     

    Change those part on red label

     

     

    Which hex editor do you recommend me to use for Ragnarok clients??

     

     

    for what you want search for :

    54 6F 74 61 6C 20 3A 20 25 73 20 20 5A 65 6E 79
    

     

    Which hex editor do you recommend me to use for Ragnarok clients??

     

    Thank you!!


  4. Hi guys!

     

    I wanted to make a change in a phrase but I couldn't find the file that contained the phrase.

     

    the phrase is " Total : (amount) Zeny " and it is shown when you buy items from a dealer.

     

    I thought it should have been in msgstringtable.txt, however, it wasn't there.

     

    pic:

    where.png

     

    thanks!


  5. Hi!

     

    I noticed that there was a problem in the Item Sell History.

     

    After checking the sold items, the sold prices are always shown 0 zeny in the [item Sell History]. 

     

    Pics:

    item_history.png

     

    After selling:

     

    item_history_2.png

     

     

     

    How do we fix this?!

     

     

    Thanks!

     

    Update:

    I think Hercules developers have solved the issue! Big thanks to them.


  6. Could you guys tell me where I can find

    the file that contains ("Sitting" and other phrases) that are shown by the icons.

     

    I would like to make changes in those phrases.

     

    pic ( for sitting )

    How.png

     

     

    thanks!


  7.  

    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
    

     

    Hi Ridley,

     

    The problem is still faced.


  8. That's caused by missing registry entries

     

    Hi,

     

    Could you explain in detail what you mean?  :unsure:

     

    use this one and see if the problem persists

     

    Hello,

    I have already tried this and the problem was not solved.

    Am I the only one here who face this ?

×
×
  • Create New...

Important Information

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