#W# Added some color to the vitals script.
This commit is contained in:
parent
a70122a3d5
commit
a274b44658
1 changed files with 3 additions and 2 deletions
|
|
@ -23,6 +23,7 @@ namespace Server.Scripts.Commands
|
|||
{
|
||||
// Standard UO Hues
|
||||
int greenHue = 63;
|
||||
int orangeHue = 43;
|
||||
int redHue = 33;
|
||||
|
||||
// --- Hunger Status ---
|
||||
|
|
@ -31,7 +32,7 @@ namespace Server.Scripts.Commands
|
|||
else if (m.Hunger >= 11)
|
||||
m.SendMessage(greenHue, "Your stomach gives a slight rumble.");
|
||||
else if (m.Hunger >= 6)
|
||||
m.SendMessage(redHue, "You are starting to feel hungry.");
|
||||
m.SendMessage(orangeHue, "You are starting to feel hungry.");
|
||||
else if (m.Hunger >= 1)
|
||||
m.SendMessage(redHue, "You are getting extremely hungry. You should eat soon!");
|
||||
else
|
||||
|
|
@ -43,7 +44,7 @@ namespace Server.Scripts.Commands
|
|||
else if (m.Thirst >= 11)
|
||||
m.SendMessage(greenHue, "Your mouth feels a little dry.");
|
||||
else if (m.Thirst >= 6)
|
||||
m.SendMessage(redHue, "You are starting to feel thirsty.");
|
||||
m.SendMessage(orangeHue, "You are starting to feel thirsty.");
|
||||
else if (m.Thirst >= 1)
|
||||
m.SendMessage(redHue, "You are getting extremely thirsty. You should drink soon!");
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue