Jump to content

Hadou

Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by Hadou

  1. the client editing portion "Iteminfo.lua" needs to be updated to support the new format.

    SDE currently removes ALL  "costume = false/true" from the file when i use it.

    example.

    	[507] = {
    		unidentifiedDisplayName = "Red Herb",
    		unidentifiedResourceName = "빨간허브",
    		unidentifiedDescriptionName = {
    		},
    		identifiedDisplayName = "Red Herb",
    		identifiedResourceName = "빨간허브",
    		identifiedDescriptionName = {
    			"A weak medicinal herb which heals wounds.",
    			"^FFFFFF_^000000",
    			"Class:^0000FF Restorative item^000000",
    			"Heal:^009900 25 - 45^000000 HP",
    			"Weight:^009900 2^000000"
    		},
    		slotCount = 0,
    		ClassNum = 0,
    		costume = false
    	},

    becomes

    	[507] = {
    		unidentifiedDisplayName = "Red Herb",
    		unidentifiedResourceName = "빨간허브",
    		unidentifiedDescriptionName = {
    		},
    		identifiedDisplayName = "Red Herb",
    		identifiedResourceName = "빨간허브",
    		identifiedDescriptionName = {
    			"A weak medicinal herb which heals wounds.",
    			"^FFFFFF_^000000",
    			"Class:^0000FF Restorative item^000000",
    			"Heal:^009900 25 - 45^000000 HP",
    			"Weight:^009900 2^000000"
    		},
    		slotCount = 0,
    		ClassNum = 0
    	},

     

    • Upvote 1
    • Love 1
×
×
  • Create New...