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

# Conflicts: # FFXIVClassic Map Server/FFXIVClassic Map Server.csproj # FFXIVClassic Map Server/Server.cs # data/scripts/player.lua # scripts/zones/193/npcs/pplStd_11@0C100.lua
23 lines
No EOL
595 B
Lua
23 lines
No EOL
595 B
Lua
--[[
|
|
|
|
BonusPointCommand Script
|
|
|
|
Functions:
|
|
|
|
operateUI(pointsAvailable, pointsLimit, str, vit, dex, int, min, pie)
|
|
|
|
--]]
|
|
|
|
function onEventStarted(player, actor, triggerName)
|
|
--local points = player:getAttributePoints();
|
|
--player:runEventFunction("delegateCommand", actor, "operateUI", points.available, points.limit, points.inSTR, points.inVIT, points.inDEX, points.inINT, points.inMIN, points.inPIT);
|
|
player:runEventFunction("delegateCommand", actor, "operateUI", 10, 10, 10, 10, 10, 10, 10, 10);
|
|
end
|
|
|
|
function onEventUpdate(player, actor, step, arg1)
|
|
|
|
--Submit
|
|
|
|
player:endCommand();
|
|
|
|
end |