margoh
{{ user.title }}
- Joined
- Apr 1, 2013
- Messages
- 807
- Solutions
- 18
- Reaction score
- 355
Hello.
How does it work:
creature.cpp in
iologindata.cpp in
After
After
configmanager.cpp under
configmanager.h under
luascript.cpp under
Under
After function
luascript.h after
monster.cpp in function
player.cpp inside
player.h after
After
data/migrations/30.lua edit to:
Inside
config.lua wherever add:
Drop
Tested on TFS 1.4.2.
Cheers.
Extra: monster.cpp in
If we set protectionTime on the fly, monster stops attacking player.
How does it work:
- If you login you get 10 seconds (configurable) of protection.
- If you move you lose protection.
- If you push yourself, you lose protection.
- If you attack creature, you lose protection.
- If times runs out, monsters attacks you.
Combat::canDoCombat(Creature* attacker, Creature* target)
before } else if (attacker->getMonster()) {
add:
C++:
// protection time
if (attackerPlayer->getProtectionTime() > 0) {
Player* player = attacker->getPlayer();
player->setProtectionTime(0);
}
Creature::onCreatureMove
before if (creature == attackedCreature || (creature == this && attackedCreature)) {
add:
C++:
// protection time
if (creature->getPlayer()) {
if (creature->getPlayer()->getProtectionTime() > 0) {
creature->getPlayer()->setProtectionTime(0);
}
}
IOLoginData::loadPlayerById
and IOLoginData::loadPlayerByName
after `direction`
add:
C++:
, `protection_time`
player->direction = static_cast<Direction> (result->getNumber<uint16_t>("direction"));
add:
C++:
player->protectionTime = result->getNumber<uint16_t>("protection_time");
query << "`direction` = " << static_cast<uint16_t> (player->getDirection()) << ',';
add:
C++:
query << "`protection_time` = " << g_config.getNumber(ConfigManager::PROTECTION_TIME) << ',';
integer[DEPOT_PREMIUM_LIMIT] = getGlobalNumber(L, "depotPremiumLimit", 10000);
add:
C++:
integer[PROTECTION_TIME] = getGlobalNumber(L, "protectionTime", 10);
DEPOT_PREMIUM_LIMIT,
add:
C++:
PROTECTION_TIME,
registerEnumIn("configKeys", ConfigManager::PLAYER_CONSOLE_LOGS)
add:
C++:
registerEnumIn("configKeys", ConfigManager::PROTECTION_TIME)
registerMethod("Player", "getStoreInbox", LuaScriptInterface::luaPlayerGetStoreInbox);
add:
C++:
registerMethod("Player", "getProtectionTime", LuaScriptInterface::luaPlayerGetProtectionTime);
registerMethod("Player", "setProtectionTime", LuaScriptInterface::luaPlayerSetProtectionTime);
int LuaScriptInterface::luaPlayerGetStoreInbox(lua_State* L)
add:
C++:
int LuaScriptInterface::luaPlayerGetProtectionTime(lua_State* L)
{
// player:getProtectionTime()
Player* player = getUserdata<Player>(L, 1);
if (player) {
lua_pushnumber(L, player->getProtectionTime());
} else {
lua_pushnil(L);
}
return 1;
}
int LuaScriptInterface::luaPlayerSetProtectionTime(lua_State* L)
{
// player:setProtectionTime(time)
Player* player = getUserdata<Player>(L, 1);
if (!player) {
lua_pushnil(L);
return 1;
}
uint16_t time = getNumber<uint16_t>(L, 2);
player->setProtectionTime(time);
pushBoolean(L, true);
return 1;
}
static int lauPlayerGetStoreInbox(lua_State* L);
add:
C++:
static int luaPlayerGetProtectionTime(lua_State* L);
static int luaPlayerSetProtectionTime(lua_State* L);
bool Monster::selectTarget(Creature* creature)
under first check add:
C++:
int32_t storage = g_config.getNumber(ConfigManager::PROTECTION_TIME_STORAGE);
int32_t value;
if (player)) {
if (player->getProtectionTime() > 0) {
return false;
}
}
void Player::onThink(uint32_t interval)
under sendPing()
add:
C++:
//Protection time down
if (this->getProtectionTime() > 0) {
this->setProtectionTime(this->getProtectionTime() - 1);
}
virtual void setMaxMana(int32_t _manaMax) { manaMax = _manaMax; }
or other function, add:
C++:
uint16_t getProtectionTime() const { return protectionTime; }
void setProtectionTime(uint16_t newProtectionTime) { protectionTime = newProtectionTime; }
uint16_t maxWriteLen = 0;
add:
C++:
uint16_t protectionTime = 10;
LUA:
function onUpdateDatabase()
db.query("ALTER TABLE `players` ADD `protection_time` int(11) NOT NULL DEFAULT 0")
return true
end
data/migrations
create file 31.lua and paste:
LUA:
function onUpdateDatabase()
return false
end
config.lua wherever add:
LUA:
protectionTime = 10 -- Time in seconds
Drop
protection_time.lua
inside data/scripts
Tested on TFS 1.4.2.
Cheers.
Extra: monster.cpp in
Monster::onThinkTarget(uint32_t interval)
under if (!isSummon()) {
add:
C++:
// protection time
if (this->getAttackedCreature()) {
if (getAttackedCreature()->getPlayer()->getProtectionTime() > 0) {
setAttackedCreature(nullptr);
updateTargetList();
followCreature = false;
}
}
Last edited: