Jump to content

WolfasLycan

Member
  • Posts

    9
  • Joined

  • Last visited

  • Feedback

    0%

WolfasLycan's Achievements

Explorer

Explorer (4/16)

  • Conversation Starter
  • Dedicated
  • One Year In
  • First Post
  • One Month Later

Recent Badges

1

Reputation

  1. Figure it out. Solution: char_state.cpp look for if (self->Follow(victim, self->GetMobAttackRange() * 9 / 10)) and change to: if (self->Follow(victim, 150 * 9 / 10)) look for : (fDist >= GetMobAttackRange() * 1.15) change to: (fDist >= 150 * 1.15) dont forget to change RANGE and MAGIC to MELEE in mob_proto
  2. Hi, I want to make all the ranged monsters(archers and magicians) attack like melee, this is, instead of attacking from distance attacking close to the char. My first thought was to go in mob_proto.txt and change battle_type range to melee, however it didn´t make any difference, the archers and magicians keep attacking from distance. How i can implement that behaviour?
  3. Hi, i Tried to implement but had this error: SYSERR: Traceback (most recent call last): SYSERR: File "networkModule.py", line 247, in SetGamePhase SYSERR: File "game.py", line 98, in __init__ SYSERR: File "interfaceModule.py", line 308, in MakeInterface SYSERR: File "interfaceModule.py", line 116, in __MakeQuickSell SYSERR: File "uiQuickSell.py", line 24, in __init__ SYSERR: File "uiQuickSell.py", line 75, in BoardInterface SYSERR: AttributeError SYSERR: : SYSERR: 'module' object has no attribute 'QUICK_SELL_TITLE_NAME' SYSERR: Fixed, But now i Have this error: 0819 19:59:25113 :: ResourceManager::GetResourcePointer: NOT SUPPORT FILE d:\ymir work\ui\quick_sell_value.png 0819 19:59:25113 :: ResourceManager::GetResourcePointer: NOT SUPPORT FILE d:\ymir work\ui\quick_sell_value.png 0819 19:59:25115 :: uiselectitem.py(line:23) LoadWindow ui.py(line:2758) LoadScriptFile ItemSelectWindow.LoadDialog.LoadObject - <type 'exceptions.RuntimeError'>:Failed to load image (filename: d:/ymir work/ui/quick_sell_value.png)
  4. Hi, I´m having the following error: 0816 19:41:16980 :: uiInventory.py(line:320) __LoadWindow ui.py(line:2704) GetChild InventoryWindow.LoadWindow.BindObject - <type 'exceptions.KeyError'>:'Cheque' 0816 19:41:16980 :: ============================================================================================================ 0816 19:41:16980 :: Abort!!!! uiinventory.py: try: wndItem = self.GetChild("ItemSlot") wndEquip = self.GetChild("EquipmentSlot") self.GetChild("TitleBar").SetCloseEvent(ui.__mem_func__(self.Close)) self.wndMoney = self.GetChild("Money") self.wndMoneySlot = self.GetChild("Money_Slot") self.mallButton = self.GetChild2("MallButton") self.DSSButton = self.GetChild2("DSSButton") self.costumeButton = self.GetChild2("CostumeButton") if app.ENABLE_CHEQUE_SYSTEM: self.wndCheque = self.GetChild("Cheque") self.wndChequeSlot = self.GetChild("Cheque_Slot") if app.ENABLE_GEM_SYSTEM: self.wndMoneyIcon = self.GetChild("Money_Icon") self.wndChequeIcon = self.GetChild("Cheque_Icon") self.wndMoneyIcon.Hide() self.wndMoneySlot.Hide() self.wndChequeIcon.Hide() self.wndChequeSlot.Hide() ## 높이 조절 height = self.GetHeight() width = self.GetWidth() self.SetSize(width, height - 22) self.GetChild("board").SetSize(width, height - 22) else: self.wndMoneyIcon = self.GetChild("Money_Icon") self.wndChequeIcon = self.GetChild("Cheque_Icon") self.wndMoneyIcon.SetEvent(ui.__mem_func__(self.EventProgress), "mouse_over_in", 0) self.wndChequeIcon.SetEvent(ui.__mem_func__(self.EventProgress), "mouse_over_in", 1) self.wndMoneyIcon.SetEvent(ui.__mem_func__(self.EventProgress), "mouse_over_out", 0) self.wndChequeIcon.SetEvent(ui.__mem_func__(self.EventProgress), "mouse_over_out", 1) self.toolTip = uiToolTip.ToolTip() self.toolTip.ClearToolTip() self.inventoryTab = [] Inventorywindow.py: import uiScriptLocale EQUIPMENT_START_INDEX = 90 window = { "name" : "InventoryWindow", ## 600 - (width + ¿À¸¥ÂÊÀ¸·Î ºÎÅÍ ¶ç¿ì±â 24 px) "x" : SCREEN_WIDTH - 176 - 200, "y" : SCREEN_HEIGHT - 37 - 565, "style" : ("movable", "float",), "width" : 176, "height" : 565, "children" : ( { "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_PAGE_BUTTON_TOOLTIP_2, "text_horizontal_align":"center" }, ), }, ## Equipment Slot { "name" : "Equipment_Base", "type" : "image", "x" : 10, "y" : 33, "image" : "d:/ymir work/ui/game/windows/equipment_base.sub", "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":84, "width":32, "height":32}, {"index":EQUIPMENT_START_INDEX+6, "x":114, "y":52, "width":32, "height":32}, {"index":EQUIPMENT_START_INDEX+7, "x":2, "y":113, "width":32, "height":32}, {"index":EQUIPMENT_START_INDEX+8, "x":75, "y":113, "width":32, "height":32}, {"index":EQUIPMENT_START_INDEX+9, "x":114, "y":1, "width":32, "height":32}, {"index":EQUIPMENT_START_INDEX+10, "x":75, "y":35, "width":32, "height":32}, ), }, { "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" : 10, "y" : 33 + 191, "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_01.sub", "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_02.sub", "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_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" : 10 + 78, "y" : 33 + 191, "default_image" : "d:/ymir work/ui/game/windows/tab_button_large_01.sub", "over_image" : "d:/ymir work/ui/game/windows/tab_button_large_02.sub", "down_image" : "d:/ymir work/ui/game/windows/tab_button_large_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", }, ), }, ## 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":20, "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", }, ), }, { "name":"Cheque_Icon", "type":"image", "vertical_align":"bottom", "x":10, "y":26, "image":"d:/ymir work/ui/game/windows/cheque_icon.sub", }, { "name":"Cheque_Slot", "type":"button", "x":28, "y":28, #"horizontal_align":"center", "vertical_align":"bottom", "default_image" : "d:/ymir work/ui/public/cheque_slot.sub", "over_image" : "d:/ymir work/ui/public/cheque_slot.sub", "down_image" : "d:/ymir work/ui/public/cheque_slot.sub", "children" : ( { "name" : "Cheque", "type" : "text", "x" : 3, "y" : 3, "horizontal_align" : "right", "text_horizontal_align" : "right", "text" : "99", }, ), }, ), }, ), }
  5. Which map editor do you recomend for this files?
  6. I´m having the same problem
  7. I edited serverinfo at root.eix.epk, but it doesnt connect, mysql have a conncection and ssh to , but cliente dont
  8. Can´t connect
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.