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

Bugs (that should be urgently fixed)

Rafael Hamdan

OT Developer
Joined
Dec 12, 2007
Messages
98
Reaction score
1
Location
Brasil - Minas Gerais
All right, first, there's a problem when compiling TFS newest revision:

At these lines (function: combat::canTargetCreature):

Code:
	if(target->getPlayer() && isProtected(player, target))
		return RET_YOUMAYNOTATTACKTHISPLAYER;

Sure it won't work, cause function isProtected hopes that the second parameter will be a player, and target is set like a creature. So let's change it to:

Code:
	if(target->getPlayer() && isProtected(player, target->getPlayer()))
		return RET_YOUMAYNOTATTACKTHISPLAYER;

The other problems are:

- If you are shooting sudden deaths, you won't use your weapon (if it's a distance weapon)

- Exhaustion of runes and potions are clearly bugged. You can't walk and shoot/use sd/potions, and, sometimes you shoot 1sd in 1 sec, and sometimes 2 sd in 3 seg. The exhaustion is clealy crazy.

I've already seen a lot of reports, but no one give importance to them. You should remake your action delay functions.

Yours,
Rafael Hamdan;
 
A lot of people say: "you can't perform two actions at the same time, blabla, it's like tibia global".

It's not! I have 2 characters at tibia global:

A royal paladin level 67 and a master sorcerer level 81.

I can shoot sudden deaths and walk, and I can shoot sudden deaths and arrows at the same time.

Come on guys! Let's fix it.
 
Agreed but as I said b4 in other thread this is called "bot prevent"
but also should be changed it suck for unbotters..
 
We should indeed not use the same exhaustion condition for spells and weapons, I'll try to have it fixed for the full 0.2 release.

Regarding the first "issue", there is no real problem with it, did it cause any bug ingame?
 
Well, it was giving me an error while compiling, so I couldn't create the executer (.exe file).

About the weapons and spells, I saw that you are using the same delay for spells and weapons, the same !canDoAction. And please, set players able to run / shoot sds and use potions at the same time, thats sucks.

Yours,
Rafael Hamdan;
 

Similar threads

Back
Top