• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Lua bow giging magic level

maikons

Member
Joined
Aug 1, 2015
Messages
227
Reaction score
16
What next step i need to do to when mages equip this bow, get magic level
On 0.4

Code:
  <item id="8856" article="a" name="mage bow">
     <attribute key="weight" value="1500" />
     <attribute key="slotType" value="two-handed" />
     <attribute key="weaponType" value="distance" />
     <attribute key="ammoType" value="arrow" />
     <attribute key="range" value="12" />
     <attribute key="hitChance" value="5" />
     <attribute key="attack" value="14" />
     <attribute key="magiclevelpoints" value="7" />
   </item>
 
Code:
[19:47:54.789] [Warning - MoveEvent::configureMoveEvent] Unknown slot type "bow"
[19:47:54.789] [Warning - MoveEvent::configureMoveEvent] Unknown slot type "bow"

Code:
  <movevent type="Equip" itemid="8856" slot="bow" event="function" value="onEquipItem">
     <vocation id="1"/>
     <vocation id="5" showInDescription="0"/>
     <vocation id="9" showInDescription="0"/>
     <vocation id="2"/>
     <vocation id="6" showInDescription="0"/>
     <vocation id="10" showInDescription="0"/>
   </movevent>
   <movevent type="DeEquip" itemid="8856" slot="bow" event="function" value="onDeEquipItem"/>
 
Back
Top