Drackles Posted June 3, 2021 Share Posted June 3, 2021 Oyuncu sunucuya giriş yaptığında rastgele sinyal rengi ve rastgele sohbet rengi vermesini istiyorum Link to comment
0 βurak Posted June 6, 2021 Share Posted June 6, 2021 (edited) merhaba bu şekilde yapabilirsin eğer freeroam scripti gibi scriptler kullanmıyorsanız sorunsuz çalışacaktır. local playerBlips = {} function setPlayerColorAndClearNick(player) local clearedNick = string.gsub(getPlayerName(player), "#%x%x%x%x%x%x", "") setPlayerName(player, clearedNick) local randomR = math.random(0, 255) local randomG = math.random(0, 255) local randomB = math.random(0, 255) if(not isElement(playerBlips[player])) then playerBlips[player] = createBlipAttachedTo(player, 0, 2, randomR, randomG, randomB, 255) end setPlayerNametagColor(player, randomR, randomG, randomB) end addEventHandler("onResourceStart", resourceRoot, function() for _,player in ipairs(getElementsByType("player")) do setPlayerColorAndClearNick(player) end end ) addEventHandler("onPlayerJoin", root, function() setPlayerColorAndClearNick(source) end ) addEventHandler("onPlayerQuit", root, function() if(isElement(playerBlips[source])) then destroyElement(playerBlips[source]) playerBlips[source] = nil end end ) Edited June 6, 2021 by Burak5312 Link to comment
0 Moderators Patrick Posted June 4, 2021 Moderators Share Posted June 4, 2021 Welcome! Your thread has been moved to Turkish section. Link to comment
0 Moderators turret001 Posted June 5, 2021 Moderators Share Posted June 5, 2021 merhaba, forumlara hoşgeldin. yabancı forumlara konu açmak için İngilizce yazman gerekiyor, sadece Türk alt forumlarında Türkçe konu açılmasına izin veriliyor. eğer istersen İngilizce olarak scripting forumuna konu açabilirsin ya da buradaki konuna cevap gelmesini bekleyebilirsin. beklemek istemezsen Discord sunucumuzdan da yardım alabilirsin. Link to comment
Question
Drackles
Oyuncu sunucuya giriş yaptığında rastgele sinyal rengi ve rastgele sohbet rengi vermesini istiyorum
Link to comment
3 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now