mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
Fix %CALL HORSE
This commit is contained in:
parent
4fd4fcb652
commit
479b539b44
1 changed files with 20 additions and 10 deletions
|
@ -782,17 +782,27 @@ namespace HISP.Game.Chat
|
||||||
if (!user.Administrator)
|
if (!user.Administrator)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (args.Length >= 1)
|
if (args.Length <= 0)
|
||||||
if (args[0].ToUpper() != "HORSE")
|
return;
|
||||||
return false;
|
|
||||||
|
|
||||||
string formattedmessage = Messages.FormatPlayerCommandCompleteMessage(message);
|
try
|
||||||
|
{
|
||||||
WildHorse horse = WildHorse.WildHorses[GameServer.RandomNumberGenerator.Next(0, WildHorse.WildHorses.Length)];
|
if (args[0].ToUpper() != "HORSE")
|
||||||
horse.X = user.X;
|
return false;
|
||||||
horse.Y = user.Y;
|
|
||||||
|
string formattedmessage = Messages.FormatPlayerCommandCompleteMessage(message);
|
||||||
GameServer.UpdateAreaForAll(user.X, user.Y);
|
|
||||||
|
WildHorse horse = WildHorse.WildHorses[GameServer.RandomNumberGenerator.Next(0, WildHorse.WildHorses.Length)];
|
||||||
|
horse.X = user.X;
|
||||||
|
horse.Y = user.Y;
|
||||||
|
|
||||||
|
GameServer.UpdateAreaForAll(user.X, user.Y);
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
byte[] chatPacket = PacketBuilder.CreateChat(formattedmessage, PacketBuilder.CHAT_BOTTOM_LEFT);
|
byte[] chatPacket = PacketBuilder.CreateChat(formattedmessage, PacketBuilder.CHAT_BOTTOM_LEFT);
|
||||||
user.LoggedinClient.SendPacket(chatPacket);
|
user.LoggedinClient.SendPacket(chatPacket);
|
||||||
|
|
Loading…
Add table
Reference in a new issue