Jump to content

Limestone

Members
  • Posts

    647
  • Joined

Posts posted by Limestone

  1. 46 minutes ago, Functor said:

    Open iteminfo.lub / iteminfo.lua and after:

    
    		identifiedDescriptionName = {
    			"An orange root that is supposedly good for your vision. Despite the Beta Carotene, kids don't care much for it.",
    			"^000088Recovers a small amount of HP^000000.",
    			"^ffffff_^000000",
    			"Weight :^777777 2^000000",
    		},

    add:

    
    		identifiedDescriptionName2 = {
    			"Second version of description for Carrot",
    		},

    change:

    
            for k,v in pairs(DESC.identifiedDescriptionName) do
                result, msg = AddItemIdentifiedDesc(ItemID, v)
                if not result then
                    return false, msg
                end
            end

    to:

    
    	if server_name ~= "rAthena" and DESC.identifiedDescriptionName2 ~= nill then
                for k,v in pairs(DESC.identifiedDescriptionName2) do
                    result, msg = AddItemIdentifiedDesc(ItemID, v)
                    if not result then
                        return false, msg
                    end
                end
    	else
                for k,v in pairs(DESC.identifiedDescriptionName) do
                    result, msg = AddItemIdentifiedDesc(ItemID, v)
                    if not result then
                        return false, msg
                    end
                end
    	end

    If selected server is not "rAthena" and item has second version of description - we will see it.

    I got a error

    "System/ItemInfo.lua:116484: unexpected symbol near '='"

    this is the line that the error indicates: "main = function(server_name)"

  2. 9 minutes ago, Functor said:

    In any case you need to modify iteminfo.lub / iteminfo.lua after applying patch to EXE.

    I will show you simple example. We will add name of selected "char server" to all identified item's names.

    Open iteminfo.lub / iteminfo.lua and change:

    
    main = function()
        for ItemID,DESC in pairs(tbl) do
            result, msg = AddItem(ItemID, DESC.unidentifiedDisplayName, DESC.unidentifiedResourceName, DESC.identifiedDisplayName, DESC.identifiedResourceName, DESC.slotCount, DESC.ClassNum)

    to:

    
    main = function(server_name)
        for ItemID,DESC in pairs(tbl) do
            result, msg = AddItem(ItemID, DESC.unidentifiedDisplayName, DESC.unidentifiedResourceName, DESC.identifiedDisplayName.." "..server_name, DESC.identifiedResourceName, DESC.slotCount, DESC.ClassNum)

    P.S. You can use it to set different item's descriptions for different char servers.

    About the item description, how can i make it different from other char servers?

  3. 19 minutes ago, Akkarin said:

    Please elaborate on the problem you are currently facing. Provide us with the following, or more details if possible (if any):

    • Git Hash
    • Client Date
    • PacketVer
    • Server/Console Errors
    • Client Side Errors
    • Any custom modifications

    @Akkarin i think this issues i on client side.

    Client: 2013-12-30aRagexe

    Customized: Added new objects in Alberta map like Crates, Boxes.

  4. Hello. Does someone experience this problem? and how can I fix this?

    Everytime I zoom in and rotate the client, I got this weird texture problem.

    The error occurs not only in Alberta map but in other maps such as prontera, izlude. aldebaran etc

    screenMain006.jpg

    screenMain007.jpg

    screenMain008.jpg

    screenMain009.jpg

    screenMain010.jpg

     

  5.  

    Hi! as the title says, can someone unpack this client? Thank you!

     

    Client: https://drive.google.com/open?id=0BytVd0a9_rjlVGNOaWFOMWdreEE

    A wanna know what's the differences of the two? 2015-09-16aRagexe and your the client you want to unpack.

    Unpacking client takes time :P unless if you PM Dastgir can unpack client it would be easy.

    since themada encrypt those clients :P

     

    Dastgir isnt available ATM. The real reason why I want unpacked of this client is because of Dastgir's adding customized quest in Quest tabs for new clients,

     

    I tried 2014-10-22aRagexeRE and it's working, so I doubt it only works for RE clients, since i tried also 2013-08-07aRagexe and 2015-05-13aRagexe but can't make it worked.

×
×
  • Create New...