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

easy question above item.xml

iruga

#S¥Ơ'..
Joined
May 18, 2009
Messages
371
Reaction score
4
Location
Brazil
I wonder if its possible to configure in item.xml for the bow to be "one-handed" and the arrow to stay in another empty slot of the hand?

Like this:
setmaravilha.png


PS: I'll use the ammunation support for another'thing.
Thanks for all. :thumbup:
 
Last edited:
Huh if anybody need it so:

1.Open source > player.cpp and find line:
Code:
Item* ammoItem = getInventoryItem(SLOT_AMMO);
and replace:
Code:
Item* ammoItem = getInventoryItem(SLOT_RIGHT);

Now delete atributies bow, crossbow itc in items.xml and anjoy.
Code:
<attribute key="slotType" value="two-handed" />
 
Back
Top