Initial commit

This commit is contained in:
2026-02-28 14:00:45 -06:00
commit 16d3170787
1134 changed files with 589134 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
-- Star Wars Empire at War: Secrets of a Fallen Empire
-- Lua Script: //Scripts/GameObject/ObjectScript_SentryTurret.lua
-- Author: Galyana
-- Updated: 6 February, 2026
-- Kills the orion dreadnaught's sentry turrets after X seconds
require("PGStateMachine")
function Definitions()
ServiceRate = 1
Define_State("State_Init", State_Init);
end
function State_Init(message)
if message == OnEnter then
Sleep(60)
Object.Take_Damage(10000) --Kill object after X sec
end
end