Beyler Ben Bi Text yani ChatBox bir Yazıya Animasyon Şeklinde Yukarıdan Aşağıya İnmeli
Şekilde Yapmalıyım Ama Bir türlu Çözemedim
interpolateBetween ilemi Yapıcaz Mantığını Anlayamadım ?
Yardım Edebilirmisiniz ?
Örnek Olarak Bu
Spam = {}
function antiChatSpam()
if isTimer(Spam[source]) then
cancelEvent()
outputChatBox("#ffffff"..getPlayerName(source).." 1 DAKIKA KONUSAMAZSINIZ ", getRootElement(), 255, 255, 0,true)
setPlayerMuted(source, true)
setTimer ( OtomatikMute, 60000, 1, source)
else
Spam[source] = setTimer(function(source) Spam[source] = nil end, 1000, 1, source)
end
end
addEventHandler("onPlayerChat", root, antiChatSpam)
function OtomatikMute ( player )
if ( isElement ( player ) and isPlayerMuted ( player ) ) then
setPlayerMuted ( player, false )
outputChatBox ("#FFFFFF"..getPlayerName ( player ).." Artik Konusabilirsin Ve SAKIN FLOOD YAPMA",getRootElement(), 255, 255, 0,true )
end
end