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

Range weapons

olav1ar

New Member
Joined
Aug 1, 2008
Messages
55
Reaction score
0
Putt UH on a hotkey.
Attack a trainer with a range weapon (bow + arrow).
Then pres and hold down the hotkey with UH.

If u do this the the playser stopp attacking.

Chance the bow with a sword, and continue attacking and holding down the hotkey with uh.

and u see the player spamms healing and attack at same time.

But this dont work on range weapons.

Why :) ?
 
yep, its a c++ issue.

in weapons,h chance :

virtual bool interruptSwing() const {return !swing;}
to :
virtual bool interruptSwing() const {return false;}
 
Back
Top