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,18 @@
function SetProgress(val)
{
trace("SetProgress( " + String(val) + " )");
var _loc1_ = String(Math.floor(val * 24) + 1);
trace("frameNumStr = " + _loc1_);
gotoAndStop(Number(_loc1_));
}
function onUnload()
{
delete SetProgress;
delete onUnload;
}
if(!initialized)
{
initialized = true;
// Forbidden
getURL("FSCommand:" add qualifyName(this,"OnInitialized"),"");
}
@@ -0,0 +1,4 @@
if(!extern.InGame)
{
SetProgress(Math.random());
}