• 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.72] OTHire 0.0.1b - Based in OTServ Trunk (Latest)

@Nottinghster
but of course that all the time looking for but unfortunately I can not find so you do not help me in finding task system for this version ?
 
did anyobe fixed the runes issue?

I only requires a line change lol.

spells.cpp:

Code:
bool RuneSpell::executeUse(Player* player, Item* item, const PositionEx& posFrom,
    const PositionEx& posTo, bool extendedUse, uint32_t creatureId)

You should be smart enough to read the code and instead of using one, use this one;

Code:
if(result){
        Spell::postCastSpell(player);

        if(hasCharges && item && g_config.getNumber(ConfigManager::REMOVE_RUNE_CHARGES)){
            int32_t newCharge = std::max((int32_t)0, ((int32_t)item->getCharges()) - 1);
            g_game.transformItem(item, item->getID(), newCharge);
        }
    }
 
@Ezzz
well, it seems that your source already has
Code:
if(result){
Spell::postCastSpell(player);

if(hasCharges && item && g_config.getNumber(ConfigManager::REMOVE_RUNE_CHARGES)){
int32_t newCharge = std::max((int32_t)0, ((int32_t)item->getCharges()) - 1);
g_game.transformItem(item, item->getID(), newCharge);
}
}
and runes still broken
 
Then you're the only one reproducing it, since it's the first time I get that report.
 
I haven't got a problem with rune charges.

What about getting kicked by config.lua value "kills_to_ban" but not banished?

When do you think you can fix it?
 
@ezz @elnelson
@Ezzz
well, it seems that your source already has
Code:
if(result){
Spell::postCastSpell(player);

if(hasCharges && item && g_config.getNumber(ConfigManager::REMOVE_RUNE_CHARGES)){
int32_t newCharge = std::max((int32_t)0, ((int32_t)item->getCharges()) - 1);
g_game.transformItem(item, item->getID(), newCharge);
}
}
and runes still broken

yea i tryed again but still broke
 
@ezz @Floris
and how is it possible that you dont have the error and we do are you runing it on a other os? i am running it on windows 7
 
I compiled, its working, but if i try to login with 7.72 client says "cannot connect to game server". but if i try connect with other version says "please use client 7.72". -.-
can someone help me
 
I compiled, its working, but if i try to login with 7.72 client says "cannot connect to game server". but if i try connect with other version says "please use client 7.72". -.-
can someone help me
mine works with the normal client 7.72
 
@Nottinghster or @Ezzz

Hiho i have problem in house i change my 7.6 map to 7.7 and now house not completely work ;d house is but the door is emptyin rme have all house good position etc in console no have error house.xml or other related house
look my error in screen :

errorhouse.jpg
 
You've a problem with items.otb, make sure RME supports Door IDs for doors in house tiles.
 
@Nottinghster or @Ezzz

Hiho i have problem in house i change my 7.6 map to 7.7 and now house not completely work ;d house is but the door is emptyin rme have all house good position etc in console no have error house.xml or other related house
look my error in screen :

errorhouse.jpg
I have same problem, i dont know what the problem is
 
Back
Top