RefineOutput { get; private set; }
54 | }
55 | }
56 |
--------------------------------------------------------------------------------
/ValueDump/ListViewColumnSorter.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections;
3 | using System.Windows.Forms;
4 |
5 |
6 | public class ListViewColumnSort : IComparer
7 | {
8 | public enum TipoCompare
9 | {
10 | Cadena,
11 | Numero,
12 | Fecha
13 | }
14 | public TipoCompare CompararPor;
15 | public int ColumnIndex = 0;
16 | public SortOrder Sorting = SortOrder.Ascending;
17 |
18 | public ListViewColumnSort()
19 | {
20 |
21 | }
22 | public ListViewColumnSort(int columna)
23 | {
24 | ColumnIndex = columna;
25 | }
26 | public int Compare(Object a, Object b)
27 | {
28 |
29 | int menor = -1, mayor = 1;
30 | String s1, s2;
31 | //
32 | if (Sorting == SortOrder.None)
33 | return 0;
34 |
35 | s1 = ((ListViewItem)a).SubItems[ColumnIndex].Text;
36 | s2 = ((ListViewItem)b).SubItems[ColumnIndex].Text;
37 |
38 | if (Sorting == SortOrder.Descending)
39 | {
40 | menor = 1;
41 | mayor = -1;
42 | }
43 | //
44 | switch (CompararPor)
45 | {
46 | case TipoCompare.Fecha:
47 | try
48 | {
49 | DateTime f1, f2;
50 | f1 = DateTime.Parse(s1);
51 | f2 = DateTime.Parse(s2);
52 | //
53 | if (f1 < f2)
54 | return menor;
55 | else if (f1 == f2)
56 | return 0;
57 | else
58 | return mayor;
59 | }
60 | catch
61 | {
62 | return System.String.Compare(s1, s2, true) * mayor;
63 | }
64 |
65 | case TipoCompare.Numero:
66 | try
67 | {
68 | decimal n1, n2;
69 | n1 = decimal.Parse(s1);
70 | n2 = decimal.Parse(s2);
71 | if (n1 < n2)
72 | return menor;
73 | else if (n1 == n2)
74 | return 0;
75 | else
76 | return mayor;
77 | }
78 | catch
79 | {
80 | return System.String.Compare(s1, s2, true) * mayor;
81 | }
82 |
83 | default:
84 |
85 | return System.String.Compare(s1, s2, true) * mayor;
86 |
87 | }
88 | }
89 | }
--------------------------------------------------------------------------------
/ValueDump/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Windows.Forms;
5 |
6 | namespace ValueDump
7 | {
8 | static class Program
9 | {
10 | ///
11 | /// The main entry point for the application.
12 | ///
13 | [STAThread]
14 | static void Main()
15 | {
16 | Application.EnableVisualStyles();
17 | Application.SetCompatibleTextRenderingDefault(false);
18 | Application.Run(new frmMain());
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/ValueDump/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("ValueDump")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("Microsoft")]
12 | [assembly: AssemblyProduct("ValueDump")]
13 | [assembly: AssemblyCopyright("Copyright © Microsoft 2010")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Setting ComVisible to false makes the types in this assembly not visible
18 | // to COM components. If you need to access a type in this assembly from
19 | // COM, set the ComVisible attribute to true on that type.
20 | [assembly: ComVisible(false)]
21 |
22 | // The following GUID is for the ID of the typelib if this project is exposed to COM
23 | [assembly: Guid("256edd5b-80a0-4b3c-98c4-bff39871a829")]
24 |
25 | // Version information for an assembly consists of the following four values:
26 | //
27 | // Major Version
28 | // Minor Version
29 | // Build Number
30 | // Revision
31 | //
32 | // You can specify all the values or you can default the Build and Revision Numbers
33 | // by using the '*' as shown below:
34 | // [assembly: AssemblyVersion("1.0.*")]
35 | [assembly: AssemblyVersion("1.0.0.0")]
36 | [assembly: AssemblyFileVersion("1.0.0.0")]
37 |
--------------------------------------------------------------------------------
/ValueDump/Properties/Resources.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.1
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace ValueDump.Properties {
12 | using System;
13 |
14 |
15 | ///
16 | /// A strongly-typed resource class, for looking up localized strings, etc.
17 | ///
18 | // This class was auto-generated by the StronglyTypedResourceBuilder
19 | // class via a tool like ResGen or Visual Studio.
20 | // To add or remove a member, edit your .ResX file then rerun ResGen
21 | // with the /str option, or rebuild your VS project.
22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
25 | internal class Resources {
26 |
27 | private static global::System.Resources.ResourceManager resourceMan;
28 |
29 | private static global::System.Globalization.CultureInfo resourceCulture;
30 |
31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
32 | internal Resources() {
33 | }
34 |
35 | ///
36 | /// Returns the cached ResourceManager instance used by this class.
37 | ///
38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
39 | internal static global::System.Resources.ResourceManager ResourceManager {
40 | get {
41 | if (object.ReferenceEquals(resourceMan, null)) {
42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ValueDump.Properties.Resources", typeof(Resources).Assembly);
43 | resourceMan = temp;
44 | }
45 | return resourceMan;
46 | }
47 | }
48 |
49 | ///
50 | /// Overrides the current thread's CurrentUICulture property for all
51 | /// resource lookups using this strongly typed resource class.
52 | ///
53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
54 | internal static global::System.Globalization.CultureInfo Culture {
55 | get {
56 | return resourceCulture;
57 | }
58 | set {
59 | resourceCulture = value;
60 | }
61 | }
62 | }
63 | }
64 |
--------------------------------------------------------------------------------
/ValueDump/Properties/Settings.Designer.cs:
--------------------------------------------------------------------------------
1 | //------------------------------------------------------------------------------
2 | //
3 | // This code was generated by a tool.
4 | // Runtime Version:4.0.30319.1
5 | //
6 | // Changes to this file may cause incorrect behavior and will be lost if
7 | // the code is regenerated.
8 | //
9 | //------------------------------------------------------------------------------
10 |
11 | namespace ValueDump.Properties {
12 |
13 |
14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")]
16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
17 |
18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
19 |
20 | public static Settings Default {
21 | get {
22 | return defaultInstance;
23 | }
24 | }
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/ValueDump/Properties/Settings.settings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ValueDump/ValueDump.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | x86
6 | 8.0.30703
7 | 2.0
8 | {4E4C340D-0D20-4C96-A44B-55B86C5CEA77}
9 | WinExe
10 | Properties
11 | ValueDump
12 | ValueDump
13 | v3.5
14 |
15 |
16 | 512
17 |
18 |
19 | x86
20 | true
21 | full
22 | false
23 | $(SolutionDir)bin\Debug\
24 | DEBUG;TRACE
25 | prompt
26 | 4
27 | false
28 |
29 |
30 | x86
31 | none
32 | true
33 | ..\Release\
34 | TRACE
35 | prompt
36 | 4
37 | false
38 |
39 |
40 |
41 | False
42 | ..\DirectEve\DirectEve.dll
43 |
44 |
45 | False
46 | ..\..\..\Program Files (x86)\InnerSpace\Lavish.InnerSpace.dll
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 | Form
61 |
62 |
63 | frmMain.cs
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 | frmMain.cs
73 |
74 |
75 | ResXFileCodeGenerator
76 | Resources.Designer.cs
77 | Designer
78 |
79 |
80 | True
81 | Resources.resx
82 | True
83 |
84 |
85 |
86 | SettingsSingleFileGenerator
87 | Settings.Designer.cs
88 |
89 |
90 | True
91 | Settings.settings
92 | True
93 |
94 |
95 |
96 |
103 |
--------------------------------------------------------------------------------
/ValueDump/ValueDumpState.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 |
6 | namespace ValueDump
7 | {
8 | public enum ValueDumpState
9 | {
10 | Idle,
11 | GetItems,
12 | UpdatePrices,
13 | NextItem,
14 | StartQuickSell,
15 | WaitForSellWindow,
16 | InspectOrder,
17 | WaitingToFinishQuickSell,
18 | CheckMineralPrices,
19 | GetMineralPrice,
20 | RefineItems,
21 | SaveMineralPrices
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/ValueDump/app.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/credits.txt:
--------------------------------------------------------------------------------
1 | Da_Teach - DirectEve.dll, original Questor source
2 | Ganondorf - fitting manager code
3 | SystemControl - Modified
--------------------------------------------------------------------------------
/license.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 | SHARED SOURCE THEHACKERWITHIN.COM LICENSE
11 |
12 | This License governs use of the accompanying Software, and your use of the
13 | Software constitutes acceptance of this license.
14 |
15 | You may use this Software for any non-commercial purpose, subject to the
16 | restrictions in this license. Some purposes which can be non-commercial are
17 | teaching, academic research, and personal experimentation. You may also
18 | distribute this Software with books or other teaching materials, or publish the
19 | Software on websites, that are intended to teach the use of the Software.
20 |
21 | You may not use or distribute this Software or any derivative works in any form
22 | for commercial purposes. Examples of commercial purposes would be running
23 | business operations, licensing, leasing, or selling the Software, or
24 | distributing the Software for use with commercial products.
25 |
26 | You may modify this Software and distribute the modified Software for
27 | non-commercial purposes, however, you may not grant rights to the Software or
28 | derivative works that are broader than those provided by this License. For
29 | example, you may not distribute modifications of the Software under terms that
30 | would permit commercial use, or under terms that purport to require the
31 | Software or derivative works to be sublicensed to others.
32 |
33 | You may use any information in intangible form that you remember after
34 | accessing the Software.
35 |
36 | In return, we simply require that you agree:
37 |
38 | -
39 | Not to remove any copyright or other notices from the Software.
40 |
41 | -
42 | That if you distribute the Software in source or object form, you will include
43 | a verbatim copy of this license.
44 |
45 | -
46 | That if you distribute derivative works of the Software in source code form you
47 | do so only under a license that includes all of the provisions of this License,
48 | and if you distribute derivative works of the Software solely in object form
49 | you do so only under a license that complies with this License.
50 |
51 | -
52 | That if you have modified the Software or created derivative works, and
53 | distribute such modifications or derivative works, you will cause the modified
54 | files to carry prominent notices so that recipients know that they are not
55 | receiving the original Software. Such notices must state: (i) that you have
56 | changed the Software; and (ii) the date of any changes.
57 |
58 | -
59 | THAT THE SOFTWARE COMES "AS IS", WITH NO WARRANTIES. THIS MEANS NO EXPRESS,
60 | IMPLIED OR STATUTORY WARRANTY, INCLUDING WITHOUT LIMITATION, WARRANTIES OF
61 | MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE OR ANY WARRANTY OF TITLE OR
62 | NON-INFRINGEMENT. ALSO, YOU MUST PASS THIS DISCLAIMER ON WHENEVER YOU
63 | DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS.
64 |
65 | -
66 | THAT CONTRIBUTORS WILL NOT BE LIABLE FOR ANY DAMAGES RELATED TO THE SOFTWARE OR
67 | THIS LICENSE, INCLUDING DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL OR INCIDENTAL
68 | DAMAGES, TO THE MAXIMUM EXTENT THE LAW PERMITS, NO MATTER WHAT LEGAL THEORY IT
69 | IS BASED ON. ALSO, YOU MUST PASS THIS LIMITATION OF LIABILITY ON WHENEVER YOU
70 | DISTRIBUTE THE SOFTWARE OR DERIVATIVE WORKS.
71 |
72 | -
73 | That if you sue anyone over patents that you think may apply to the Software or
74 | anyone's use of the Software, your license to the Software ends automatically.
75 |
76 | -
77 | That your rights under the License end automatically if you breach it in any
78 | way.
79 |
80 | -
81 | Contributors reserves all rights not expressly granted to you in this license.
82 |
83 |
84 |
85 |
86 |
--------------------------------------------------------------------------------
/output/Caldari L4/Alluring Emanations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | EM
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/output/Caldari L4/Attack of the Drones.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | EM
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/output/Caldari L4/Cargo Delivery.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Kinetic
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/output/Caldari L4/Covering Your Tracks.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Kinetic
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/output/Caldari L4/Crowd Control.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Kinetic
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/output/Caldari L4/Dread Pirate Scarlet.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Gate Key
4 |
5 |
6 | Kinetic
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | Kinetic
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 | Kinetic
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 | Kinetic
41 |
42 |
43 |
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/output/Caldari L4/Duo of Death.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | Kinetic
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/output/Caldari L4/Evolution.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/output/Caldari L4/Gone Berserk.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Kinetic
6 |
7 |
8 |
--------------------------------------------------------------------------------
/output/Caldari L4/Guristas Extravaganza - copia.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Guristas Diamond Tag
4 |
5 |
6 | Kinetic
7 |
8 |
9 | Kinetic
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | Kinetic
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/output/Caldari L4/Guristas Extravaganza.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Guristas Diamond Tag
4 |
5 |
6 | Kinetic
7 |
8 |
9 | Kinetic
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | Kinetic
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/output/Caldari L4/Infiltrated Outposts.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | EM
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 | EM
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/output/Caldari L4/Intercept The Saboteurs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Kinetic
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Kinetic
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/output/Caldari L4/Recon (2 of 3).xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Thermal
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/output/Caldari L4/Recon (3 of 3).xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/output/Caldari L4/Record Cleaning.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Thermal
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | Thermal
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 | Thermal
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/output/Caldari L4/Rogue Drone Harassment.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | EM
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | EM
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/output/Caldari L4/Shipyard Theft.xml:
--------------------------------------------------------------------------------
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 |
--------------------------------------------------------------------------------
/output/Caldari L4/Silence The Informant.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | Kinetic
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | Kinetic
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 | Kinetic
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/output/Caldari L4/Smuggler Interception.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | EM
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | EM
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/output/Caldari L4/Stop The Thief.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Thermal
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/output/Caldari L4/The Anomaly (1 of 3).xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 | Kinetic
18 |
19 |
20 |
21 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/output/Caldari L4/The Damsel In Distress - copia.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Thermal
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/output/Caldari L4/The Damsel In Distress.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Thermal
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/output/Caldari L4/The Right Hand of Zazzmatazz.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Thermal
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/output/Caldari L4/The Rogue Slave Trader (1 of 2).xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | EM
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/output/Caldari L4/The Wildcat Strike.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | EM
6 |
7 |
8 |
--------------------------------------------------------------------------------
/output/Caldari L4/Unauthorized Military Presence.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Kinetic
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 |
--------------------------------------------------------------------------------
/output/Caldari L4/Worlds Collide.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Kinetic
5 |
6 |
7 |
8 | Kinetic
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 | Kinetic
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 | Kinetic
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 | Kinetic
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 | Kinetic
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/output/Factions.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/output/Schedules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------