1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-23 05:07:47 +00:00
project-meteor-server/data/scripts/directors/Guildleve/PrivateGLBattleDetectNormal.lua

33 lines
701 B
Lua
Raw Normal View History

2017-06-24 15:50:03 -04:00
require ("global")
require ("guildleve")
--DirectorId, GuildleveId, Aetheryte Location (6 or ~6), exMarkerX, exMarkerY, exMarkerZ
2017-06-25 20:43:23 -04:00
--22: Limsa Battle Leve
--14: Gridania Battle Leve
--26: Uldah Battle Leve
--16: Coerthas Faction Leve
--72: Harvest Leve
function init(thisDirector)
return "/Director/Guildleve/PrivateGLBattleDetectNormal", 0x4e25, thisDirector.guildleveId, 6, 0, 0, 0;
2017-06-24 15:50:03 -04:00
end
2017-06-25 20:43:23 -04:00
function main(thisDirector)
2017-06-24 15:50:03 -04:00
2017-06-25 20:43:23 -04:00
wait(3);
thisDirector:StartGuildleve();
2017-06-25 20:43:23 -04:00
thisDirector:SyncAllInfo();
thisDirector:UpdateMarkers(0, 59.0, 44.0, -163.0);
2017-06-24 15:50:03 -04:00
2017-06-25 20:43:23 -04:00
wait(5);
thisDirector:UpdateAimNumNow(0, 1);
wait(3);
thisDirector:UpdateAimNumNow(0, 2);
wait(3);
thisDirector:UpdateAimNumNow(0, 3);
end