bei einer neuen Taskbar, sehe ich keine zB roten Tränke oder Tapferkeitsumhänge wenn ich sie auf zB Hotkey F2 ziehe. Dennoch funktionieren Sie aber beim drücken des Hotkeys...
Also keine Items sind sichtbar. (Fertigkeiten schon)
Hier mal meine taskbar.py:
PHP Code:
import uiScriptLocale
ROOT = "d:/ymir work/ui/game/"
#Y_ADD_POSITION = -2
Y_ADD_POSITION = 0
window = {
"name" : "TaskBar",
"x" : 0,
"y" : SCREEN_HEIGHT - 82,
"width" : 2000,
"height" : 82,
"children" :
(
{
## ÅøÆÁÀ» ¶ç¿ì±â À§ÇÑ À©µµ¿ì
"name" : "HPGauge_Board",
"type" : "window",
"x" : (SCREEN_WIDTH/2 - 227)-112,
"y" : 0,
"width" : 59,
"height" : 79,
"children" :
(
{
"name" : "HPGauge",
"type" : "ani_image",
"x" : 0,
"y" :-19,
"delay" : 3,
"images" :
(
"D:/Ymir Work/UI/gui/tp/1.tga",
"D:/Ymir Work/UI/gui/tp/2.tga",
"D:/Ymir Work/UI/gui/tp/3.tga",
"D:/Ymir Work/UI/gui/tp/4.tga",
"D:/Ymir Work/UI/gui/tp/5.tga",
"D:/Ymir Work/UI/gui/tp/6.tga",
"D:/Ymir Work/UI/gui/tp/7.tga",
"D:/Ymir Work/UI/gui/tp/8.tga",
"D:/Ymir Work/UI/gui/tp/9.tga",
"D:/Ymir Work/UI/gui/tp/10.tga",
"D:/Ymir Work/UI/gui/tp/11.tga",
"D:/Ymir Work/UI/gui/tp/12.tga",
"D:/Ymir Work/UI/gui/tp/13.tga",
"D:/Ymir Work/UI/gui/tp/14.tga",
"D:/Ymir Work/UI/gui/tp/15.tga",
"D:/Ymir Work/UI/gui/tp/16.tga",
"D:/Ymir Work/UI/gui/tp/17.tga",
),
},
),
},
{
## ÅøÆÁÀ» ¶ç¿ì±â À§ÇÑ À©µµ¿ì
"name" : "SPGauge_Board",
"type" : "window",
"x" : (SCREEN_WIDTH/2 + 413)-112,
"y" : 0,
"width" : 59,
"height" : 79,
"children" :
(
{
"name" : "SPGauge",
"type" : "ani_image",
"x" : 0,
"y" :-19,
"delay" : 3,
"images" :
(
"D:/Ymir Work/UI/gui/mp/1.tga",
"D:/Ymir Work/UI/gui/mp/2.tga",
"D:/Ymir Work/UI/gui/mp/3.tga",
"D:/Ymir Work/UI/gui/mp/4.tga",
"D:/Ymir Work/UI/gui/mp/5.tga",
"D:/Ymir Work/UI/gui/mp/6.tga",
"D:/Ymir Work/UI/gui/mp/7.tga",
"D:/Ymir Work/UI/gui/mp/8.tga",
"D:/Ymir Work/UI/gui/mp/9.tga",
"D:/Ymir Work/UI/gui/mp/10.tga",
"D:/Ymir Work/UI/gui/mp/11.tga",
"D:/Ymir Work/UI/gui/mp/12.tga",
"D:/Ymir Work/UI/gui/mp/13.tga",
"D:/Ymir Work/UI/gui/mp/14.tga",
"D:/Ymir Work/UI/gui/mp/15.tga",
"D:/Ymir Work/UI/gui/mp/16.tga",
"D:/Ymir Work/UI/gui/mp/17.tga",
),
},
),
},
## Board
{
"name" : "Base_Board_01",
"type" : "image",
"x" : (SCREEN_WIDTH - 800)/2,
"y" : -65,
"height" : 146,
"width": 233,
"image" : "d:/ymir work/ui/gui/taskbar.tga"
},
{
"name" : "chat_btn1",
"type" : "button",
"x" : (SCREEN_WIDTH/2 + 37)-112,
"y" : 8,
"default_image" : "d:/ymir work/ui/gui/buttons/chat_btn1.tga",
"over_image" : "d:/ymir work/ui/gui/buttons/chat_btn1_hover.tga",
"down_image" : "d:/ymir work/ui/gui/buttons/chat_btn1_down.tga",
},
{
"name" : "usercp_btn",
"type" : "button",
"x" : (SCREEN_WIDTH/2 + 80)-112,
"y" : 8,
"default_image" : "d:/ymir work/ui/gui/buttons/usercp_btn.tga",
"over_image" : "d:/ymir work/ui/gui/buttons/usercp_btn_hover.tga",
"down_image" : "d:/ymir work/ui/gui/buttons/usercp_btn_down.tga",
},
{
"name" : "itemshop_btn",
"type" : "button",
"x" : (SCREEN_WIDTH/2 + 150)-112,
"y" : 8,
"default_image" : "d:/ymir work/ui/gui/buttons/itemshop_btn.tga",
"over_image" : "d:/ymir work/ui/gui/buttons/itemshop_btn_hover.tga",
"down_image" : "d:/ymir work/ui/gui/buttons/itemshop_btn_down.tga",
},
{
"name" : "EXP_Gauge_Board",
"type" : "window",
"x" : (SCREEN_WIDTH/2 - 128)-112-34,
"y" : 82-18,
"width" : 561,
"height" : 61,
},
{
"name" : "EXP_Gauge_Board1",
"type" : "ani_image",
"x" : (SCREEN_WIDTH/2 - 128)-112-34,
"y" : 82-18,
"delay" : 0,
"images" :
(
"d:/ymir work/ui/gui/exp.tga",
),
},
## Mouse Button
{
"name" : "LeftMouseButton",
"type" : "button",
"x" : (SCREEN_WIDTH/2 - 128)-112,
"y" : 8+24,
"default_image" : ROOT + "TaskBar/Mouse_Button_Move_01.sub",
"over_image" : ROOT + "TaskBar/Mouse_Button_Move_02.sub",
"down_image" : ROOT + "TaskBar/Mouse_Button_Move_03.sub",
},
{
"name" : "RightMouseButton",
"type" : "button",
"x" : (SCREEN_WIDTH/2 + 128 + 66 + 11)-115,
"y" : 8+24,
"default_image" : ROOT + "TaskBar/Mouse_Button_Move_01.sub",
"over_image" : ROOT + "TaskBar/Mouse_Button_Move_02.sub",
"down_image" : ROOT + "TaskBar/Mouse_Button_Move_03.sub",
},
## Button
{
"name" : "CharacterButton",
"type" : "button",
"x" : (SCREEN_WIDTH/2 + 128 + 66 + 47)-115,
"y" : 32,
"tooltip_text" : uiScriptLocale.TASKBAR_CHARACTER,
"default_image" : ROOT + "TaskBar/Character_Button_01.sub",
"over_image" : ROOT + "TaskBar/Character_Button_02.sub",
"down_image" : ROOT + "TaskBar/Character_Button_03.sub",
},
{
"name" : "InventoryButton",
"type" : "button",
"x" : (SCREEN_WIDTH/2 + 128 + 66 + 47+34)-115,
"y" : 32,
"tooltip_text" : uiScriptLocale.TASKBAR_INVENTORY,
"default_image" : ROOT + "TaskBar/Inventory_Button_01.sub",
"over_image" : ROOT + "TaskBar/Inventory_Button_02.sub",
"down_image" : ROOT + "TaskBar/Inventory_Button_03.sub",
},
{
"name" : "MessengerButton",
"type" : "button",
"x" : (SCREEN_WIDTH/2 + 128 + 66 + 47+34+34)-115,
"y" : 32,
"tooltip_text" : uiScriptLocale.TASKBAR_MESSENGER,
"default_image" : ROOT + "TaskBar/Community_Button_01.sub",
"over_image" : ROOT + "TaskBar/Community_Button_02.sub",
"down_image" : ROOT + "TaskBar/Community_Button_03.sub",
},
{
"name" : "SystemButton",
"type" : "button",
"x" : (SCREEN_WIDTH/2 + 128 + 66 + 47+34+34+34)-115,
"y" : 32,
"tooltip_text" : uiScriptLocale.TASKBAR_SYSTEM,
"default_image" : ROOT + "TaskBar/System_Button_01.sub",
"over_image" : ROOT + "TaskBar/System_Button_02.sub",
"down_image" : ROOT + "TaskBar/System_Button_03.sub",
},
## QuickBar
{
"name" : "quickslot_board",
"type" : "window",
"x" : (SCREEN_WIDTH/2 - 128 + 32 + 10)-112,
"y" : 5+24,
"width" : 256 + 14 + 2 + 11,
"height" : 37,
"children" :
(
{
"name" : "ChatButton",
"type" : "button",
"x" : 128,
"y" : 1,
"tooltip_text" : uiScriptLocale.TASKBAR_CHAT,
"default_image" : ROOT + "TaskBar/Chat_Button_01.sub",
"over_image" : ROOT + "TaskBar/Chat_Button_02.sub",
"down_image" : ROOT + "TaskBar/Chat_Button_03.sub",
},
{
"name" : "quick_slot_1",
"type" : "grid_table",
"start_index" : 0,
"x" : 0,
"y" : 3,
"x_count" : 4,
"y_count" : 1,
"x_step" : 32,
"y_step" : 32,
"image" : "d:/ymir work/ui/Public/Slot_Base.sub",
"image_r" : 1.0,
"image_g" : 1.0,
"image_b" : 1.0,
"image_a" : 1.0,
"children" :
(
{ "name" : "slot_1", "type" : "image", "x" : 3, "y" : 3, "image" : "d:/ymir work/ui/game/taskbar/1.sub", },
{ "name" : "slot_2", "type" : "image", "x" : 35, "y" : 3, "image" : "d:/ymir work/ui/game/taskbar/2.sub", },
{ "name" : "slot_3", "type" : "image", "x" : 67, "y" : 3, "image" : "d:/ymir work/ui/game/taskbar/3.sub", },
{ "name" : "slot_4", "type" : "image", "x" : 99, "y" : 3, "image" : "d:/ymir work/ui/game/taskbar/4.sub", },
),
},
{
"name" : "quick_slot_2",
"type" : "grid_table",
"start_index" : 4,
"x" : 128 + 14,
"y" : 3,
"x_count" : 4,
"y_count" : 1,
"x_step" : 32,
"y_step" : 32,
"image" : "d:/ymir work/ui/Public/Slot_Base.sub",
"image_r" : 1.0,
"image_g" : 1.0,
"image_b" : 1.0,
"image_a" : 1.0,
"children" :
(
{ "name" : "slot_5", "type" : "image", "x" : 3, "y" : 3, "image" : "d:/ymir work/ui/game/taskbar/f1.sub", },
{ "name" : "slot_6", "type" : "image", "x" : 35, "y" : 3, "image" : "d:/ymir work/ui/game/taskbar/f2.sub", },
{ "name" : "slot_7", "type" : "image", "x" : 67, "y" : 3, "image" : "d:/ymir work/ui/game/taskbar/f3.sub", },
{ "name" : "slot_8", "type" : "image", "x" : 99, "y" : 3, "image" : "d:/ymir work/ui/game/taskbar/f4.sub", },
),
},
{
"name" : "QuickSlotBoard",
"type" : "window",
"x" : 128+14+128+2,
"y" : 0,
"width" : 11,
"height" : 37,
"children" :
(
{
"name" : "QuickSlotNumberBox",
"type" : "image",
"x" : 1,
"y" : 15,
"image" : ROOT + "taskbar/QuickSlot_Button_Board.sub",
},
{
"name" : "QuickPageUpButton",
"type" : "button",
"tooltip_text" : uiScriptLocale.TASKBAR_PREV_QUICKSLOT,
"x" : 1,
"y" : 9,
"default_image" : ROOT + "TaskBar/QuickSlot_UpButton_01.sub",
"over_image" : ROOT + "TaskBar/QuickSlot_UpButton_02.sub",
"down_image" : ROOT + "TaskBar/QuickSlot_UpButton_03.sub",
},
{
"name" : "QuickPageNumber",
"type" : "image",
"x" : 3, "y" : 15, "image" : "d:/ymir work/ui/game/taskbar/1.sub",
},
{
"name" : "QuickPageDownButton",
"type" : "button",
"tooltip_text" : uiScriptLocale.TASKBAR_NEXT_QUICKSLOT,
"x" : 1,
"y" : 24,
"default_image" : ROOT + "TaskBar/QuickSlot_DownButton_01.sub",
"over_image" : ROOT + "TaskBar/QuickSlot_DownButton_02.sub",
"down_image" : ROOT + "TaskBar/QuickSlot_DownButton_03.sub",
},
),
},
),
},
),
}
Ich freue mich über jede Hilfe
LG,
vbacoder






