mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Fixed Bugs
This commit is contained in:
parent
fb18c1fbe4
commit
46350a0724
@ -704,11 +704,6 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||||||
QueuePacket(SetMusicPacket.BuildPacket(actorId, musicId, 1));
|
QueuePacket(SetMusicPacket.BuildPacket(actorId, musicId, 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ChangeMusicWithEffect(ushort musicId, ushort effect)
|
|
||||||
{
|
|
||||||
QueuePacket(SetMusicPacket.BuildPacket(actorId, musicId, effect));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SendChocoboAppearance()
|
public void SendChocoboAppearance()
|
||||||
{
|
{
|
||||||
BroadcastPacket(SetCurrentMountChocoboPacket.BuildPacket(actorId, chocoboAppearance), true);
|
BroadcastPacket(SetCurrentMountChocoboPacket.BuildPacket(actorId, chocoboAppearance), true);
|
||||||
@ -1268,17 +1263,12 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void issueChocobo(byte appearanceId, string name)
|
public void IssueChocobo(byte appearanceId, string nameResponse)
|
||||||
{
|
{
|
||||||
Database.IssuePlayerChocobo(this, appearanceId, name);
|
Database.IssuePlayerChocobo(this, appearanceId, nameResponse);
|
||||||
hasChocobo = true;
|
hasChocobo = true;
|
||||||
chocoboAppearance = appearanceId;
|
chocoboAppearance = appearanceId;
|
||||||
chocoboName = name;
|
chocoboName = nameResponse;
|
||||||
}
|
|
||||||
|
|
||||||
public void changeChocoboAppearance(int appearanceId)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,11 @@ namespace FFXIVClassic_Map_Server.lua
|
|||||||
player.playerSession.QueuePacket(SetWeatherPacket.BuildPacket(player.actorId, weatherID, 1), true, false);
|
player.playerSession.QueuePacket(SetWeatherPacket.BuildPacket(player.actorId, weatherID, 1), true, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void IssueChocobo(int appearanceId, string name)
|
||||||
|
{
|
||||||
|
player.IssueChocobo((byte) appearanceId, name);
|
||||||
|
}
|
||||||
|
|
||||||
public void GetParameter(string paramName)
|
public void GetParameter(string paramName)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user