diff --git a/EOBot/Program.cs b/EOBot/Program.cs index 94dc03c7d..524818897 100644 --- a/EOBot/Program.cs +++ b/EOBot/Program.cs @@ -75,6 +75,10 @@ public void StartNPCWalkAnimation(int npcIndex) _currentMapStateRepository.NPCs.Remove(npc); _currentMapStateRepository.NPCs.Add(newNpc); } + + public void NPCDropItem(MapItem item) + { + } } [AutoMappedType] @@ -159,6 +163,7 @@ public void NotifySelfSpellCast(short playerId, short spellId, int spellHp, byte } public void NotifyStartSpellCast(short playerId, short spellId) { } + public void NotifyTargetNpcSpellCast(short playerId) { } public void NotifyTargetOtherSpellCast(short sourcePlayerID, short targetPlayerID, short spellId, int recoveredHP, byte targetPercentHealth) { } public void StartOtherCharacterAttackAnimation(int characterID, int noteIndex) { } public void StartOtherCharacterWalkAnimation(int characterID, byte destinationX, byte destinationY, EODirection direction) { }