i can't understand youBecause its not allowed to post another fourm please
Tfs 0.4 Full fix!."Click here"
its sources but i need full ot with data , mods and s3db file*Cast system work
*player walk work <<<< dp tile 11063 <<<
*show player level and vocation in login
*mana and hp for precent %
*and more edite
*guild war shield work
*all u want is here
*and if u need any edite tell me
http://www.mediafire.com/download/w9g073x7u4xr262/forgottenl+source+with+full+edite(2).rar
and you cant compile this on linux XD*Cast system work
*player walk work <<<< dp tile 11063 <<<
*show player level and vocation in login
*mana and hp for precent %
*and more edite
*guild war shield work
*all u want is here
*and if u need any edite tell me
http://www.mediafire.com/download/w9g073x7u4xr262/forgottenl+source+with+full+edite(2).rar
i dont use linuxand you cant compile this on linux XD
as good as this up?i have same source work for luinx { evo.se} source![]()
https://otland.net/threads/can-someone-help-there-is-a-reward-if-someone-managed-to-help-me.243722/as good as this up?
Could you share?
*Cast system work
*player walk work <<<< dp tile 11063 <<<
*show player level and vocation in login
*mana and hp for precent %
*and more edite
*guild war shield work
*all u want is here
*and if u need any edite tell me
http://www.mediafire.com/download/w9g073x7u4xr262/forgottenl+source+with+full+edite(2).rar
if (player->getPlayerInfo(PLAYERINFO_MAXHEALTH) > 0)
{
msg->put<uint16_t>(uint16_t(player->getHealth() * 100 / player->getPlayerInfo(PLAYERINFO_MAXHEALTH)));
msg->put<uint16_t>(100);
}
else
{
msg->put<uint16_t>(0);
msg->put<uint16_t>(0);
}
to
msg->put<uint16_t>(player->getHealth());
msg->put<uint16_t>(player->getPlayerInfo(PLAYERINFO_MAXHEALTH));
_________________________________________________________________________________________
change
if (player->getPlayerInfo(PLAYERINFO_MAXMANA) > 0)
{
msg->put<uint16_t>(player->getPlayerInfo(PLAYERINFO_MANA) * 100 / player->getPlayerInfo(PLAYERINFO_MAXMANA));
msg->put<uint16_t>(100);
}
else
{
msg->put<uint16_t>(0);
msg->put<uint16_t>(0);
}
to
msg->put<uint16_t>(player->getPlayerInfo(PLAYERINFO_MANA));
msg->put<uint16_t>(player->getPlayerInfo(PLAYERINFO_MAXMANA));