Create Scar.lua

This commit is contained in:
huffin 2022-01-31 14:19:53 -06:00 committed by GitHub
parent 9031ca6c1e
commit ff8d274517
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
highpasshold/Scar.lua Normal file
View file

@ -0,0 +1,9 @@
function event_signal(e)
if(e.signal == 1) then
e.self:Say("The boss might need some help!");
local stanos = eq.get_entity_list():GetMobByNpcTypeID(5088); -- Stanos_Herkanor
if ( stanos.valid ) then
e.self:MoveTo(stanos:GetX(), stanos:GetY(), stanos:GetZ(), -1, false);
end
end
end