mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 23:21:20 -04:00
[Server] Add SendActorAuthority() script function
This commit is contained in:
parent
c2d6265ffd
commit
ba8341bfb5
@ -277,6 +277,12 @@ void WorldFunctions::SendActorList() noexcept
|
||||
mwmp::Networking::get().getWorldController()->GetPacket(ID_ACTOR_LIST)->Send(scriptEvent.guid);
|
||||
}
|
||||
|
||||
void WorldFunctions::SendActorAuthority() noexcept
|
||||
{
|
||||
mwmp::Networking::get().getWorldController()->GetPacket(ID_ACTOR_AUTHORITY)->setEvent(&scriptEvent);
|
||||
mwmp::Networking::get().getWorldController()->GetPacket(ID_ACTOR_AUTHORITY)->Send(scriptEvent.guid);
|
||||
}
|
||||
|
||||
void WorldFunctions::SendObjectDelete() noexcept
|
||||
{
|
||||
mwmp::Networking::get().getWorldController()->GetPacket(ID_OBJECT_DELETE)->setEvent(&scriptEvent);
|
||||
|
@ -52,6 +52,7 @@
|
||||
{"AddContainerItem", WorldFunctions::AddContainerItem},\
|
||||
\
|
||||
{"SendActorList", WorldFunctions::SendActorList},\
|
||||
{"SendActorAuthority", WorldFunctions::SendActorAuthority},\
|
||||
{"SendObjectDelete", WorldFunctions::SendObjectDelete},\
|
||||
{"SendObjectPlace", WorldFunctions::SendObjectPlace},\
|
||||
{"SendObjectScale", WorldFunctions::SendObjectScale},\
|
||||
@ -118,6 +119,7 @@ public:
|
||||
static void AddContainerItem() noexcept;
|
||||
|
||||
static void SendActorList() noexcept;
|
||||
static void SendActorAuthority() noexcept;
|
||||
static void SendObjectDelete() noexcept;
|
||||
static void SendObjectPlace() noexcept;
|
||||
static void SendObjectScale() noexcept;
|
||||
|
Loading…
x
Reference in New Issue
Block a user