hab alles so eingefügt wie im tut , der skill ist aber leider ingame nicht sichtbar woran könnte es liegen
Beiträge von tarikboyka
-
-
Code
- import uiScriptLocale
- import item
- EQUIPMENT_START_INDEX = 225
- window = {
- "name" : "InventoryWindow",
- ## Open Inventar Positio
- "x" : SCREEN_WIDTH - 176,
- "y" : SCREEN_HEIGHT - 37 - 575,
- "style" : ("movable", "float",),
- "width" : 176,
- "height" : 575,
- "children" :
- (
- ## Inventory, Equipment Slots
- {
- "name" : "board",
- "type" : "board",
- "style" : ("attach",),
- "x" : 0,
- "y" : 0,
- "width" : 176,
- "height" : 575,
- "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_with_ring_my_norle.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}, ## Rustung
- {"index":EQUIPMENT_START_INDEX+1, "x":39, "y":2, "width":32, "height":32}, ## Helm
- {"index":EQUIPMENT_START_INDEX+2, "x":39, "y":145, "width":32, "height":32}, ## Schuh
- {"index":EQUIPMENT_START_INDEX+3, "x":75, "y":67, "width":32, "height":32}, ## Armband
- {"index":EQUIPMENT_START_INDEX+4, "x":3, "y":3, "width":32, "height":96}, ## Waffe
- {"index":EQUIPMENT_START_INDEX+5, "x":114, "y":67, "width":32, "height":32}, ## Halskette
- {"index":EQUIPMENT_START_INDEX+6, "x":114, "y":35, "width":32, "height":32}, ## Ohrringe
- {"index":EQUIPMENT_START_INDEX+7, "x":2, "y":145, "width":32, "height":32}, ## Slot Links
- {"index":EQUIPMENT_START_INDEX+8, "x":75, "y":145, "width":32, "height":32}, ## Slot Rechts
- {"index":EQUIPMENT_START_INDEX+9, "x":114, "y":2, "width":32, "height":32}, ## Pfeil
- {"index":EQUIPMENT_START_INDEX+10, "x":75, "y":35, "width":32, "height":32}, ## Schild
- {"index":item.EQUIPMENT_BELT, "x":39, "y":106, "width":32, "height":32}, ## Gurtel
- ## »ő ąÝÁö1
- {"index":item.EQUIPMENT_RING1, "x":2, "y":106, "width":32, "height":32},
- ## »ő ąÝÁö2
- {"index":item.EQUIPMENT_RING2, "x":75, "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",
- },
- ),
- },
- ),
- },
- ## Inventar Seite I
- {
- "name" : "Inventory_Tab_01",
- "type" : "radio_button",
- "x" : 10,
- "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",
- },
- ),
- },
- ## Inventar Seite II
- {
- "name" : "Inventory_Tab_02",
- "type" : "radio_button",
- "x" : 10 + 31,
- "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",
- },
- ),
- },
- ## Inventar Seite III
- {
- "name" : "Inventory_Tab_03",
- "type" : "radio_button",
- "x" : 10 + 62,
- "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_3,
- "children" :
- (
- {
- "name" : "Inventory_Tab_03_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "III",
- },
- ),
- },
- ## Inventar Seite IV
- {
- "name" : "Inventory_Tab_04",
- "type" : "radio_button",
- "x" : 10 + 93,
- "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_4,
- "children" :
- (
- {
- "name" : "Inventory_Tab_04_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "IV",
- },
- ),
- },
- ## Inventar Seite V
- {
- "name" : "Inventory_Tab_05",
- "type" : "radio_button",
- "x" : 10 + 124,
- "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_5,
- "children" :
- (
- {
- "name" : "Inventory_Tab_04_Print",
- "type" : "text",
- "x" : 0,
- "y" : 0,
- "all_align" : "center",
- "text" : "V",
- },
- ),
- },
- ## Inventar Slots
- {
- "name" : "ItemSlot",
- "type" : "grid_table",
- "x" : 8,
- "y" : 244,
- "start_index" : 0,
- "x_count" : 5,
- "y_count" : 9,
- "x_step" : 32,
- "y_step" : 32,
- "image" : "d:/ymir work/ui/public/Slot_Base.sub"
- },
- ## Yang Anzeige
- {
- "name":"Money_Slot",
- "type":"button",
- "x":20,
- "y":40,
- "horizontal_align":"center",
- "vertical_align":"bottom",
- "default_image" : "d:/ymir work/ui/public/parameter_slot_04.sub",
- "over_image" : "d:/ymir work/ui/public/parameter_slot_04.sub",
- "down_image" : "d:/ymir work/ui/public/parameter_slot_04.sub",
- "children" :
- (
- {
- "name" : "Money",
- "type" : "text",
- "x" : 3,
- "y" : 3,
- "horizontal_align" : "right",
- "text_horizontal_align" : "right",
- "text" : "123456789",
- },
- ),
- },
- ## Mulleimer Icon
- {
- "name" : "BorrarItems",
- "type" : "image",
- "x" : 8,
- "y" : 535,
- "image" : "locale/de/ui/items.tga",
- "children" :
- (
- {
- "name" : "BorrarSlot",
- "type" : "slot",
- "x" : 0,
- "y" : 0,
- "width" : 32,
- "height" : 32,
- "slot" : (
- {"index":0, "x":0, "y":0, "width":32, "height":32},
- ),
- },
- ),
- },
- ),
- },
- ),
- }
-
hi ich hab versucht die zwei neuen ring slots zu aktivieren
einer von den beiden hat funktioniert jedoch der 2 nicht.
bekomme diesen fehlersysser.txt
Code- 0424 16:55:18386 :: Failed to load script file : locale/de/ui/InventoryWindow.py
- 0424 16:55:18388 ::
- ui.py(line:3416) LoadScriptFile
- system.py(line:192) execfile
- system.py(line:163) Run
- locale/de/ui/InventoryWindow.py(line:90) <module>
- LoadScriptFile!!!!!!!!!!!!!! - <type 'exceptions.AttributeError'>:'module' object has no attribute 'EQUIPMENT_RING2'
- 0424 16:55:18388 :: ============================================================================================================
- 0424 16:55:18388 :: Abort!!!!
- 0424 16:55:18389 ::
- uiInventory.py(line:303) __LoadWindow
- ui.py(line:3433) LoadScriptFile
- exception.py(line:36) Abort
- InventoryWindow.LoadWindow.LoadObject - <type 'exceptions.SystemExit'>:
- 0424 16:55:18389 :: ============================================================================================================
- 0424 16:55:18389 :: Abort!!!!
-
define quality
-
hi danke für die antwort, "uiPrivateShopSearch.py" ist im root ordner und am anfang der game import ist auch uiPrivateShopSearch geschrieben..
#edit danke an DerTypDa, hat mein problem gefixt
-
Hi com.
Ich bin gerade dabei dieses system : Bitte melden Sie sich an, um diesen Link zu sehen.
einzubauen. Hab alles so gemacht wie im tutorial beschrieben.Jedoch wenn ich meinen client öffne bleibt der client nach der Character wahl im ladebalken stecken.
syserr :
0322 13:35:20479 :: File "networkModule.py", line 245, in SetGamePhase
0322 13:35:20479 :: File "system.py", line 130, in __pack_import
0322 13:35:20480 :: File "system.py", line 110, in _process_result
0322 13:35:20480 :: File "game.py", line 52, in ?
0322 13:35:20480 :: File "system.py", line 137, in __pack_import
0322 13:35:20480 :: ImportError
0322 13:35:20480 :: :
0322 13:35:20480 :: No module named uiPrivateShopSearch
0322 13:35:20480 ::-------------------------------------
Ich glaube der Fehler liegt irgendwo in der game.py... habe meine game.py hochgeladen wäre nett wenn jemand mal
nachschauen könnte und den fehler finden könnte.Bitte melden Sie sich an, um diesen Link zu sehen.
-
nehm einfach die VDI von me2dev aus meinem TUT dann geht alles
Kannst du mir den link eventuell schicken?
-
#gelöst einfach freebsd 10.3 installieren lol.
-
Hi community,
Ich habe ein problem beim compilen
Ich benutze die aktuellste version von Oracle VM und freebsd 9.3 32bitwenn ich den befehl make config-recursive eingebe, kommt dieser fehler.
Bitte melden Sie sich an, um diesen Link zu sehen.
-
wo ist der download ? finde den download leider nicht
-
sind das die orginalen rain files?
-
Nimm mal zum testen für die npc list eine andere vnum.
Also versuch mal die 9013 oder 9014.
Hab bei mir zum beispiel gemerkt, das manche Vnums die ich nehme die NPCs unsichtbar anzeigen.
Aber 9013 und 9014 etc. gehen aufjedenfall.Und dann einfach ingame:
/poly 9013wenn das geht kannste ja navicat und mob_proto direkt abändern
2 tage.... 2 verdammte tage hab ich gebraucht und es war nur wegen der vnum.. OMGdas problem ist gelöst du kriegst ein FETTES LIKE !!!!!
-
Solltest mal den Pfad zum Modell in den mse Dateien anzeigen lassen. Könnte auch sein das dieser über npc2 läuft.
Bitte melden Sie sich an, um dieses Bild zu sehen.
das ist jetz ein anderer NPC aber genau das gleiche probleme der pfad sieht richtig aus
-
Hallo liebe Community,
Ich bin gerade dabei ein Server aufzubauen und scheiter schon dabei neue NPC's einzufügen. Ich benutze die kori_dev files 1.3 & den kori_dev client 1.3
ich hab den ymir_work ordner entpackt und den neuen NPC eingefügt --> name: keyto_hood
Bitte melden Sie sich an, um dieses Bild zu sehen.
dannach hab ich die root.eix entpackt und die npclist bearbeitet
Bitte melden Sie sich an, um dieses Bild zu sehen.
dannach hab ich die locale_de entpackt und die mob_proto bearbeitet
Bitte melden Sie sich an, um dieses Bild zu sehen.
dannach hab ich serverside in der db die mob_proto bearbeitet und den neuen NPC eingefügt.
Bitte melden Sie sich an, um dieses Bild zu sehen.
dannach hab ich rebooted & ingame /m 66661 eingegeben und nix ist erschienen. Bitte um hilfe skype : [skypea]tarikboyka1[/skypea]