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

Duplicated ID

Solution
If you want to have two bolts looking the same, then edit items.otb and add another item with the same client id.

Other than that, it's not possible to have two weapon scripts on the same item id.
you have to use just one of those, the first register is default and will work like "usual", the second is a script, probably the on you want active
 
Firstly, whenever you are posting a support thread, you should include the server version (TFS), besides your title doesn't describe the problem at all.
Please check the rules here, #1, #5

Secondly,
The error says you have a duplicate registered item with id, that means you are registering the same item twice,
It's pretty clear in your screenshot that the item id 2543 & 2544 are registered twice.
 
Last edited:
If you want to have two bolts looking the same, then edit items.otb and add another item with the same client id.

Other than that, it's not possible to have two weapon scripts on the same item id.
 
Solution
@Slavi Dodo

I recently added a condition to the arrow when used in the fire bow. as you can see in the picture i have 2 arrow id.
I'm trying to create the same condition for bolt


Screenshot_2.jpg


i solved
<!-- Bolt -->
<distance id="2543" event="function" value="paladin/bolt"/>
<distance id="2543" event="script" value="knight/blazing.lua"/>
 
Last edited:
Back
Top