mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 11:47:48 +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
18 lines
No EOL
346 B
Lua
18 lines
No EOL
346 B
Lua
require("global");
|
|
|
|
properties = {
|
|
permissions = 0,
|
|
parameters = "sss",
|
|
description =
|
|
[[
|
|
Adds experience <qty> to player or <targetname>.
|
|
!giveexp <qty> |
|
|
!giveexp <qty> <targetname> |
|
|
]],
|
|
}
|
|
|
|
function onTrigger(player, argc, procid)
|
|
local sender = "[giveexp] ";
|
|
local pid = tonumber(procid)
|
|
player:SetProc(pid, true);
|
|
end; |