first commit

This commit is contained in:
2026-06-14 01:40:04 +02:00
commit 5511354783
4787 changed files with 103543 additions and 0 deletions
@@ -0,0 +1,31 @@
function SetEnabled(enable)
{
if(enable != isEnabled)
{
if(enable)
{
gotoAndStop("_up");
play();
}
else
{
gotoAndStop("_disabled");
play();
}
isEnabled = enable;
}
}
function onUnload()
{
delete SetEnabled;
delete onUnload;
}
if(!initialized)
{
if(!isEnabled)
{
gotoAndStop("_disabled");
play();
}
initialized = true;
}
@@ -0,0 +1,2 @@
gotoAndStop("_up");
play();