[READ-ONLY] Mirror of https://github.com/thoda-dev/DualUniverse. DualUniverse scripts
0

Configure Feed

Select the types of activity you want to include in your feed.

Update console text colors.lua

authored by

Thomas and committed by
GitHub
(Sep 30, 2020, 5:57 PM +0200) 8cb66537 9a5d4a77

+1
+1
tools/console text colors.lua
··· 1 1 --[[ 2 2 Jericho's system.print() extension -- https://github.com/Jericho1060 3 3 Display content in lua chat channel with colors 4 + Source : https://github.com/Jericho1060/DualUniverse/blob/master/tools/console%20text%20colors.lua 4 5 ]] 5 6 system.printColor = function(message, color) system.print('<span style="color:' .. color .. ';">' .. message .. '</span>') end 6 7 system.printPrimary = function(message) system.printColor(message, "#007bff") end