mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +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)
|
||||
return false;
|
||||
|
||||
if (args.Length >= 1)
|
||||
if (args[0].ToUpper() != "HORSE")
|
||||
return false;
|
||||
if (args.Length <= 0)
|
||||
return;
|
||||
|
||||
string formattedmessage = Messages.FormatPlayerCommandCompleteMessage(message);
|
||||
|
||||
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);
|
||||
try
|
||||
{
|
||||
if (args[0].ToUpper() != "HORSE")
|
||||
return false;
|
||||
|
||||
string formattedmessage = Messages.FormatPlayerCommandCompleteMessage(message);
|
||||
|
||||
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);
|
||||
user.LoggedinClient.SendPacket(chatPacket);
|
||||
|
|
Loading…
Add table
Reference in a new issue