-
Notifications
You must be signed in to change notification settings - Fork 0
/
FigDumperUnlimitedCash1_2.java
executable file
·167 lines (146 loc) · 6.19 KB
/
FigDumperUnlimitedCash1_2.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import com.swath.*;
import com.swath.cmd.*;
/**
* Sector Fig Dumper
*
* Used to move fighters into a sector either grabbing them from a planet or buying them
* from Sector 1.
*
* @author Mind Dagger
*/
public class FigDumperUnlimitedCash1_2 extends UserDefinedScript {
private Parameter planet;
private Parameter whereToGetFigs;
private Parameter corpOrPersonal;
private Parameter typeOfFigSet;
private Parameter maxiFigs;
private Parameter maxiHolds;
private Parameter unlimited;
private Planet[] planets;
public String getName() {
return "Fig Dumper 1.2";
}
public boolean initScript() throws Exception {
if (!atPrompt(Swath.COMMAND_PROMPT)) return false;
planets = Swath.sector.planets();
whereToGetFigs = new Parameter("Source of Fighters");
whereToGetFigs.addChoice(0, "Sector Planet");
whereToGetFigs.addChoice(1, "Buy From Sector 1");
whereToGetFigs.setCurrentChoice(0);
planet = new Parameter("Planet to get Fighters or Fuel for T-Warp");
for(int i=0;i < planets.length; i++)
{
planet.addChoice(i, planets[i].toString());
}
planet.setCurrentChoice(0);
corpOrPersonal = new Parameter("Owner");
corpOrPersonal.addChoice(0, "Corporate");
corpOrPersonal.addChoice(1, "Personal");
corpOrPersonal.setCurrentChoice(0);
typeOfFigSet = new Parameter("Type of Fighter to Set");
typeOfFigSet.addChoice(0, "Defensive");
typeOfFigSet.addChoice(1, "Offensive");
typeOfFigSet.addChoice(2, "Toll");
typeOfFigSet.setCurrentChoice(0);
maxiFigs = new Parameter("Maximum Fighters On Ship");
maxiFigs.setType(Parameter.INTEGER);
maxiFigs.setInteger(Swath.ship.shipCategory().maxFighters());
maxiHolds = new Parameter("Holds On Ship");
maxiHolds.setType(Parameter.INTEGER);
maxiHolds.setInteger(Swath.ship.holds());
unlimited = new Parameter("Unlimited Cash For Figs?");
unlimited.setType(Parameter.BOOLEAN);
unlimited.setBoolean(false);
registerParam(whereToGetFigs);
registerParam(planet);
registerParam(corpOrPersonal);
registerParam(typeOfFigSet);
registerParam(maxiFigs);
registerParam(maxiHolds);
registerParam(unlimited);
return true;
}
public boolean runScript() throws Exception {
EnterComputer.exec();
ChangeSettings.exec(ChangeSettings.SPACE);
ChangePersonalSettings.exec(Swath.NO_CHANGE,Swath.OFF,Swath.NO_CHANGE,Swath.NO_CHANGE,Swath.NO_CHANGE,Swath.NO_CHANGE,Swath.YES);
LeaveComputer.exec();
Planet currentPlanet = (Planet)(planets[planet.getCurrentChoice()]);
int maxFigs = maxiFigs.getInteger();
//int maxHolds = maxiHolds.getInteger();
if(whereToGetFigs.getCurrentChoice() == 0)
{
//Get Fighters From Planet In The Same Sector
if(Swath.ship.fighters() > 0)
{
dropFigs();
}
while(currentPlanet.fighters() > 0 && Swath.sector.fighters() < (2000000000-maxiFigs.getInteger()))
{
Land.exec(currentPlanet);
if(currentPlanet.fighters() >= maxFigs)
{
TakeLeaveFighters.exec(maxFigs);
}
else{
TakeLeaveFighters.exec(currentPlanet.fighters());
}
LiftOff.exec();
dropFigs();
}
}
else if(whereToGetFigs.getCurrentChoice() == 1)
{
//Buy Fighters in Sector 1 using T-Warp
if(Swath.ship.fighters() > 0){
dropFigs();
}
while(Swath.you.credits() >= 10000000 && Swath.sector.fighters() < (2000000000-maxiFigs.getInteger())){
SendMacro.exec("l "+currentPlanet.id()+"^M t n t 1^M q 1^M y y p t b "+maxiFigs.getInteger()+"^M q "+currentPlanet.sector()+"^M y y /",1,false);
dropFigs();
if(unlimited.getBoolean() && Swath.you.credits() < 90000000){
SendMacro.exec("l "+currentPlanet.id()+"^M c t f 900000000^M q q ");
}
}
}
if(Swath.sector.fighters() >= (2000000000-maxiFigs.getInteger())){
UserAlert.exec("Sector filled with fighters, done.",UserAlert.TYPE_INFORMATION);
}
return true;
}
public void endScript(boolean finished){
}
public void dropFigs(){
try{
if(corpOrPersonal.getCurrentChoice() == 0){
if(typeOfFigSet.getCurrentChoice() == 0){
SendMacro.exec("f"+(Swath.ship.fighters()+Swath.sector.fighters())+"^M c d ");
}
else if(typeOfFigSet.getCurrentChoice() == 1){
SendMacro.exec("f"+(Swath.ship.fighters()+Swath.sector.fighters())+"^M c o ");
//DropTakeFighters.exec(Swath.ship.fighters()+Swath.sector.fighters(), Swath.CORPORATE, Swath.OFFENSIVE_FTRS);
}
else{
SendMacro.exec("f"+(Swath.ship.fighters()+Swath.sector.fighters())+"^M c t ");
// DropTakeFighters.exec(Swath.ship.fighters()+Swath.sector.fighters(), Swath.CORPORATE, Swath.TOLL_FTRS);
}
}
else{
if(typeOfFigSet.getCurrentChoice() == 0){
SendMacro.exec("f"+(Swath.ship.fighters()+Swath.sector.fighters())+"^M d ");
//DropTakeFighters.exec(Swath.ship.fighters()+Swath.sector.fighters(), Swath.PERSONAL, Swath.DEFENSIVE_FTRS);
}
else if(typeOfFigSet.getCurrentChoice() == 1){
SendMacro.exec("f"+(Swath.ship.fighters()+Swath.sector.fighters())+"^M o ");
//DropTakeFighters.exec(Swath.ship.fighters()+Swath.sector.fighters(), Swath.PERSONAL, Swath.OFFENSIVE_FTRS);
}
else{
SendMacro.exec("f"+(Swath.ship.fighters()+Swath.sector.fighters())+"^M t ");
//DropTakeFighters.exec(Swath.ship.fighters()+Swath.sector.fighters(), Swath.PERSONAL, Swath.TOLL_FTRS);
}
}
}
catch(Exception e){
}
}
}