Jump to content

Horinna

Inactive Member
  • Posts

    23
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Horinna

  1. Hello,

     

    I have a strange problem, I have 10 bonus (5 normal, 5 rare), EVERYTHING works, really EVERYTHING, but the item_attr_rare-table used only lv5, when I switched, item get only max bonus

    13c469c0513b320b11337d58bd763334.png

    only 4.000 HP, 1.000 SP, 12 STR/INT/DEX/CON works

    Syserr is empty.

    item_attr (normal) is fully worked, no problems.
    maybe this helps: I copied item_attr and named it item_attr_rare. Maybe the structure is broken. When I change MAX_HP body to 4, ingame switched 2.000 HP, when I changed body 3, ingame switched 1.000 HP (only this)

    Can someone help, please?

  2. PyCallClassMemberFunc(m_apoPhaseWnd[PHASE_WINDOW_GAME], "SetHPTargetBoard", Py_BuildValue("(iiiii)", TargetPacket.dwVID, TargetPacket.bHPPercent, TargetPacket.bElement));

    to

     

    PyCallClassMemberFunc(m_apoPhaseWnd[PHASE_WINDOW_GAME], "SetHPTargetBoard", Py_BuildValue("(iii)", TargetPacket.dwVID, TargetPacket.bHPPercent, TargetPacket.bElement));
    • Love 1
  3. @Ken Bug:

    - User1 add User2
    - User1 delete User2
    - User2 cannot add User1
    - User2 press friend-Button, but nothing happens on the messanger-list(ingame)

    - User1 have User2 on friend-list, but User2 doesnt have User1 on list

  4. Here:
    uiscript refinedialog.py

    Spoiler

    import uiScriptLocale

    window = {
        "name" : "RefineDialog",
        "style" : ("movable", "float",),

        "x" : SCREEN_WIDTH - 400,
        "y" : 70 * 800 / SCREEN_HEIGHT,

        "width" : 0,
        "height" : 0,

        "children" :
        (
            {
                "name" : "Board",
                "type" : "board",
                "style" : ("attach",),

                "x" : 0,
                "y" : 0,

                "width" : 0,
                "height" : 0,

                "children" :
                (
                    {
                        "name" : "TitleBar",
                        "type" : "titlebar",
                        "style" : ("attach",),

                        "x" : 8,
                        "y" : 8,

                        "width" : 0,
                        "color" : "red",

                        "children" :
                        (
                            {
                                "name" : "TitleName",
                                "type" : "text",
                                "text" : uiScriptLocale.REFINE_TTILE,
                                "horizontal_align" : "center",
                                "text_horizontal_align" : "center",
                                "x" : 0,
                                "y" : 3,
                            },
                        ),
                    },
                    {
                        "name" : "SuccessPercentage",
                        "type" : "text",
                        "text" : uiScriptLocale.REFINE_INFO,
                        "horizontal_align" : "center",
                        "vertical_align" : "bottom",
                        "text_horizontal_align" : "center",
                        "x" : 0,
                        "y" : 65,
                    },
                    {
                        "name" : "Cost",
                        "type" : "text",
                        "text" : uiScriptLocale.REFINE_COST,
                        "horizontal_align" : "center",
                        "vertical_align" : "bottom",
                        "text_horizontal_align" : "center",
                        "x" : 0,
                        "y" : 54,
                    },
                    {
                        "name" : "AcceptButton",
                        "type" : "button",

                        "x" : -35,
                        "y" : 35,

                        "text" : uiScriptLocale.OK,
                        "horizontal_align" : "center",
                        "vertical_align" : "bottom",

                        "default_image" : "d:/ymir work/ui/public/Middle_Button_01.sub",
                        "over_image" : "d:/ymir work/ui/public/Middle_Button_02.sub",
                        "down_image" : "d:/ymir work/ui/public/Middle_Button_03.sub",
                    },
                    {
                        "name" : "CancelButton",
                        "type" : "button",

                        "x" : 35,
                        "y" : 35,

                        "text" : uiScriptLocale.CANCEL,
                        "horizontal_align" : "center",
                        "vertical_align" : "bottom",

                        "default_image" : "d:/ymir work/ui/public/Middle_Button_01.sub",
                        "over_image" : "d:/ymir work/ui/public/Middle_Button_02.sub",
                        "down_image" : "d:/ymir work/ui/public/Middle_Button_03.sub",
                    },
                ),
            },
        ),
    }

     

    • Love 1
×
×
  • 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.