Zone optimizations

This commit is contained in:
Akkadius
2024-11-14 05:30:33 -06:00
parent 75698a809f
commit 010ba01ee7
8 changed files with 116 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
void command_test(Client *c, const Seperator *sep)
{
const int arguments = sep->argnum;
for (auto &e : entity_list.GetMobList()) {
auto mob = e.second;
if (Distance(c->GetPosition(), mob->GetPosition()) > 100) {
mob->SendAppearancePacket(AppearanceType::Invisibility, 3001);
} else {
mob->SendAppearancePacket(AppearanceType::Invisibility, 0);
}
}
}