mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 11:47:48 +00:00

Added formulas for base EXP gain and chain experience Added basic scripts for most player abilities and effects Added stat gains for some abilities Changed status flags Fixed bug with player death Fixed bug where auto attacks didnt work when not locked on Added traits
19 lines
No EOL
304 B
Lua
19 lines
No EOL
304 B
Lua
require("global");
|
|
|
|
properties = {
|
|
permissions = 0,
|
|
parameters = "",
|
|
description =
|
|
[[
|
|
Get the amount of actors in this zone.
|
|
!zonecount
|
|
]]
|
|
|
|
}
|
|
|
|
function onTrigger(player, argc)
|
|
|
|
local message = tostring(player.zone.GetAllActors().Count);
|
|
|
|
player.SendMessage(0x20, "", message);
|
|
end |