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

[request] Attack speed by weapon

morramead

New Member
Joined
Jan 23, 2008
Messages
74
Reaction score
0
Hello, someone know made a script to add atk speed in weapons?

eg.:

Spike sword - 2seg
Fire sword - 1 seg

etc

Ty :)
 
Like this:
Code:
	<item id="2383" article="a" name="spike sword">
		<attribute key="weight" value="5000"/>
		<attribute key="defense" value="21"/>
		<attribute key="attack" value="24"/>
		<attribute key="weaponType" value="sword"/>
		<attribute key="extradef" value="2"/>
                <attribute key="attackspeed" value="1000"/>

GL HF
 
PHP:
			else if(tmpStrValue == "attackspeed")
			{
				if(readXMLInteger(itemAttributesNode, "value", intValue))
					it.attackSpeed = intValue;
			}

yes it will work with latest tfs
 
Back
Top