Jump to content

[Ayuda] Dragon Soul System


xwiilyx2

Recommended Posts

Muy buenas comunidad, tengo un problema, es que quiero activar el dragon soul system, uso estos files

Debes iniciar sesión para ver el contenido del enlace en esta publicación.

en el binario ya coloque el "#define ENABLE DRAGON_SOUL_SYSTEM" Ya que no lo tenia, pero no funciona, revice el inventory.py del locale y se supone que esta puesto el icono pero no sale, y la verdad no se donde tocar para abilitarlo, o si solo es problema del tga, alguien me puede dar la ruta? O si se debe tocar otra cosa, alguien me puede ayudar?

 

2mrfsbo.png

 

Gracias de antemano

Link to comment
Share on other sites

hace 11 minutos, Cloc dijo:

Agrega el botón al inventorywindow.py de locale_es

Spoiler

import uiScriptLocale
import item
 
EQUIPMENT_START_INDEX = 180
 
window = {
	"name" : "InventoryWindow",
 
	## 600 - (width + ????? ?? ??? 24 px)
	"x" : SCREEN_WIDTH - 176,
	"y" : SCREEN_HEIGHT - 55 - 565,
 
	"style" : ("movable", "float",),
 
	"width" : 176,
	"height" : 565,
 
	"children" :
	(
		## Inventory, Equipment Slots
		{
			"name" : "board",
			"type" : "board",
			"style" : ("attach",),
 
			"x" : 0,
			"y" : 0,
 
			"width" : 176,
			"height" : 565,
 
			"children" :
			(
				## Title
				{
					"name" : "TitleBar",
					"type" : "titlebar",
					"style" : ("attach",),
 
					"x" : 8,
					"y" : 7,
 
					"width" : 161,
					"color" : "yellow",
 
					"children" :
					(
						{ "name":"TitleName", "type":"text", "x":77, "y":3, "text":uiScriptLocale.INVENTORY_TITLE, "text_horizontal_align":"center" },
					),
				},
 
				## Equipment Slot
				{
					"name" : "Equipment_Base",
					"type" : "image",
 
					"x" : 10,
					"y" : 33,
 
					"image" : "d:/ymir work/ui/equipment_bg_without_ring.tga",
 
					"children" :
					(
 
						{
							"name" : "EquipmentSlot",
							"type" : "slot",
 
							"x" : 3,
							"y" : 3,
 
							"width" : 150,
							"height" : 182,
 
							"slot" : (
										{"index":EQUIPMENT_START_INDEX+0, "x":39, "y":37, "width":32, "height":64},
										{"index":EQUIPMENT_START_INDEX+1, "x":39, "y":2, "width":32, "height":32},
										{"index":EQUIPMENT_START_INDEX+2, "x":39, "y":145, "width":32, "height":32},
										{"index":EQUIPMENT_START_INDEX+3, "x":75, "y":67, "width":32, "height":32},
										{"index":EQUIPMENT_START_INDEX+4, "x":3, "y":3, "width":32, "height":96},
										{"index":EQUIPMENT_START_INDEX+5, "x":114, "y":67, "width":32, "height":32},
										{"index":EQUIPMENT_START_INDEX+6, "x":114, "y":35, "width":32, "height":32},
										{"index":EQUIPMENT_START_INDEX+7, "x":2, "y":145, "width":32, "height":32},
										{"index":EQUIPMENT_START_INDEX+8, "x":75, "y":145, "width":32, "height":32},
										{"index":EQUIPMENT_START_INDEX+9, "x":114, "y":2, "width":32, "height":32},
										{"index":EQUIPMENT_START_INDEX+10, "x":75, "y":35, "width":32, "height":32},
										{"index":item.EQUIPMENT_BELT, "x":39, "y":106, "width":32, "height":32},
									),
						},
						## Dragon Soul Button
						{
							"name" : "DSSButton",
							"type" : "button",
 
							"x" : 114,
							"y" : 107,
 
							"tooltip_text" : uiScriptLocale.TASKBAR_DRAGON_SOUL,
 
							"default_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_01.tga",
							"over_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_02.tga",
							"down_image" : "d:/ymir work/ui/dragonsoul/dss_inventory_button_03.tga",
						},
						## MallButton
						{
							"name" : "MallButton",
							"type" : "button",
 
							"x" : 118,
							"y" : 148,
 
							"tooltip_text" : uiScriptLocale.MALL_TITLE,
 
							"default_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_01.tga",
							"over_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_02.tga",
							"down_image" : "d:/ymir work/ui/game/TaskBar/Mall_Button_03.tga",
						},
						## CostumeButton
						{
							"name" : "CostumeButton",
							"type" : "button",
 
							"x" : 78,
							"y" : 5,
 
							"tooltip_text" : uiScriptLocale.COSTUME_TITLE,
 
							"default_image" : "d:/ymir work/ui/game/taskbar/costume_Button_01.tga",
							"over_image" : "d:/ymir work/ui/game/taskbar/costume_Button_02.tga",
							"down_image" : "d:/ymir work/ui/game/taskbar/costume_Button_03.tga",
						},					 
						{
							"name" : "Equipment_Tab_01",
							"type" : "radio_button",
 
							"x" : 86,
							"y" : 161,
 
							"default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
							"over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
							"down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
 
							"children" :
							(
								{
									"name" : "Equipment_Tab_01_Print",
									"type" : "text",
 
									"x" : 0,
									"y" : 0,
 
									"all_align" : "center",
 
									"text" : "I",
								},
							),
						},
						{
							"name" : "Equipment_Tab_02",
							"type" : "radio_button",
 
							"x" : 86 + 32,
							"y" : 161,
 
							"default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
							"over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
							"down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
 
							"children" :
							(
								{
									"name" : "Equipment_Tab_02_Print",
									"type" : "text",
 
									"x" : 0,
									"y" : 0,
 
									"all_align" : "center",
 
									"text" : "II",
								},
							),
						},
 
					),
				},
 
				{
					"name" : "Inventory_Tab_01",
					"type" : "radio_button",
  
					"x" : 11,
					"y" : 33 + 191,
  
					"default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
					"over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
					"down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
					"tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_1,
  
					"children" :
					(
						{
							"name" : "Inventory_Tab_01_Print",
							"type" : "text",
  
							"x" : 0,
							"y" : 0,
  
							"all_align" : "center",
  
							"text" : "I",
						},
					),
				},
				{
					"name" : "Inventory_Tab_02",
					"type" : "radio_button",
  
					"x" : 13 + 37,
					"y" : 33 + 191,
  
					"default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
					"over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
					"down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
					"tooltip_text" : uiScriptLocale.INVENTORY_PAGE_BUTTON_TOOLTIP_2,
  
					"children" :
					(
						{
							"name" : "Inventory_Tab_02_Print",
							"type" : "text",
  
							"x" : 0,
							"y" : 0,
  
							"all_align" : "center",
  
							"text" : "II",
						},
					),
				},
				{
					"name" : "Inventory_Tab_03",
					"type" : "radio_button",
  
					"x" : 13 + 77,
					"y" : 33 + 191,
  
					"default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
					"over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
					"down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
					"tooltip_text" : "3.Inventar",
  
					"children" :
					(
						{
							"name" : "Inventory_Tab_03_Print",
							"type" : "text",
  
							"x" : 0,
							"y" : 0,
  
							"all_align" : "center",
  
							"text" : "III",
						},
					),
				},
				{
					"name" : "Inventory_Tab_04",
					"type" : "radio_button",
  
					"x" : 14 + 116,
					"y" : 33 + 191,
  
					"default_image" : "d:/ymir work/ui/game/windows/tab_button_small_01.sub",
					"over_image" : "d:/ymir work/ui/game/windows/tab_button_small_02.sub",
					"down_image" : "d:/ymir work/ui/game/windows/tab_button_small_03.sub",
					"tooltip_text" : "4.Inventar",
  
					"children" :
					(
						{
							"name" : "Inventory_Tab_04_Print",
							"type" : "text",
  
							"x" : 0,
							"y" : 0,
  
							"all_align" : "center",
  
							"text" : "IV",
						},
					),
				},			 
 
				## Item Slot
				{
					"name" : "ItemSlot",
					"type" : "grid_table",
 
					"x" : 8,
					"y" : 246,
 
					"start_index" : 0,
					"x_count" : 5,
					"y_count" : 9,
					"x_step" : 32,
					"y_step" : 32,
 
					"image" : "d:/ymir work/ui/public/Slot_Base.sub"
				},
 
				## Print
				{
					"name":"Money_Slot",
					"type":"button",
 
					"x":8,
					"y":28,
 
					"horizontal_align":"center",
					"vertical_align":"bottom",
 
					"default_image" : "d:/ymir work/ui/public/parameter_slot_05.sub",
					"over_image" : "d:/ymir work/ui/public/parameter_slot_05.sub",
					"down_image" : "d:/ymir work/ui/public/parameter_slot_05.sub",
 
					"children" :
					(
						{
							"name":"Money_Icon",
							"type":"image",
 
							"x":-18,
							"y":2,
 
							"image":"d:/ymir work/ui/game/windows/money_icon.sub",
						},
 
						{
							"name" : "Money",
							"type" : "text",
 
							"x" : 3,
							"y" : 3,
 
							"horizontal_align" : "right",
							"text_horizontal_align" : "right",
 
							"text" : "123456789",
						},
					),
				},
 
			),
		},
	),
}

 

 

te lo adjunto si hay algo mal

Link to comment
Share on other sites

hace 1 hora, Cloc dijo:

Entonces coloca las misiones de la alquimia

las misiones si no las tenia, ni las quest, las acabo de colocar, utilizando el comando ./qc, bueno no abria ni el menu de Dragon soul y ahora si pero el boton sigue sin aparecer.

 

33cxjic.png

Link to comment
Share on other sites

hace 11 horas, TuneX™ dijo:

Prueba que no lo tengas puesto por botones teclado ejemplo: F9/8 o alguna letra yo lo tenia asi 

si, esta con la letra O como cambio eso? cambie los eix del cliente, solo la parte del dragon soul pensando que son los tga y no sale aun asi el boton

 

hace 6 horas, Cloc dijo:

Probablemente sean las coordenadas en dado caso, yo probaría poniendo las coordenadas:


"x" : 118,
"y" : 158,

intente con ese tambien pero no sale

Link to comment
Share on other sites

  • Dilong locked this topic
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...