• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

PROBLEM WHEN TRYING TO ADD THE MARKET FEATURE (NEKIRO DOWNGRADE)

lordposeii

New Member
Joined
Apr 27, 2010
Messages
2
Reaction score
0
I went through the whole process to try to add the market feature to the nekiro source (it is already in the source, I just had to activate it) I activated it in everything (I think)
game.cpp
const.h
protocolgame.cpp
player.cpp

However, when compiling, I am encountering this error.
'getLastDepotId' is not a member of 'Player'
'getMarketItemList' is not a member of 'Game'
Can anyone give me some insight into what it could be?
Thank you for your collaboration and have a great new year.
 

Attachments

I managed to solve this problem of not finding 'getlastdepotid' and everything was finally compiled perfectly, now my problem is when trying to open the deposit, as soon as I open it, it crashes the server. There are no errors in the distro.

Const.h (source nekiro tfs 1.5)

ITEM_DEPOT = 2594,
ITEM_LOCKER1 = 2589,
ITEM_MARKET = 6555,

Mehah Otclient (game_Features)
g_game.enableFeature(GameMessageStatements);
g_game.enableFeature(GameLoginPacketEncryption);
g_game.enableFeature(GameExtendedOpcode);
g_game.enableFeature(GameBlueNpcNameColor);
g_game.enableFeature(GamePlayerMarket);
g_game.enableFeature(GameAttackSeq);

actions.xml
<action itemid="6555" function="market" />
 
Last edited:
Back
Top