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

Looking for programmer C / TFS 0.4

Mr.Caffeine

Active Member
Joined
Nov 4, 2018
Messages
79
Reaction score
43
Hello, I need a good C programmer, I have a lot of things to do.
I pay for each service. (Paypal or Bitcoin)
Using tfs 0.4

First job:
I have a high experience server and the players damage is usually over 1kk. I want the damage values to be displayed in "k" and "kk" as the example image. This change can be only on the screen and in the serverlog.

damage.png

Contact me private.
 
Bump! Again I need a programmer with experience in old engine 0.4

Payment in crypto or paypal, contact me private message
 
function onStatsChange(cid, attacker, enps, combat, value)
local dmg = 1
value = -value
if value <= 0 then
return true
end
if (value/1000) >= 1000 then
dmg = (value/1000000).."KK"
elseif (value/1000) >= 1 then
dmg = (value/1000).."K"
else
dmg = value
end
if isCreature(attacker) then
doSendAnimatedText(getThingPos(attacker), dmg, 180)
return false
end
end
 
Back
Top