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

walking and using

Petrus69

Creating Tibia Servers
Joined
Nov 22, 2022
Messages
18
Reaction score
1
Location
Poland



Help where to change it so that it is liquids while walking
so that there is no undo during use
where in src ?
 
I THINK. which is in game.h

Lua:
static constexpr int32_t MOVE_CREATURE_INTERVAL = 1000;
static constexpr int32_t RANGE_MOVE_CREATURE_INTERVAL = 1500;
static constexpr int32_t RANGE_MOVE_ITEM_INTERVAL = 400;
static constexpr int32_t RANGE_USE_ITEM_INTERVAL = 400;
static constexpr int32_t RANGE_USE_ITEM_EX_INTERVAL = 400;
static constexpr int32_t RANGE_USE_WITH_CREATURE_INTERVAL = 400;
static constexpr int32_t RANGE_ROTATE_ITEM_INTERVAL = 400;
static constexpr int32_t RANGE_BROWSE_FIELD_INTERVAL = 400;
static constexpr int32_t RANGE_WRAP_ITEM_INTERVAL = 400;
static constexpr int32_t RANGE_REQUEST_TRADE_INTERVAL = 400;

i guess it is
RANGE_USE_ITEM_INTERVAL

OR

RANGE_USE_ITEM_EX_INTERVAL

OR

RANGE_USE_WITH_CREATURE_INTERVAL
 
Back
Top