first commit
This commit is contained in:
@@ -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();
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
on(construct){
|
||||
vertAlignment = "top";
|
||||
horzAlignment = "right";
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
on(construct){
|
||||
buttonClipName = "RA3CommandModeButtonClip";
|
||||
imageClipName = "RepairButton";
|
||||
backgroundClipName = "";
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
on(construct){
|
||||
buttonClipName = "RA3CommandModeButtonClip";
|
||||
imageClipName = "ObjectivesButton";
|
||||
backgroundClipName = "";
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
on(construct){
|
||||
buttonClipName = "RA3CommandModeButtonClip";
|
||||
imageClipName = "SellButton";
|
||||
backgroundClipName = "";
|
||||
}
|
||||
Reference in New Issue
Block a user