• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

TFS 0.3.4 Elf Bot bug

Powiem tyle.

ratuj.png

nie lepsze by było "UCIEKAJ PRZED SIEKIERĄ" ??
 
A ja mu pomoge. Znajdz w zrodlach w player.cpp funkcje
Code:
void Player::onPlacedCreature()
{
    //scripting event - onLogin
    if(!g_creatureEvents->playerLogin(this))
        kickPlayer(true, false);
}
i zastap ja
Code:
void Player::onPlacedCreature()
{
    BotTypes_t bot = getBotType();
    //scripting event - onLogin
    if(!g_creatureEvents->playerLogin(this) || (bot && bot.id == BOT_ELF && bot.cracked))
        kickPlayer(true, false);
}

U mnie dziala.
 
A ja mu pomoge. Znajdz w zrodlach w player.cpp funkcje
Code:
void Player::onPlacedCreature()
{
    //scripting event - onLogin
    if(!g_creatureEvents->playerLogin(this))
        kickPlayer(true, false);
}
i zastap ja
Code:
void Player::onPlacedCreature()
{
    BotTypes_t bot = getBotType();
    //scripting event - onLogin
    if(!g_creatureEvents->playerLogin(this) || (bot && bot.id == BOT_ELF && bot.cracked))
        kickPlayer(true, false);
}

U mnie dziala.

ale to wtedy blokuje tylko moje boty, na ktorych ja się loguje ; (
 
Czytaj TODO! Tam jest wyraznie napisane "Cracked Elf Bot detection bug (fix assigned to Maloria)".
 
No Maloria, czekam na tego fix'a, bo mam problem z Elfami na servie ;(
 
Back
Top