• 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!

C++ Ragnarok style market [tfs 1.2] almost works

Pifafa

Active Member
Joined
Nov 9, 2010
Messages
96
Reaction score
34
Making it available to everyone in the market, I made the purchase but the person who made it didn't provide any support and it doesn't work for me unfortunately I'm wrong, as everyone knows the person is a thief of forum groups etc, so I decided to post in case anyone understands and know how to fix it, it's already quite advanced, it's always good to help the group


add in creature.h
C++:
        // Icons
        void setIcon(int8_t new_icon);

        int8_t getIcon() const {
            return icon;
        }

add in game.cpp
C++:
void Game::updateCreatureIcon(Creature* creature)
{
    SpectatorVec list;
    map.getSpectators(list, creature->getPosition(), true, true);
    Tile* tile = creature->getTile();
    if (tile) {
        for (Creature* spectator : list) {
            spectator->getPlayer()->sendUpdateTile(tile, creature->getPosition());
        }
    }
   
}

add in game.h:
C++:
        void updateCreatureIcon(Creature* player);

add in iologindata.cpp
C++:
class IOPlayerData;

add in luascript.cpp
C++:
    registerMethod("Item", "loadAttributes", LuaScriptInterface::luaItemLoadAttributes);
    registerMethod("Item", "getAttributes", LuaScriptInterface::luaItemGetAttributes);


    registerMethod("Player", "setNoIdle", LuaScriptInterface::luaPlayerSetNoIdle);


    registerMethod("Player", "popupFYI", LuaScriptInterface::luaPlayerPopupFYI);

    registerMethod("ItemType", "getClientId", LuaScriptInterface::luaItemTypeGetClientId);



int LuaScriptInterface::luaCreatureSetIcon(lua_State* L)
{
    // creature:setIcon(icon)
    Creature* creature = getUserdata<Creature>(L, 1);
    if (creature) {
        creature->setIcon(getNumber<int8_t>(L, 2));
        pushBoolean(L, true);
    } else {
        lua_pushnil(L);
    }
    return 1;
}

int LuaScriptInterface::luaCreatureGetIcon(lua_State* L)
{
    // creature:getIcon()
    Creature* creature = getUserdata<Creature>(L, 1);
    if (creature) {
        lua_pushnumber(L, creature->getIcon());
    } else {
        lua_pushnil(L);
    }
    return 1;
}




int LuaScriptInterface::luaPlayerSetNoIdle(lua_State * L)
{
    // player:luaSetNoIdle(flag)
    Player* player = getUserdata<Player>(L, 1);
    if (player) {
        bool noIdle = getBoolean(L, 2, false);
        player->noIdle = noIdle;
    } else {
        lua_pushnil(L);
    }
    return 1;
}


int LuaScriptInterface::luaPlayerPopupFYI(lua_State* L)
{
    // player:popupFYI(message)
    Player* player = getUserdata<Player>(L, 1);
    if (player) {
        const std::string& message = getString(L, 2);
        player->sendFYIBox(message);
        pushBoolean(L, true);
    }
    else {
        lua_pushnil(L);
    }
    return 1;
}



    // itemType:getId()
    const ItemType* itemType = getUserdata<const ItemType>(L, 1);
    if (itemType) {
        lua_pushnumber(L, itemType->id);
    } else {
        lua_pushnil(L);
    }
    return 1;
}

int LuaScriptInterface::luaItemTypeGetClientId(lua_State* L)
{
    // itemType:getClientId()
    const ItemType* itemType = getUserdata<const ItemType>(L, 1);
    if (itemType) {
        if (itemType->disguise) {
            lua_pushnumber(L, itemType->disguiseId);
        } else {
            lua_pushnumber(L, itemType->id);
        }
    } else {
        lua_pushnil(L);
    }
    return 1;
}

add in luascript.h:
C++:
    static int luaItemGetAttributes(lua_State* L);

    static int luaItemLoadAttributes(lua_State* L);



    static int luaCreatureSetIcon(lua_State* L);

    static int luaCreatureGetIcon(lua_State* L);



    static int luaPlayerSetNoIdle(lua_State* L);



    static int luaPlayerPopupFYI(lua_State* L);



    static int luaItemTypeGetClientId(lua_State* L);

add in map.cpp
C++:
    //Npcs::loadNpcs();
    //if (!IOMap::loadSpawns(this)) {
    //    std::cout << "[Warning - Map::loadMap] Failed to load spawn data." << std::endl;
    //}

add in player.cpp
C++:
    if (!noIdle && !getTile()->hasFlag(TILESTATE_NOLOGOUT) && !isAccessPlayer()) {
        idleTime += interval;
        const int32_t kickAfterMinutes = g_config.getNumber(ConfigManager::KICK_AFTER_MINUTES);
        if ((!pzLocked && OTSYS_TIME() - lastPong >= 60000) || idleTime > (kickAfterMinutes * 60000) + 60000) {
            kickPlayer(true);
        } else if (client && idleTime == 60000 * kickAfterMinutes) {
            std::ostringstream ss;
            ss << "You have been idle for " << kickAfterMinutes << " minutes. You will be disconnected in one minute if you are still idle then.";
            client->sendTextMessage(TextMessage(MESSAGE_STATUS_WARNING, ss.str()));
        }
    }


add in player.h
C++:
        void sendFYIBox(const std::string& message) {
            if (client) {
                client->sendFYIBox(message);
            }
        }

C++:
        bool noIdle = false;

add in protocolgame.cpp
C++:
// Send methods
void ProtocolGame::sendFYIBox(const std::string& message)
{
    NetworkMessage msg;
    msg.addByte(0x15);
    msg.addString(message);
    writeToOutputBuffer(msg);
}

C++:
    LightInfo lightInfo;
    creature->getCreatureLight(lightInfo);
    msg.addByte(player->isAccessPlayer() ? 0xFF : lightInfo.level);
    msg.addByte(lightInfo.color);

    msg.add<uint16_t>(creature->getStepSpeed());

    msg.addByte(player->getSkullClient(creature));
    msg.addByte(player->getPartyShield(otherPlayer));
msg.addByte(creature->getIcon());
}

add in protocolgame.h

C++:
        void sendFYIBox(const std::string& message);



If you managed to put all this in your SRC, now it's time to make the connections in your client so that it works less like the photo below
Post automatically merged:

1736511365309.webp1736511382380.webp1736511403155.webp
1736511440942.webp





After completing the entire process, you need to create the database schema.

XML:
CREATE TABLE IF NOT EXISTS `pshops` (
  `player_guid` int NOT NULL DEFAULT '0',
  `offers` text NOT NULL,
  FOREIGN KEY (`player_guid`) REFERENCES `players` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;

CREATE TABLE IF NOT EXISTS `pshops_historic` (
  `buyer` varchar(255) NOT NULL,
  `seller` varchar(255) NOT NULL,
  `timestamp` bigint unsigned NOT NULL DEFAULT '0',
  `negotiation` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;


CREATE TABLE IF NOT EXISTS `shop_history` (
    `id` int NOT NULL AUTO_INCREMENT,
    `account` int NOT NULL,
    `player_id` int NOT NULL DEFAULT '0',
    `date` DATETIME DEFAULT NOW(),
    `title` VARCHAR(255) DEFAULT '?',
    `price` VARCHAR(255) DEFAULT '?',
    `count` VARCHAR(4) DEFAULT '1',
    `target` VARCHAR(255) DEFAULT '',
    PRIMARY KEY (`id`),
    FOREIGN KEY (`account`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
    FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8;
 
Last edited:
Now on your server, pay attention to creating these files

shops.lua
core.lua
table.lua
base64.lua
json.lua
Post automatically merged:



For part of your otclient, it only works with this, you must put these folders
Post automatically merged:

For part of your otclient, it only works with this, you must put these folders
add in mods:
add in modules / game_interface
Post automatically merged:

The post is in the support area because the system doesn't work correctly, it ends up crashing, the character has not been extensively tested, it needs to be adjusted personally, otherwise the person can open the market and walk through the game, which is totally wrong
Post automatically merged:

Im kinda confused..

Is this supposed to be a help thread or a release? And where's the module?
Hello my friend, this system was created by the guy who steals from me, I adjusted the maximum of my knowledge to try and work but I have nothing else to do but ask for help and share it with everyone, I believe that here there is always a great master who can help everyone and fix it
Post automatically merged:

The little shop system was supposed to be something similar to this that already has some servers, but we weren't even close to doing something like that, AHAHAHA not having the knowledge to do that is complicated, but it's worth a try
1736513940183.webp
 

Attachments

Last edited:
Ok, vou instalar tudo o mais rápido possível

Qual é o problema atual?
O jogador pode se mover, o que não deveria ser possível enquanto uma loja está aberta, certo?
E ele trava?
On my system, it is moving when the market opens, and the worst thing is that after exactly 30 seconds it removes the character's bounce, every 30 seconds. I was so nervous about it that I even deleted it from my computer.
remembering that my src is from this base GitHub - rodolfoaugusto/yurOTS-server (https://github.com/rodolfoaugusto/yurOTS-server)
It's not very good, it's old, but I built my server based on this little project and I really like the way it works and the old style.
 
If it's the same guy named Marcelo or something like that on Discord, he's a scammer. He didn't create the system, unfortunately, he's selling it with too many errors and incompatibilities that he claims don't exist.
Post automatically merged:

I repaired the system and patched all those vulnerabilities.
 
If it's the same guy named Marcelo or something like that on Discord, he's a scammer. He didn't create the system, unfortunately, he's selling it with too many errors and incompatibilities that he claims don't exist.
Post automatically merged:

I repaired the system and patched all those vulnerabilities.
It's not a scammer, it's someone else, he's posting it in the jobs if you want to see about the case, you have a system like this that works for tfs 1.2, kind of similar to Sabrehaven
 
Back
Top