Games
Developers
Forums
More
BYOND
Download
Developer Guide
Developer Reference
Support
Terms of Service
Membership
Contact Us
Many features on this site require JavaScript. Please enable JavaScript support in your browser.
Register
Login
BYOND Forums
Announcements
·
BYOND Help
·
Bug Reports
·
Feature Requests
·
Beta Testers
·
Beta Bugs
·
Developer Help
·
Design Philosophy
·
Demos & Libraries
·
Tutorials & Snippets
·
Art & Sound
·
Classified Ads
·
Game Updates
·
Contests & Events
·
Linux Talk
·
On Topic
·
Off Topic
ok im back
[Tips]
ID:174532
Aug 10 2003, 2:58 am
Majinveku
I need to know does anyone know how or where I can learn how to liven up my chat? like some colors.. Ect.?
Aug 10 2003, 3:31 am
Rifthaven
There are many things you can do to make your text livlier!
To have colored text
(anywhere that there is a } or a {, replace with a > or <)
<<"{font color = blue}HI!"
<<"{font color = green}HI!"
Or a different way.
<<"\green HI!"
You can use a variable to have your own color
var/color = rgb(45,123,87)
<<"{font color = [color]}HI!"
You can change the appearence of the text
<<"{b}HI!" //bold
<<"{i}HI!" //italics
<<"{u}HI!" //underlined
One of my favorite is adding your icon to the text
<<"\icon[src] HI!"
Hopefully that will help
<font color = red>
Rifthaven
Aug 10 2003, 3:43 am
In response to
Rifthaven
Majinveku
thanks!
Copyright © 2025 BYOND Software. All rights reserved.
To have colored text
(anywhere that there is a } or a {, replace with a > or <)
<<"{font color = blue}HI!"
<<"{font color = green}HI!"
Or a different way.
<<"\green HI!"
You can use a variable to have your own color
var/color = rgb(45,123,87)
<<"{font color = [color]}HI!"
You can change the appearence of the text
<<"{b}HI!" //bold
<<"{i}HI!" //italics
<<"{u}HI!" //underlined
One of my favorite is adding your icon to the text
<<"\icon[src] HI!"
Hopefully that will help
<font color = red>Rifthaven