Ulysses

Ulysses Stuff => General Chat & Help and Support => Topic started by: Kevin on November 26, 2006, 12:41:52 AM

Title: COLORS AND WORDS
Post by: Kevin on November 26, 2006, 12:41:52 AM
How do i change what the server says every like 10 mins (eg:  Youre Playing on XXXXXX, please enjoy your stay) how can i change that to a specific color and change it to my wording and how often it shows up. THanks

PS: how do i change the color of the messages that come up with the command "@@@"
Title: Re: COLORS AND WORDS
Post by: Megiddo on November 26, 2006, 08:21:21 AM
You can find the advert config in the config directory.

To change the color of that command, you'd have to change the code, which is in util.lua.
Title: Re: COLORS AND WORDS
Post by: Kevin on November 26, 2006, 10:59:26 AM
Thanks I found them both but what line do i chnage to make them red. ???
Title: Re: COLORS AND WORDS
Post by: spbogie on November 26, 2006, 11:40:26 AM
For the advert
in configs/server.ini:
Code: [Select]
ulx addCsayAdvert "You're playing on %hostname%, enjoy your stay!" 100 255 200 300 10
Put your message in the quotes. The first 3 numbers are the red, green, and blue color values (out of 255). The fourth is the time it waits to repeat (seconds), and the fifth is how long it should stay visible (seconds).

For the @@@.
In ulx/util.lua:
in function ulx.cc_csay (~line 189)
Code: [Select]
ULib.csay( 0, args )
add your additional color arguments to that call.
ex for red it would be
Code: [Select]
ULib.csay( 0, args, 255, 0, 0 )
Title: Re: COLORS AND WORDS
Post by: Kevin on November 26, 2006, 05:16:56 PM
thanks
Title: Re: COLORS AND WORDS
Post by: hi_tech_guy_18 on September 20, 2008, 12:16:17 AM
Cant Find ulx/util.lua file ?? Was it Removed and the code placed else were ?
Title: Re: COLORS AND WORDS
Post by: Megiddo on September 20, 2008, 12:43:35 AM
Nice two year bump..
Title: Re: COLORS AND WORDS
Post by: hi_tech_guy_18 on September 20, 2008, 08:46:13 AM
Sorry for the 2 year bump but instead of starting a whole new recent thread on changing the ULX Chat text colours
I ran a forum search for it and recycled this old thread...

I did find where the file was in the newer versions
Ulx\lua\ulx\modules\util.lua
Title: Re: COLORS AND WORDS
Post by: Megiddo on September 21, 2008, 12:09:07 AM
I think the instructions should still work for you.