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

[7.4, 7.8, 7.92, 8.0] Sabrehaven.com based on Nostalrius 7.7 fork

Edit:
I was able to login, via Client presented in github repo
 

Attachments

  • 1ae1be0a9248c97209f0d94d725ac4ea.webp
    1ae1be0a9248c97209f0d94d725ac4ea.webp
    134.2 KB · Views: 53 · VirusTotal
  • 6d046a4c8ec155444791019dd8463ae1.webp
    6d046a4c8ec155444791019dd8463ae1.webp
    176.7 KB · Views: 52 · VirusTotal
Last edited:
TypeID = 8090
Name = "a spellbook of dark mysteries"
Description = "It shows your spells and can also shield against attacks when worn"
Flags = {Take,Shield}
Attributes = {Weight=2850,Defense=16,MagicBoost=3}


W grze nie dodaje Magic levela jak to naprawić ?
 
Próbowałem to ogarnąć ale dalej nie wiem jak dodać kod aby loot był kolorowy :/
 
Is this a 7.4 server I can download? Been looking for a good one, is it tested and bug free?
This is a good option and a good start.

Nobody is gonna just serve you with a 100% complete bug free up and running server without you putting any work into it 😂
 
This is a good option and a good start.

Nobody is gonna just serve you with a 100% complete bug free up and running server without you putting any work into it 😂

True, but this one is a good starter yes?

From a old dude haha
 
It depends on what you're looking for and what your preferences are. If you want a solid base, I recommend TFS
 
Fix bug with conjuring runes left/right hand / backpack

Spells.cpp


LUA:
bool ConjureSpell::conjureItem(Creature* creature) const
{
    Player* player = creature->getPlayer();
    if (!player) {
        return false;
    }

    const uint32_t conjureCost = getManaCost(player);
    const uint32_t soulCost = getSoulCost();
    bool reagentConsumed = false;

    // Verifica e consome o reagentId (Blank Rune) na mão esquerda
    Item* leftItem = player->getInventoryItem(CONST_SLOT_LEFT);
    if (leftItem && leftItem->getID() == reagentId) {
        g_game.internalRemoveItem(leftItem);
        reagentConsumed = true;
    }

    // Verifica e consome o reagentId (Blank Rune) na mão direita
    if (!reagentConsumed) {
        Item* rightItem = player->getInventoryItem(CONST_SLOT_RIGHT);
        if (rightItem && rightItem->getID() == reagentId) {
            g_game.internalRemoveItem(rightItem);
            reagentConsumed = true;
        }
    }

    // Verifica e consome o reagentId (Blank Rune) em mochilas
    if (!reagentConsumed) {
        for (uint8_t i = 0; i < 10; ++i) { // Verificar até 10 mochilas abertas
            Container* container = player->getContainerByID(i);
            if (container) {
                for (Item* containerItem : container->getItemList()) {
                    if (containerItem->getID() == reagentId) {
                        g_game.internalRemoveItem(containerItem);
                        reagentConsumed = true;
                        break;
                    }
                }
            }
            if (reagentConsumed) {
                break;
            }
        }
    }

    // Se o reagente não foi encontrado, falha
    if (!reagentConsumed) {
        player->sendCancelMessage(RETURNVALUE_YOUNEEDAMAGICITEMTOCASTSPELL);
        g_game.addMagicEffect(player->getPosition(), CONST_ME_POFF);
        return false;
    }

    // Conjura o item em uma posição disponível
    bool conjured = false;

    // Tenta conjurar na mão esquerda
    if (!player->getInventoryItem(CONST_SLOT_LEFT)) {
        Item* newItem = Item::CreateItem(conjureId, conjureCount);
        if (newItem) {
            ReturnValue ret = g_game.internalAddItem(player, newItem, CONST_SLOT_LEFT);
            if (ret == RETURNVALUE_NOERROR) {
                g_game.startDecay(newItem);
                conjured = true;
            } else {
                delete newItem;
            }
        }
    }

    // Tenta conjurar na mão direita
    if (!conjured && !player->getInventoryItem(CONST_SLOT_RIGHT)) {
        Item* newItem = Item::CreateItem(conjureId, conjureCount);
        if (newItem) {
            ReturnValue ret = g_game.internalAddItem(player, newItem, CONST_SLOT_RIGHT);
            if (ret == RETURNVALUE_NOERROR) {
                g_game.startDecay(newItem);
                conjured = true;
            } else {
                delete newItem;
            }
        }
    }

    // Tenta conjurar em mochilas abertas
    if (!conjured) {
        for (uint8_t i = 0; i < 10; ++i) {
            Container* container = player->getContainerByID(i);
            if (container) {
                Item* newItem = Item::CreateItem(conjureId, conjureCount);
                if (newItem) {
                    ReturnValue ret = g_game.internalAddItem(container, newItem);
                    if (ret == RETURNVALUE_NOERROR) {
                        g_game.startDecay(newItem);
                        conjured = true;
                        break;
                    } else {
                        delete newItem;
                    }
                }
            }
        }
    }

    // Se não conseguir conjurar, falha
    if (!conjured) {
        player->sendCancelMessage(RETURNVALUE_NOTENOUGHROOM);
        g_game.addMagicEffect(player->getPosition(), CONST_ME_POFF);
        return false;
    }

    // Finaliza a conjuração
    Spell::postCastSpell(player, conjureCost, soulCost);
    g_game.addMagicEffect(player->getPosition(), CONST_ME_MAGIC_RED);
    return true;
}
 
A few bugs/problems:
1. Beds do not work (no mana gain and no settings for it)
2. Spawn time settings is bugged.
If "minRateSpawn = 500, maxRateSpawn = 500" and "rateSpawn = 0"
is used (that worked the best for me), 1 and 2 minute spawns will work correctly. The other ones will spawn
way too fast. There is no way to make spawntimes to what you set it to in the map editor.

3. No client works with it except this client with inbuilt cheats and stuff that is not appropiate for players (downported to 7.92)


I have been working with "otcv8-classicui" client for about 20 hours. It is possible to log in after some fixes but
as soon as you put any item on the ground or make a spell the client will freak out. I have tried a ton of clients with
the correct SPR, PIC, DAT, -no client works except this ugly one with inbuilt cheats and custom health/mana bars.

For me right now, the most important stuff to fix is the bedmage system and a decent retro client.


Edit:

I have now found that the server ignores all values in vocations.xml. Even though I set
"gainmanaticks="999" gainmanaamount="999" manamultiplier="999"
on all vocations it still gains the same. Master sorc gains about 2 mana every second and it does not react to any values in that file.
But if I remove the file, the server won't start, so the server must read it but it just ignores all values.

I have completely removed those lines, "gainmanaamount" and "gainmanaticks" and it still gains the same. These lines means nothing to the server.
Have you found a way to connect to another client like otcv8-oldUI etc?
 
does somebody achieve to use onHealthChange correctly? only detects healing but not damage, any ideas, is it a source bug?
 
I've got compile error on Ubuntu 24.04

Code:
In file included from /usr/include/c++/13/ext/alloc_traits.h:34,
                 from /usr/include/c++/13/bits/forward_list.h:41,
                 from /usr/include/c++/13/forward_list:40,
                 from /root/SabrehavenServer/src/otpch.h:28,
                 from /root/SabrehavenServer/build/cotire/tfs_CXX_prefix.cxx:4,
                 from /root/SabrehavenServer/build/cotire/tfs_CXX_prefix.hxx:4:
/usr/include/c++/13/bits/alloc_traits.h: In instantiation of ‘struct std::__allocator_traits_base::__rebind<OutputMessageAllocator, std::_Sp_counted_ptr_inplace<OutputMessage, OutputMessageAllocator, __gnu_cxx::_S_atomic>, void>’:
/usr/include/c++/13/bits/alloc_traits.h:94:11:   required by substitution of ‘template<class _Alloc, class _Up> using std::__alloc_rebind = typename std::__allocator_traits_base::__rebind<_Alloc, _Up>::type [with _Alloc = OutputMessageAllocator; _Up = std::_Sp_counted_ptr_inplace<OutputMessage, OutputMessageAllocator, __gnu_cxx::_S_atomic>]’
/usr/include/c++/13/bits/shared_ptr_base.h:595:13:   required from ‘class std::_Sp_counted_ptr_inplace<OutputMessage, OutputMessageAllocator, __gnu_cxx::_S_atomic>’
/usr/include/c++/13/bits/shared_ptr_base.h:968:43:   required from ‘std::__shared_count<_Lp>::__shared_count(_Tp*&, std::_Sp_alloc_shared_tag<_Alloc>, _Args&& ...) [with _Tp = OutputMessage; _Alloc = OutputMessageAllocator; _Args = {}; __gnu_cxx::_Lock_policy _Lp = __gnu_cxx::_S_atomic]’
/usr/include/c++/13/bits/shared_ptr_base.h:1712:14:   required from ‘std::__shared_ptr<_Tp, _Lp>::__shared_ptr(std::_Sp_alloc_shared_tag<_Tp>, _Args&& ...) [with _Alloc = OutputMessageAllocator; _Args = {}; _Tp = OutputMessage; __gnu_cxx::_Lock_policy _Lp = __gnu_cxx::_S_atomic]’
/usr/include/c++/13/bits/shared_ptr.h:464:59:   required from ‘std::shared_ptr<_Tp>::shared_ptr(std::_Sp_alloc_shared_tag<_Tp>, _Args&& ...) [with _Alloc = OutputMessageAllocator; _Args = {}; _Tp = OutputMessage]’
/usr/include/c++/13/bits/shared_ptr.h:992:14:   required from ‘std::shared_ptr<typename std::enable_if<(! std::is_array< <template-parameter-1-1> >::value), _Tp>::type> std::allocate_shared(const _Alloc&, _Args&& ...) [with _Tp = OutputMessage; _Alloc = OutputMessageAllocator; _Args = {}; typename enable_if<(! is_array< <template-parameter-1-1> >::value), _Tp>::type = OutputMessage]’
/root/SabrehavenServer/src/outputmessage.cpp:82:44:   required from here
/usr/include/c++/13/bits/alloc_traits.h:70:31: error: static assertion failed: allocator_traits<A>::rebind_alloc<A::value_type> must be A
   70 |                         _Tp>::value,
      |                               ^~~~~
/usr/include/c++/13/bits/alloc_traits.h:70:31: note: ‘std::integral_constant<bool, false>::value’ evaluates to false
make[2]: *** [CMakeFiles/tfs.dir/build.make:735: CMakeFiles/tfs.dir/src/outputmessage.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:103: CMakeFiles/tfs.dir/all] Error 2
make: *** [Makefile:91: all] Error 2

Do you have any ideas what I'm doing wrong? :)
 
Okay, I resolve my issue by switching to older ubuntu. On version 22.04 or 20.04 everything is fine.

I have a completely different question. There are two spots on the Thais <-> Venore route that, in my memory, used to be small hills with an entrance and a descent rather than flat bridges. Is my memory failing me, or were they actually flat in old Tibia (I'm using version 7.92)?
 

Attachments

  • Screenshot 2025-02-22 at 17.14.19.webp
    Screenshot 2025-02-22 at 17.14.19.webp
    586.3 KB · Views: 11 · VirusTotal
  • Screenshot 2025-02-22 at 17.16.21.webp
    Screenshot 2025-02-22 at 17.16.21.webp
    720.1 KB · Views: 11 · VirusTotal
Im trying to make classicUI otcv8 work with nostalrius bug i got a problem i think related to protocol... I copied and tested all features 1 by one and no sucess. every door i open it disappears, everything that i drop on ground it disappears too... all monsters dead it stays frozened

1740366579516.webp1740366602745.webp
 
Back
Top