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

Dosendanimatedtext remove function or fix tfs 0.3

Thorn

Spriting since 2013
Joined
Sep 24, 2012
Messages
2,203
Solutions
1
Reaction score
921
Location
Chile
tfs 0.3
Hello guys!! i wrote about this before but i had no solution and i lost the thread so well here i go again because now it's getting me worried and angry this error, check my console:



Code:
[15/6/2017 20:51:28] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:29] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:30] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:30] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:31] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:32] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:33] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:33] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:34] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:34] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:35] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:37] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:52:13] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:52:57] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:53:48] doSendAnimatedText is now a deprecated function.
Code:
[15/6/2017 20:51:28] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:29] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:30] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:30] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:31] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:32] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:33] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:33] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:34] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:34] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:35] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:51:37] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:52:13] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:52:57] doSendAnimatedText is now a deprecated function.
[15/6/2017 20:53:48] doSendAnimatedText is now a deprecated function.


and keeps going, it's slow, but it's affecting the game, and you wouldn't guess what's happening in the map
a teleport animation is appearing in the temple position non stop like an endless gif
323c5cf66003bfed4fbf2fec444fbbad.png


does anyone know how to fix this??? D:
 
you're probably using a different version of 0.3.6 that was meant for a higher client version
if you're using a client before 9.6 then you should get a new source
the function was removed in tfs versions that supported 9.6+ because the client no longer supported strings for text, only numbers, that's why you're getting that error
but if you're using 8.6 or some shit and dont feel like getting a new source for some reason you should upload your source here so someone can help you
 
Try changing your animated text to orange text instead?
You'll have to go through your scripts to find what is causing the animated text though. It's most likely a global script.
Lua:
doCreatureSay(cid, "You have disturbed some bats!", TALKTYPE_ORANGE_1, cid)
 
The problem guys is i have no idea where im using these animatedtext, also i don't know if the eternal teleport animation is related to it
and i use 9.83 server

--

now the error in console stoped but the eternal teleport animation is still happening D:
 
try putting this in your compat lib
Lua:
doSendAnimatedText = function(pos, text)
    local specs = getSpectators(pos, 7, 5)
    for _, cid in ipairs(specs) do
        doCreatureSay(cid, text, TALKTYPE_ORANGE_1, false, cid, pos)
    end
end
 
This has been something ive been trying to do on my TFS 0.2.15 for a 9.81 server for a while now. I have tried "doCreatureSay" but get "LuaScriptInterface::luaDoCreatureSay(). Creature not found" this error.
 
Make a thread with your script/errors/tfs version and as much details as you can and then people will try to help you.
 
Back
Top