20 lines
502 B
C#
20 lines
502 B
C#
namespace Server.Misc
|
|
{
|
|
public static class Animations
|
|
{
|
|
public static void AnimateRequest(Mobile from, string actionName)
|
|
{
|
|
var action = actionName switch
|
|
{
|
|
"bow" => 32,
|
|
"salute" => 33,
|
|
_ => 0
|
|
};
|
|
|
|
if (action > 0 && from.Alive && !from.Mounted && from.Body.IsHuman)
|
|
{
|
|
from.Animate(action, 5, 1, true, false, 0);
|
|
}
|
|
}
|
|
}
|
|
}
|