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
add in game.cpp
add in game.h:
add in iologindata.cpp
add in luascript.cpp
add in luascript.h:
add in map.cpp
add in player.cpp
add in player.h
add in protocolgame.cpp
add in protocolgame.h
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




After completing the entire process, you need to create the database schema.
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:




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: