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

Action Perfect items upgrade

whys that? i dont know a lot about scripting. And would it work with 8.6?
 
Last edited:
better not use otserv either, and get TFS 0.3.6. the server's protocol version has nothing to do with the functionality (Lua functions?) it provides
 
Hi, i know this is for 0.3.6, but im testing on 0.4, and it only have one possible bug.

When upgrading a shield (any) its upgrade this way.

Without upgrade:
21:19 You see a demon shield (Def:35).
It weighs 26.00 oz.
This powerful shield seems to be as light as air.


Upgraded:
21:19 You see a demon shield +1 (Atk:1, Def:35).
It weighs 26.00 oz.
This powerful shield seems to be as light as air.


Its must upgrade defense points, not attack.

Any help will be apreciated.

Using: TSF 0.4 rev. 3884

Thank you!

@snacky
I got the function today to use in the same rev (3884). I was looking for the same error and found the solution.

The functions below are with the getItemWeaponType(uid) == X changed. 5 is for Shield e 4 for Bow.
Must be this way:
Code:
[B]local function isShield(uid)[/B] -- Function by Mock the bear.
	uid = uid or 0
	[COLOR="#008000"][B]if getItemWeaponType(uid) == 5 then[/B][/COLOR]
		return true
	end
	return false
end
[B]local function isBow(uid)[/B] -- Function by Mock the bear.
	uid = uid or 0
	[COLOR="#008000"][B]if getItemWeaponType(uid) == 4 then[/B][/COLOR]
		return true
	end
	return false
end
 
Last edited:
i like to know too Where are save points upgrade?? example: fire sword + 7 in Database? and how i add HitChance for crossbows?
 
table player_items

and my question:
why upgrading crossbows has no effect?
eg. ironworker without upgrades has same stats as ironworker +5
 
ok it seems that is saved in the BLOB attributes.
but it seems that the items just add text and do not get stronger, someone can explain?
 
WTF IS THE FUCKING PROBLEM WITH THE LUAPASTEY LINK!!!!!!!!!

@MODERATOR

CLICKED ON THAT LINK AND IT INSTANTLY REBOOTED MY COMPUTER
 
Back
Top