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,29 @@
function GetSellButton()
{
return Pointer.encode(sellButton);
}
function GetRepairButton()
{
return Pointer.encode(repairButton);
}
function GetPauseButton()
{
return Pointer.encode(pauseButton);
}
function onUnload()
{
delete GetSellButton;
delete GetRepairButton;
delete GetPauseButton;
delete onUnload;
}
if(!initialized)
{
sellButton.helpSite = helpSite;
repairButton.helpSite = helpSite;
pauseButton.helpSite = helpSite;
initialized = true;
// Forbidden
getURL("FSCommand:" add qualifyName(this,"OnInitialized"),"");
}
stop();
@@ -0,0 +1,4 @@
on(construct){
vertAlignment = "top";
horzAlignment = "right";
}
@@ -0,0 +1,5 @@
on(construct){
buttonClipName = "RA3CommandModeButtonClip";
imageClipName = "RepairButton";
backgroundClipName = "";
}
@@ -0,0 +1,5 @@
on(construct){
buttonClipName = "RA3CommandModeButtonClip";
imageClipName = "ObjectivesButton";
backgroundClipName = "";
}
@@ -0,0 +1,5 @@
on(construct){
buttonClipName = "RA3CommandModeButtonClip";
imageClipName = "SellButton";
backgroundClipName = "";
}