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

editing

Mercer

New Member
Joined
Jul 14, 2013
Messages
24
Reaction score
1
how can i edit the weapons and spell to act and attack faster?
also how can i edit the runes/pots to never end?
 
you can edit attack of weapon in item.xml
You can do runes unlimited in config.lua
You can do potion unlimited in data/actions/scripts/liquids/potions.lua and remove:
Lua:
if(not potion.empty or config.removeOnUse) then
		doRemoveItem(item.uid)
		return true
	end

	doTransformItem(item.uid, potion.empty)
You can change attack speed in vocation.xml
And you can search all awnser of your question with searching ^_^
 
can u tell me what part exactly in the config.lua/items.xml? ive searched and tried to do the cooldowns 0 and so still no use
 
You can change attackspeed in vocations.xml and lower exhaustion of spells in spells.xml.
About removing charges from runes in config, it depense on which server you use how it's called exactly, but look for something like this
Lua:
removeRuneCharges
or
Lua:
removeChargesFromRunes
Set it to yes/true.
 
You want to change how fast you attack with all weapons right? That is attackspeed which you can change in vocations.xml
Or do you mean only for a few weapons?
 
Back
Top