C#:
OnStartSortedContainer(BasePlayer player, ItemContainer container) // Вызывается когда игрок начинает сортировку
OnSortedContainer(BasePlayer player, ItemContainer container) // Вызывается когда игрок отсортировал контейнер
OnStartMoveAllItems(BasePlayer player, ItemContainer fromContainer, ItemContainer toContainer) // Вызывается когда игрок начинает перенос всех предметов из контейнера в контейнер
OnMovedAllItems(BasePlayer player, ItemContainer fromContainer, ItemContainer toContainer) // Вызывается когда игрок перенес все предметы из контейнера в контейнер
OnStartMoveSimilarItems(BasePlayer player, ItemContainer fromContainer, ItemContainer toContainer) // Вызывается когда игрок начинает перенесить "похожие" предметы из контейнера в контейнер
OnMovedSimilarItems(BasePlayer player, ItemContainer fromContainer, ItemContainer toContainer) // Вызывается когда игрок перенес "похожие" предметы из контейнера в контейнер



C#:
OnStartSortedContainer(BasePlayer player, ItemContainer container) // Called when the player starts sorting the container
OnSortedContainer(BasePlayer player, ItemContainer container) // Called when the player has sorted the container
OnStartMoveAllItems(BasePlayer player, ItemContainer fromContainer, ItemContainer toContainer) // Called when the player starts moving all items from one container to another
OnMovedAllItems(BasePlayer player, ItemContainer fromContainer, ItemContainer toContainer) // Called when the player has moved all items from one container to another
OnStartMoveSimilarItems(BasePlayer player, ItemContainer fromContainer, ItemContainer toContainer) // Called when the player starts moving "similar" items from one container to another
OnMovedSimilarItems(BasePlayer player, ItemContainer fromContainer, ItemContainer toContainer) // Called when the player has moved "similar" items from one container to another
Назад
Сверху Снизу