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

Mix rope, shovel, pick, machete and knife

bury

Active Member
Joined
Jul 27, 2008
Messages
421
Solutions
7
Reaction score
25
I have located all these scripts but I dont know how to mix it. I have jammed all the squeez tools and I dont want to use them (I changed jamchance=0 and still doesnt work)

I just want one tool what mixes the functions of the Rope, Shovel, Pick, Machete and Knife. All in one tool. I think is not too hard but I dont know much about .lua system. Then in actions.xml choose the itemid I would want to use for that tool.

Does anybody know how to do it? :S
 
You don't need to use jamchance = 0. Just remove the part where it jams it.

Look for:
LUA:
	if(math.random(1, 100) <= config.jamChance) then
		doTransformItem(item.uid, item.itemid + 1)
		doDecayItem(item.uid)
	end
And just erase that, should work fine without jamming.
 
Back
Top