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

Mods - Custom Weapons / Items

  • Thread starter Thread starter Icy
  • Start date Start date
I

Icy

Guest
How would one go about making custom items via. the "mod" folder?

I've searched for this before and I know I've seen it - however, I can't find it for some reason.

Oh, and weapons too - I know for a fact that both of these can be added via mods, but again, can't remember how...
 
Bump / Update - Is there anyway to update it so that I can have them all in one file, say a MOD "items.xml" file as well as a MOD "weapons.xml" file?
 
Well anyways, I've been working on this for a bit and I've been able to localize all the wands into one "wands.xml" MOD file and give them everything custom which works for me :P

Code:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="Wands" version="1.0" author="Icy" contact="[email protected]" enabled="yes">
<!-- Basic Wand -->
	<wand id="2190" level="1" mana="0" min="2" max="5" type="energy" event="function" value="default"/>
	<item id="2190" article="a" name="basic wand" override="yes">
		<attribute key="description" value="TJ is a fag." />
		<attribute key="weight" value="1900" />
		<attribute key="weaponType" value="wand" />
		<attribute key="shootType" value="energy" />
		<attribute key="range" value="3" />
	</item>
<!-- Mediocre Wand -->
	<wand id="2188" level="6" mana="0" min="20" max="50" type="death" event="function" value="default"/>
	<item id="2188" article="a" name="mediocre wand" override="yes">
		<attribute key="description" value="LoL TJ is bad at game." />
		<attribute key="weight" value="2300" />
		<attribute key="weaponType" value="wand" />
		<attribute key="shootType" value="death" />
		<attribute key="range" value="3" />
	</item>
<!-- Uber1337H4X0rz St1C|< -->
	<wand id="2453" level="1337" mana="0" min="13371337" max="13371337" type="death" event="function" value="default"/>
	<item id="2453" article="the" name="Uber1337H4X0rz St1Ck" override="yes">
		<attribute key="description" value="omgwtfbbqhax" />
		<attribute key="weight" value="6969" />
		<attribute key="weaponType" value="wand" />
		<attribute key="shootType" value="death" />
		<attribute key="range" value="7" />
	</item>
	<!--
	Other Wands
		
	-->
</mod>
 
Back
Top