Ok now im trying to look for a globalevent like a information globalevent example it saying Updates coming soon. like that but the thing is i dont no how to change the colour of it i no all globalevents are in red but i was wondering if i could get it in say white would be good if possible or a colour bright and easy to see i have this so far
-- Auto broadcast --
-- Config --
local messages = {"Use /commands for a list of new commands","Updates will be happening","If you need help or have general questions please leave them in Help Channel and GOD Hell will get back to you"}
local userandom = true
local messagestorage = 23133
-- /Config --
function onThink(interval, lastExecution, thinkInterval)
if (userandom == true) then
doBroadcastMessage(messages[math.random(1,table.getn(messages))])
else
doBroadcastMessage(messages[getGlobalStorageValue(messagestorage)])
if getGlobalStorageValue(messagestorage) < table.getn(messages) then
setGlobalStorageValue(messagestorage, getGlobalStorageValue(messagestorage)+1)
else
setGlobalStorageValue(messagestorage, 1)
doSendAnimatedText(pos, text, TEXTCOLOR_WHITE)
end
end
return true
end
would be much appreciated if some1 could tell me or make me a globalevent script where its in white writting instead of red....
-- Auto broadcast --
-- Config --
local messages = {"Use /commands for a list of new commands","Updates will be happening","If you need help or have general questions please leave them in Help Channel and GOD Hell will get back to you"}
local userandom = true
local messagestorage = 23133
-- /Config --
function onThink(interval, lastExecution, thinkInterval)
if (userandom == true) then
doBroadcastMessage(messages[math.random(1,table.getn(messages))])
else
doBroadcastMessage(messages[getGlobalStorageValue(messagestorage)])
if getGlobalStorageValue(messagestorage) < table.getn(messages) then
setGlobalStorageValue(messagestorage, getGlobalStorageValue(messagestorage)+1)
else
setGlobalStorageValue(messagestorage, 1)
doSendAnimatedText(pos, text, TEXTCOLOR_WHITE)
end
end
return true
end
would be much appreciated if some1 could tell me or make me a globalevent script where its in white writting instead of red....