Jump to content

jackold

Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by jackold

  1. Spoiler

     

    22 minutes ago, Mael said:

    Instructions are in sader's post:

    
    
    the way it work:
    
    you add your custom and edited items in the import iteminfo file
    
    you add kro iteminfo file
    
    you add the server url in the function file
    
    the client will read the iteminfo import first than the kro iteminfo
    
    than you can update your kro iteminfo at anytime you need without any edit to it
    
    without the need to re-add your custom and edited items to a new kro iteminfo
     
    
     
    
    the kro_iteminfo included is from https://github.com/zackdreaver/ROenglishRE
    
    this file is added for example on how you use it
    
    i suggest you get the last iteminfo after you make sure there is no error!

     

     

     

    damn i didnt realize there is a download link.. fck me..

    thanks you 

  2. 8 minutes ago, Mael said:

    It is not a function of rAthena, it is a resource for clients.

    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)
    		if not result then
    			return false, msg
    		end
    		for k,v in pairs(DESC.unidentifiedDescriptionName) do
    			result, msg = AddItemUnidentifiedDesc(ItemID, v)
    			if not result then
    				return false, msg
    			end
    		end
    		for k,v in pairs(DESC.identifiedDescriptionName) do
    			result, msg = AddItemIdentifiedDesc(ItemID, v)
    			if not result then
    				return false, msg
    			end
    		end
    	end
    	return true, "good"
    end

    hi thanks for the fast response..

    i believe edit the itemInfo.lua right? but whats the code to enable the item's description link thanks!

  3. On 5/2/2019 at 12:41 AM, Mael said:

    How can I disable the ItemID: [35130](Click Me!) only for custom items? ?

     12.jpg.d1dca3e9f604f81b4736c6f3e6b362a4.jpg.bbe03e49ec2ef36498fd29eb9a4a7991.jpg

     

    On 5/2/2019 at 2:32 AM, sader1992 said:

    in the iteminfo.lua

    put -- in the start of this line

    
    AddItemIdentifiedDesc(ItemID, functions.add_arena_url(ItemID))

    to be like this

    
    --AddItemIdentifiedDesc(ItemID, functions.add_arena_url(ItemID))

     

    i dont have this function on rathena, how to enable the link? thank you..

×
×
  • Create New...