mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-23 05:07:47 +00:00

Added the combo and proc systems Added scripts for most weaponskill and spells as well as some abilities and status effects Added support for multihit attacks Added AbilityState for abilities Added hiteffects that change based on an attack's parameters Added positionals Changed how targeting works for battlecommands Fixed bug that occurred when moving or swapping hotbar commands Fixed bug that occurred when losing status effects
21 lines
No EOL
389 B
Lua
21 lines
No EOL
389 B
Lua
require("global");
|
|
|
|
properties = {
|
|
permissions = 0,
|
|
parameters = "sss",
|
|
description =
|
|
[[
|
|
Set movement speed for player. Enter no value to reset to default.
|
|
!speed <run> |
|
|
!speed <stop> <walk> <run> |
|
|
]]
|
|
|
|
}
|
|
|
|
function onTrigger(player, argc, stop, walk, run)
|
|
|
|
local message = tostring(player.zone.GetAllActors().Count);
|
|
|
|
player.SendMessage(0x20, "", message);
|
|
|
|
end |