Jump to content

Full Costume Mount System


Recommended Posts

  • Premium
9 hours ago, TheSLZ said:

questlua_pc is not correct i think

.390222750Screenshot_1_www.kepfeltoltes.h

Do we need just close it ( } ), or 

        lua_pushnumber(L, 0);
        lua_pushnumber(L, 0);

        return 2;
    }

 

?

 me too...

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

  • Bronze
On 21. 1. 2016 at 5:28 PM, TheSLZ said:

questlua_pc is not correct i think

.390222750Screenshot_1_www.kepfeltoltes.h

Do we need just close it ( } ), or 

        lua_pushnumber(L, 0);
        lua_pushnumber(L, 0);

        return 2;
    }

 

?

Yes :) My bad.. I will add it to .rar soon :) thx for reply :)

Spoiler

    int pc_get_special_ride_vnum(lua_State* L)
    {
        LPCHARACTER pChar = CQuestManager::instance().GetCurrentCharacterPtr();

        if (NULL != pChar)
        {
            LPITEM Unique1 = pChar->GetWear(WEAR_UNIQUE1);
            LPITEM Unique2 = pChar->GetWear(WEAR_UNIQUE2);
            LPITEM Unique3 = pChar->GetWear(WEAR_COSTUME_MOUNT);

            if (NULL != Unique1)
            {
                if (UNIQUE_GROUP_SPECIAL_RIDE == Unique1->GetSpecialGroup())
                {
                    lua_pushnumber(L, Unique1->GetVnum());
                    lua_pushnumber(L, Unique1->GetSocket(2));
                    return 2;
                }
            }

            if (NULL != Unique2)
            {
                if (UNIQUE_GROUP_SPECIAL_RIDE == Unique2->GetSpecialGroup())
                {
                    lua_pushnumber(L, Unique2->GetVnum());
                    lua_pushnumber(L, Unique2->GetSocket(2));
                    return 2;
                }
            }

            if (NULL != Unique3)
            {
                if (UNIQUE_GROUP_SPECIAL_RIDE == Unique3->GetSpecialGroup())
                {
                    lua_pushnumber(L, Unique3->GetVnum());
                    lua_pushnumber(L, Unique3->GetSocket(2));
                    return 2;
                }
            }
        }

        lua_pushnumber(L, 0);
        lua_pushnumber(L, 0);

        return 2;
    }

 

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

I have problem, becouse if item has GetType ITEM_COSTUME and if I move the mouse over this item does not display window with bonuses and name Costume item, please help me and sorry for my bad english ;c

My sysser:

0124 10:28:30405 :: Traceback (most recent call last):

0124 10:28:30405 ::   File "ui.py", line 1487, in OnOverInItem

0124 10:28:30406 ::   File "ui.py", line 84, in __call__

0124 10:28:30406 ::   File "ui.py", line 75, in __call__

0124 10:28:30407 ::   File "uiInventory.py", line 931, in OverInItem

0124 10:28:30407 ::   File "uiInventory.py", line 1139, in ShowToolTip

0124 10:28:30408 ::   File "uiToolTip.py", line 545, in SetInventoryItem

0124 10:28:30408 ::   File "uiToolTip.py", line 869, in AddItemData

0124 10:28:30409 :: AttributeError
0124 10:28:30409 :: :
0124 10:28:30409 :: 'module' object has no attribute 'COSTUME_TYPE_MOUNT'
0124 10:28:30409 ::

0124 10:29:38830 :: Traceback (most recent call last):

0124 10:29:38830 ::   File "ui.py", line 1487, in OnOverInItem

0124 10:29:38831 ::   File "ui.py", line 84, in __call__

0124 10:29:38831 ::   File "ui.py", line 75, in __call__

0124 10:29:38831 ::   File "uiInventory.py", line 931, in OverInItem

0124 10:29:38832 ::   File "uiInventory.py", line 1139, in ShowToolTip

0124 10:29:38832 ::   File "uiToolTip.py", line 545, in SetInventoryItem

0124 10:29:38833 ::   File "uiToolTip.py", line 869, in AddItemData

0124 10:29:38833 :: AttributeError
0124 10:29:38833 :: :
0124 10:29:38833 :: 'module' object has no attribute 'COSTUME_TYPE_MOUNT'
0124 10:29:38833 ::

 

Link to comment
Share on other sites

Spoiler

LFPgtW2.png.56de50ad5783a417c5040987c517

 

1 hour ago, GrzeGorz said:

I have problem, becouse if item has GetType ITEM_COSTUME and if I move the mouse over this item does not display window with bonuses and name Costume item, please help me and sorry for my bad english ;c

My sysser:

0124 10:28:30405 :: Traceback (most recent call last):

0124 10:28:30405 ::   File "ui.py", line 1487, in OnOverInItem

0124 10:28:30406 ::   File "ui.py", line 84, in __call__

0124 10:28:30406 ::   File "ui.py", line 75, in __call__

0124 10:28:30407 ::   File "uiInventory.py", line 931, in OverInItem

0124 10:28:30407 ::   File "uiInventory.py", line 1139, in ShowToolTip

0124 10:28:30408 ::   File "uiToolTip.py", line 545, in SetInventoryItem

0124 10:28:30408 ::   File "uiToolTip.py", line 869, in AddItemData

0124 10:28:30409 :: AttributeError
0124 10:28:30409 :: :
0124 10:28:30409 :: 'module' object has no attribute 'COSTUME_TYPE_MOUNT'
0124 10:28:30409 ::

0124 10:29:38830 :: Traceback (most recent call last):

0124 10:29:38830 ::   File "ui.py", line 1487, in OnOverInItem

0124 10:29:38831 ::   File "ui.py", line 84, in __call__

0124 10:29:38831 ::   File "ui.py", line 75, in __call__

0124 10:29:38831 ::   File "uiInventory.py", line 931, in OverInItem

0124 10:29:38832 ::   File "uiInventory.py", line 1139, in ShowToolTip

0124 10:29:38832 ::   File "uiToolTip.py", line 545, in SetInventoryItem

0124 10:29:38833 ::   File "uiToolTip.py", line 869, in AddItemData

0124 10:29:38833 :: AttributeError
0124 10:29:38833 :: :
0124 10:29:38833 :: 'module' object has no attribute 'COSTUME_TYPE_MOUNT'
0124 10:29:38833 ::

 

 

  • Love 1
Link to comment
Share on other sites

27 minutes ago, BackPlayer said:
 
how you handled the problem

0124 10:29:38830 :: Traceback (most recent call last):

0124 10:29:38830 ::   File "ui.py", line 1487, in OnOverInItem

0124 10:29:38831 ::   File "ui.py", line 84, in __call__

0124 10:29:38831 ::   File "ui.py", line 75, in __call__

0124 10:29:38831 ::   File "uiInventory.py", line 931, in OverInItem

0124 10:29:38832 ::   File "uiInventory.py", line 1139, in ShowToolTip

0124 10:29:38832 ::   File "uiToolTip.py", line 545, in SetInventoryItem

0124 10:29:38833 ::   File "uiToolTip.py", line 869, in AddItemData

0124 10:29:38833 :: AttributeError
0124 10:29:38833 :: :
0124 10:29:38833 :: 'module' object has no attribute 'COSTUME_TYPE_MOUNT'
0124 10:29:38833 ::

help please

 

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

Just now, GrzeGorz said:
 

how you handled the problem

0124 10:29:38830 :: Traceback (most recent call last):

0124 10:29:38830 ::   File "ui.py", line 1487, in OnOverInItem

0124 10:29:38831 ::   File "ui.py", line 84, in __call__

0124 10:29:38831 ::   File "ui.py", line 75, in __call__

0124 10:29:38831 ::   File "uiInventory.py", line 931, in OverInItem

0124 10:29:38832 ::   File "uiInventory.py", line 1139, in ShowToolTip

0124 10:29:38832 ::   File "uiToolTip.py", line 545, in SetInventoryItem

0124 10:29:38833 ::   File "uiToolTip.py", line 869, in AddItemData

0124 10:29:38833 :: AttributeError
0124 10:29:38833 :: :
0124 10:29:38833 :: 'module' object has no attribute 'COSTUME_TYPE_MOUNT'
0124 10:29:38833 ::

help please

 

look screen you forgot something on your client binary part

Link to comment
Share on other sites

Ch1_Sysser:

Spoiler

SYSERR: Jan 17 15:32:26.278994 :: pid_init: 
Start of pid: 683

SYSERR: Jan 17 15:32:56.879026 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:10.592379 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:33:10.592665 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:10.592707 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:33:10.592915 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:10.593044 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:37.442472 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:39.293774 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:33:39.293952 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:39.293994 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:33:39.372072 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:41.693531 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:47.92355 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:47.92458 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:47.92552 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:49.293513 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:52.433127 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:52.433251 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:52.433350 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:55.42169 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:33:55.42345 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:55.42383 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:33:55.252037 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:38:38.591992 :: locale_find: LOCALE_ERROR: "?? ??? ??? ??? ? ?? ??? ??? ? ????.";
SYSERR: Jan 17 15:38:40.592274 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:34.983719 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:34.983841 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:34.984105 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:41.562267 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:42.802144 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:42.802242 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:42.802361 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:46.413036 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:47.662165 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:47.662264 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:47.662380 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:55.776452 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:56.752331 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:57.992210 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:57.992328 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:57.992425 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:01.192306 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:05.373551 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:05.373690 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:05.373799 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:09.393464 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:31.553241 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:31.553364 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:31.553490 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:34.302339 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:36.512170 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:36.512453 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:36.512557 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:39.32322 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:41:05.857906 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down.
SYSERR: Jan 17 15:41:05.983721 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:41:08.952531 :: pid_deinit: 
End of pid

SYSERR: Jan 17 15:42:05.216214 :: pid_init: 
Start of pid: 688

SYSERR: Jan 17 15:42:24.733160 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:28.647415 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:42:28.647827 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:28.647885 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:42:28.648046 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:28.648158 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:28.648294 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:28.648476 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:34.698322 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:34.698381 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:34.698462 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:45.578401 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:42:45.578502 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:45.578542 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:42:45.736606 :: ModifyPoints: cannot find table by vnum 1455601699
 

Mount & Un_mount work perfect when e.g. go item_proto and change e.g. 711139 with new types subtypes and reload p  in game works but when i do reboot i have this error ingame

https://metin2.download/picture/ie89ITu4U9DIJ034tir393ex7S4W4eRU/.gif

Edited by Metin2 Dev
Core X - External 2 Internal
  • Metin2 Dev 2
Link to comment
Share on other sites

  • Premium
6 minutes ago, BackPlayer said:

Ch1_Sysser:

  Reveal hidden contents

SYSERR: Jan 17 15:32:26.278994 :: pid_init: 
Start of pid: 683

SYSERR: Jan 17 15:32:56.879026 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:10.592379 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:33:10.592665 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:10.592707 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:33:10.592915 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:10.593044 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:37.442472 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:39.293774 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:33:39.293952 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:39.293994 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:33:39.372072 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:41.693531 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:47.92355 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:47.92458 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:47.92552 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:49.293513 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:52.433127 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:52.433251 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:52.433350 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:55.42169 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:33:55.42345 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:33:55.42383 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:33:55.252037 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:38:38.591992 :: locale_find: LOCALE_ERROR: "?? ??? ??? ??? ? ?? ??? ??? ? ????.";
SYSERR: Jan 17 15:38:40.592274 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:34.983719 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:34.983841 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:34.984105 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:41.562267 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:42.802144 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:42.802242 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:42.802361 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:46.413036 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:47.662165 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:47.662264 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:47.662380 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:55.776452 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:56.752331 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:57.992210 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:57.992328 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:39:57.992425 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:01.192306 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:05.373551 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:05.373690 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:05.373799 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:09.393464 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:31.553241 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:31.553364 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:31.553490 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:34.302339 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:36.512170 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:36.512453 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:36.512557 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:40:39.32322 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:41:05.857906 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down.
SYSERR: Jan 17 15:41:05.983721 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:41:08.952531 :: pid_deinit: 
End of pid

SYSERR: Jan 17 15:42:05.216214 :: pid_init: 
Start of pid: 688

SYSERR: Jan 17 15:42:24.733160 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:28.647415 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:42:28.647827 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:28.647885 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:42:28.648046 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:28.648158 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:28.648294 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:28.648476 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:34.698322 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:34.698381 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:34.698462 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:45.578401 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:42:45.578502 :: ModifyPoints: cannot find table by vnum 1455601699
SYSERR: Jan 17 15:42:45.578542 :: AddAffect: Character::AddAffect lDuration == 0 type 0
SYSERR: Jan 17 15:42:45.736606 :: ModifyPoints: cannot find table by vnum 1455601699
 

Moun & Un_mount work perfect when e.g. go item_proto and change e.g. 711139 with new types subtypes and reload p  in game works but when i do reboot i have this error ingame

https://metin2.download/picture/ie89ITu4U9DIJ034tir393ex7S4W4eRU/.gif

I have same, please help.

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

12 hours ago, BackPlayer said:


my preview : http://scr.hu/1up6/rtlwb

if you have this problem, you have to use like quest:

quest mounty begin
    state start begin
        when 52090.use begin
            pc.mount(20110)
        end
    end
end

but I have problem: https://metin2.download/picture/EbeOVY4b5BEIs5Q7JptnkQFth7QcVwe7/.gif

if you have new costiume_bg upload for me please

Edited by Metin2 Dev
Core X - External 2 Internal
  • Metin2 Dev 2
  • Good 1
Link to comment
Share on other sites

22 minutes ago, GrzeGorz said:


my preview : http://scr.hu/1up6/rtlwb

if you have this problem, you have to use like quest:

quest mounty begin
    state start begin
        when 52090.use begin
            pc.mount(20110)
        end
    end
end

but I have problem: https://metin2.download/picture/EbeOVY4b5BEIs5Q7JptnkQFth7QcVwe7/.gif

if you have new costiume_bg upload for me please

Here my friend:

This is the hidden content, please

Edited by Metin2 Dev
Core X - External 2 Internal
  • Metin2 Dev 14
  • Confused 2
  • Good 7
  • Love 10
Link to comment
Share on other sites

20 minutes ago, finaltorment said:

btw i have 2 problems here, the first i can't see the bonus onthe  seal  and the second is when i press ctrl+G for unmount the seal remain in the costume slot. someone have the solution?

your second problem: i think that you have to add your seal to a crate

sorry for my bad english !

Link to comment
Share on other sites

Announcements



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