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

Solved quick question

WiLDTuRTLE

Member
Joined
Feb 26, 2011
Messages
478
Reaction score
5
Why did the doSendAnimationText have been removed or whatever, ? what deprecated means? lol :///
 
The doSendAnimatedText function was removed in 9.1+ because it wasn't supported by the client anymore. Deprecated function means something like old function.
You can still use numbers as animated text. 100 is here the number as animated text.
LUA:
doPlayerSendTextMessage(cid, MESSAGE_EXPERIENCE, "Your text in server log.", getCreaturePosition(cid), 100, TEXTCOLOR_GREEN)
Or for text you can use doCreatureSay.
LUA:
doCreatureSay(cid, "Your text here", TALKTYPE_ORANGE_1)
 
The doSendAnimatedText function was removed in 9.1+ because it wasn't supported by the client anymore. Deprecated function means something like old function.
You can still use numbers as animated text. 100 is here the number as animated text.
LUA:
doPlayerSendTextMessage(cid, MESSAGE_EXPERIENCE, "Your text in server log.", getCreaturePosition(cid), 100, TEXTCOLOR_GREEN)
Or for text you can use doCreatureSay.
LUA:
doCreatureSay(cid, "Your text here", TALKTYPE_ORANGE_1)

Alrighty ! :)
 
Back
Top