mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 19:57:46 +00:00

- fixed data race on logging in - todo: implement reloadzones, reloaditems, property, property2
24 lines
No EOL
627 B
Lua
24 lines
No EOL
627 B
Lua
properties = {
|
|
permissions = 0,
|
|
parameters = "ssss",
|
|
description = "<name> <target name>",
|
|
}
|
|
|
|
function onTrigger(player, argc, path, name, lastName)
|
|
local sender = "[sendpacket ]";
|
|
lastName = lastName or "";
|
|
path = "./packets/"..path;
|
|
|
|
if name then
|
|
if lastName then
|
|
player = GetWorldManager():GetPCInWorld(name.." "..lastName) or nil;
|
|
else
|
|
player = GetWorldManager():GetPCInWorld(name) or nil;
|
|
end;
|
|
end;
|
|
|
|
value = tonumber(value) or 0;
|
|
if player and argc > 0 then
|
|
player:SendPacket(path)
|
|
end;
|
|
end; |