Jump to content
  • 0
pagerasta

Acessório não mostra slot e mostra lealdade

Question

Espero que eteja na área certa...

Meu problema é o seguinte: adicionei alguns acessórios custom ao meu servidor usando sprites e tal de acessórios existentes mas eles não mostram o slot e ainda mostram lealdadem, como na imagem:

já até adicionei no itemslotcounttable.txt e nada.

 

meu iteminfo ta assim:

Quote

    [9296] = {
        unidentifiedDisplayName = "Marine Warrior Ring",
        unidentifiedResourceName = "아쿠아오브",
        unidentifiedDescriptionName = {
        },
        identifiedDisplayName = "Marine Warrior Ring",
        identifiedResourceName = "링오브레조넌스",
        identifiedDescriptionName = {
            "Atk +15",
            "ASPD +10%",
            "Hit +15",
        },
        slotCount = 1,
        ClassNum = 0,
    },

meu item_db ta assim:

Quote

{
    Id: 9296
    AegisName: "Marine_Warrior_Ring"
    Name: "Marine Warrior Ring"
    Type: "IT_ARMOR"
    Weight: 20
    Slots: 1
    Job: 0xFFFFFFFF
    Upper: "ITEMUPPER_UPPER"
    Loc: "EQP_ACC"
    EquipLv: 1
    Script: <"
        bonus bBaseAtk,15;
        bonus bAspdRate,20;
        bonus bHit,15;
        bonus bSpeedRate,30;
    ">
},

 

screenHercules001.thumb.jpg.fe1b3c23c2c8e4876e28efa8e05d5f83.jpg

Share this post


Link to post
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Você tem isso no seu Iteminfo?

 

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

 

Share this post


Link to post
Share on other sites
  • 0

Um pouco diferente mas sim

 

Quote

function main()
    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
        if nil ~= DESC.costume then
            result, msg = AddItemIsCostume(ItemID, DESC.costume)
            if not result then
                return false, msg
            end
        end
    end
    return true, "good"
end

 

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...

Important Information

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