<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.starbasegame.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=XenoCow</id>
	<title>Starbase wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.starbasegame.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=XenoCow"/>
	<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Special:Contributions/XenoCow"/>
	<updated>2026-06-05T01:26:42Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=YOLOL&amp;diff=32623</id>
		<title>YOLOL</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=YOLOL&amp;diff=32623"/>
		<updated>2025-05-05T16:12:10Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: /* Strings */ clarified number of characters possible to be held&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Otherlang2&lt;br /&gt;
|en=YOLOL&lt;br /&gt;
|de=YOLOL:de&lt;br /&gt;
|fr=YOLOL:fr&lt;br /&gt;
|ru=YOLOL:ru&lt;br /&gt;
|ua=YOLOL:ua&lt;br /&gt;
|jp=YOLOL:jp&lt;br /&gt;
|zh-cn=YOLOL语言&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
&lt;br /&gt;
{{#evt:service=youtube|id=https://www.youtube.com/watch?v=7lXK6_bktUk|alignment=center}}&lt;br /&gt;
&lt;br /&gt;
YOLOL is a programming language used to control and manage electrical [[Devices and machines|devices]].&amp;lt;br&amp;gt;&lt;br /&gt;
The code is written on lines in [[YOLOL Chip|YOLOL chips]] which are then inserted into [[Chip socket|chip sockets]], that read and relay their messages.&amp;lt;br&amp;gt;&lt;br /&gt;
The programming language enables the programming and controlling of almost any device within the known universe.&lt;br /&gt;
&lt;br /&gt;
== Basic information ==&lt;br /&gt;
&lt;br /&gt;
=== How it works ===&lt;br /&gt;
The code is written to and executed from programmable chips, and can be used to both monitor and control electrical [[Devices and machines|devices]] connected to a [[Data networks|data network]].&amp;lt;br&amp;gt;&lt;br /&gt;
Lines of code are executed in sequence from top to bottom, repeating the cycle of the chip after the last line has been executed, unless the script includes programmed instructions for specific line changes or stopping the execution completely.&lt;br /&gt;
&lt;br /&gt;
To put it simply:&lt;br /&gt;
&lt;br /&gt;
# Code execution starts from line 1&lt;br /&gt;
# After reading line 1, it proceeds to the next line based on the chip's time interval&lt;br /&gt;
# The process is then repeated for the lines 2, 3, 4... etc.&lt;br /&gt;
# The chip will begin executing line 1 again after the last line has been executed (unless the last line contains a goto statement or execution has been paused)&lt;br /&gt;
&lt;br /&gt;
So blank lines still use 0.2 seconds and can be used as a brief execution delay. (lines with only a comment are effectively the same as a blank line.)&lt;br /&gt;
&lt;br /&gt;
=== Limitations ===&lt;br /&gt;
&lt;br /&gt;
* Lines take 0.2 seconds to execute.&lt;br /&gt;
* A line can contain a maximum of 70 characters (comments and spaces included).*&lt;br /&gt;
* Some functions only work on specific YOLOL chips.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;*Note that because of this some examples shown below might not work in-game.&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Command references ==&lt;br /&gt;
&lt;br /&gt;
=== Case insensitive ===&lt;br /&gt;
&lt;br /&gt;
The programming language is fully case '''insensitive'''.&amp;lt;br&amp;gt;&lt;br /&gt;
This means that the following two example scripts function identically to each other:&lt;br /&gt;
&lt;br /&gt;
 if '''ButtonState''' == 1 then '''DoorState''' = 1 end&lt;br /&gt;
&lt;br /&gt;
 IF '''buttonstate''' == 1 THEN '''doorstate''' = 1 END&lt;br /&gt;
* Both scripts set the '''doorstate''' into 1, if '''buttonstate''' value is 1.&lt;br /&gt;
* The characters in the programming language can be written in either lowercase or uppercase letters.&lt;br /&gt;
** They are still parsed as case insensitive.&lt;br /&gt;
** This way it's possible to have the code look a bit more organized.&lt;br /&gt;
&lt;br /&gt;
=== Variables ===&lt;br /&gt;
&lt;br /&gt;
* The variables in the programming language are weakly typed (don't enforce type validity), and support two data types: '''Fixed-point decimals''' (up to 0.001 precision) and '''Strings''' (up to 1024 characters long within a chip or 127 while in a device field).&lt;br /&gt;
** To put it simply, the variables can either be introduced as strings or numbers, ignoring the earlier variable type if the previous type is not identical, without causing an error.&lt;br /&gt;
* Each variable is always of a single type, though it will be implicitly converted when required.&lt;br /&gt;
* The default value of an uninitialized variable is 0, and null values are not supported.&lt;br /&gt;
* True/False are numerical values of non-0 and 0.&lt;br /&gt;
** True != 0&lt;br /&gt;
** False == 0&lt;br /&gt;
&lt;br /&gt;
Assigning a value to a variable always converts the variable to the newly assigned value's type.&lt;br /&gt;
&lt;br /&gt;
'''Example:'''&lt;br /&gt;
&lt;br /&gt;
 ultimateAutopilot= 128.643&lt;br /&gt;
* This results in the variable '''ultimateAutopilot''' containing a numeric value of 128.643&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ultimateAutopilot= &amp;quot;Error prone&amp;quot;&lt;br /&gt;
* This results in the variable '''ultimateAutopilot''' to be a string variable &amp;quot;''Error prone''&amp;quot;, and numeric value of 128.643 is removed.&lt;br /&gt;
&lt;br /&gt;
==== Decimals ====&lt;br /&gt;
&lt;br /&gt;
Numeric values in the programming language are 64-bit fixed-point decimals.&amp;lt;br&amp;gt;&lt;br /&gt;
The variables hold decimal numbers up to three decimal accuracy.&amp;lt;br&amp;gt;&lt;br /&gt;
As a result, the maximum value range (even during operations) is [-9223372036854775.808, 9223372036854775.807]&lt;br /&gt;
&lt;br /&gt;
 pieVariable= 3.142&lt;br /&gt;
* The above script assigns a numeric value of 3.142 to the variable '''pieVariable'''.&lt;br /&gt;
** Supplying more precise values than the variables can store works, but doesn't affect the end result.&lt;br /&gt;
&lt;br /&gt;
 notPieVariable= 0.5772156649&lt;br /&gt;
* The above script attempts to assign a numeric value of 0.5772156649 to the variable '''notPieVariable'''.&lt;br /&gt;
* The end result however is notPieVariable == 0.577&lt;br /&gt;
** Here, the more precise values are cut, leaving only three decimals behind.&lt;br /&gt;
&lt;br /&gt;
==== Strings ====&lt;br /&gt;
&lt;br /&gt;
To specify a string literal in the programming language, the desired string value must be surrounded with double quotation marks.&lt;br /&gt;
Strings can hold up to 1024 characters within a YOLOL chip or 127 characters in a device field.&lt;br /&gt;
&lt;br /&gt;
 badRobots= &amp;quot;saltberia&amp;quot; &lt;br /&gt;
* This script assigns the string value of &amp;quot;''saltberia''&amp;quot; to the variable '''badRobots'''.&lt;br /&gt;
&lt;br /&gt;
==== Device fields / External variables ====&lt;br /&gt;
&lt;br /&gt;
External variables and device fields can be used in the programming language with the following syntax:&amp;lt;br&amp;gt;&lt;br /&gt;
* ''':variableName'''&lt;br /&gt;
**'''variableName''' being the configured device field id.&lt;br /&gt;
A colon prefix  ''':'''  is used to tell the script that an external variable is being accessed, instead of using one that may or may not be declared or used in the script.&amp;lt;br&amp;gt;&lt;br /&gt;
A programmable [[YOLOL Chip|chip]] that is connected to a [[Devices and machines|device]] has access to all the devices in the same [[Data networks|network]].&amp;lt;br&amp;gt;&lt;br /&gt;
It can then modify and listen to any device fields it has access to.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 if ''':ButtonState''' == 1 then ''':DoorState''' = 1 end&lt;br /&gt;
* The script above will send the value of 1 to any devices listening to the device field '''DoorState''' if the value of '''ButtonState''' is 1 in the data network.&lt;br /&gt;
&lt;br /&gt;
==== Naming Limitations ====&lt;br /&gt;
Currently variables containing keywords such as '''if''' or '''end''' can be parsed incorrectly, and must be avoided.&lt;br /&gt;
&lt;br /&gt;
==== Memory Chips and Relays ====&lt;br /&gt;
&lt;br /&gt;
[[YOLOL memory chip|Memory Chips]] provide 10 device fields that aren't tied to the function of devices and can be used to share variables and their values between multiple [[YOLOL_Chip|YOLOL Chips]]. &amp;lt;/br&amp;gt;&lt;br /&gt;
In a [[Memory_relay|Memory Relay]] they can also be used to copy data from one device field to another, which allows&lt;br /&gt;
* separation of networks e.g. for keeping the data networks less noisy and smaller&lt;br /&gt;
* a combination of shortened variable names in yolol and long variable names in displays e.g. for cockpit interfaces&lt;br /&gt;
&lt;br /&gt;
== Operators and commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the available operators may be limited by the type of the programmable [[YOLOL Chip|chip]].&amp;lt;br&amp;gt;&lt;br /&gt;
Basic chips have a limited selection of functions while more advanced ones can perform more complex operations natively.&lt;br /&gt;
&lt;br /&gt;
=== Basic arithmetic and assignment operators ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Operation || Numeric operation || String operation || Chip availability&lt;br /&gt;
|-&lt;br /&gt;
| A + B || Addition || String A is appended by String B. || All&lt;br /&gt;
|-&lt;br /&gt;
| A - B || Subtraction || The last appearance of String B in String A is removed from String A. || All&lt;br /&gt;
|-&lt;br /&gt;
| A * B || Multiplication || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A / B || Division || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A ++ || PostIncrement (A=A+1) || Appends a space to String A. Evaluates to the original value. || All&lt;br /&gt;
|-&lt;br /&gt;
| A -- || PostDecrement (A=A-1) || Removes the last character of the string. Results in runtime error when trying to remove &amp;quot;&amp;quot;. Evaluates to the original value. || All&lt;br /&gt;
|-&lt;br /&gt;
| ++ A  || PreIncrement (A=A+1) || Appends a space to String A. Evaluates to the modified value. || All&lt;br /&gt;
|-&lt;br /&gt;
| -- A || PreDecrement (A=A-1) || Removes the last character of the string. Results in runtime error when trying to remove &amp;quot;&amp;quot;. Evaluates to the modified value. || All&lt;br /&gt;
|-&lt;br /&gt;
| A = B || Assignment (Variable A is set to the value of variable B) || Assignment || All&lt;br /&gt;
|-&lt;br /&gt;
| A += B || Addition-assignment (A=A+B) || A is assigned the value of string-operation A+B || All&lt;br /&gt;
|-&lt;br /&gt;
| A -= B || Subtraction-assignment (A=A-B) || A is assigned the value of string-operation A-B || All&lt;br /&gt;
|-&lt;br /&gt;
| A *= B || Multiplication-assignment (A=A*B) || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A /= B || Division-assignment (A=A/B) || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A ^= B || Exponentiation-assignment (A=A^B) || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A %= B || Modulo-assignment (A=A%B) || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A ^ B || Exponentiation || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A % B || Modulo || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| ABS A || Modulus (absol value) (A=A if A&amp;gt;=0, else A=-A) || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A! || Factorial || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| SQRT A || Square root of A || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| SIN A || Sine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| COS A || Cosine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| TAN A || Tangent of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| ASIN A || Inverse sine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| ACOS A || Inverse cosine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| ATAN A || Inverse tangent of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Logical operators ===&lt;br /&gt;
&lt;br /&gt;
Logical operators are checks that identify if the statement is true or false.&amp;lt;br&amp;gt;&lt;br /&gt;
All logical operations return either '''&amp;quot;0 for False&amp;quot;''' or '''&amp;quot;1 for True&amp;quot;'''. &lt;br /&gt;
The '''NOT''', '''AND''', and '''OR''' keywords consider 0 to be falsy and anything not 0 to be truthy.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Operation || Numeric operation || String operation || Chip availability&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;lt; B || Less than || returns 1 if String A is first in alphabetical order, returns 0 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;gt; B || Greater than || returns 0 if String A is first in alphabetical order, returns 1 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;lt;= B ||Less than or equal to || returns 1 if String A is first in alphabetical order or identical to String B, returns 0 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;gt;= B || Greater than or equal to || returns 0 if String A is first in alphabetical order or identical to String B, returns 1 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A != B || Not equal to || returns 1 if String A is not equal to String B, 0 if it is. || All&lt;br /&gt;
|-&lt;br /&gt;
| A == B || Equal to || returns 1 if String A is equal to String B, 0 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| NOT A || Not || Returns 1 if A is 0, otherwise returns 0. || All&lt;br /&gt;
|-&lt;br /&gt;
| A AND B || And || Returns 1 if neither A nor B are 0, otherwise returns 0. || All&lt;br /&gt;
|-&lt;br /&gt;
| A OR B || Or || Returns 1 if either A or B is not 0, otherwise returns 0. || All&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Mixing variable types in operations ===&lt;br /&gt;
&lt;br /&gt;
Mixing variable types in an operation handles the operation using all parameters as ''strings''.&lt;br /&gt;
&lt;br /&gt;
 previouslyNumber= &amp;quot;10&amp;quot; + 15&lt;br /&gt;
* The above script results in '''previouslyNumber''' containing the string value &amp;quot;1015&amp;quot;.&lt;br /&gt;
** Note that the involved parameters themselves don't change types, their values are just cast as strings for the purpose of the operation:&lt;br /&gt;
 &lt;br /&gt;
 purelyNumber = 15&lt;br /&gt;
 purelyString = &amp;quot;10&amp;quot; + purelyNumber&lt;br /&gt;
* When this script has executed, '''purelyString''' contains the string value of &amp;quot;1015&amp;quot;, while '''purelyNumber''' still contains the numeric value of 15.&lt;br /&gt;
&lt;br /&gt;
=== Goto ===&lt;br /&gt;
&lt;br /&gt;
Goto syntax is used when the normal script reading order from 1-&amp;gt;20 is not desired, or needs to be altered.&lt;br /&gt;
&lt;br /&gt;
Goto is used with the following syntax:&lt;br /&gt;
*'''goto lineNumber'''&lt;br /&gt;
** lineNumber is the line which this command will take the script execution.&amp;lt;br&amp;gt;&lt;br /&gt;
** Any remaining script that is on the same line after the goto-command will not be executed.&lt;br /&gt;
*** using if statements before goto ignores goto syntax, assuming the if-statement is false&lt;br /&gt;
** Multiple goto commands can be added on the same line using conditionals, as '''False''' goto commands are skipped.&lt;br /&gt;
** Numeric values outside the [1,20] range are clamped to this range.&lt;br /&gt;
** Non-integer values are floored.&lt;br /&gt;
** String values will result in a Runtime Error.&lt;br /&gt;
&lt;br /&gt;
 if variable == 5 then '''goto 4''' end '''goto 6'''&lt;br /&gt;
&lt;br /&gt;
The script above will go to line number 4, if '''variable''' has a value of 5.&amp;lt;br&amp;gt;&lt;br /&gt;
Otherwise it will go to line number 6. Numerical operations can also be done &amp;quot;inside&amp;quot; the goto, e.g. &lt;br /&gt;
&lt;br /&gt;
  goto 4+1&lt;br /&gt;
&lt;br /&gt;
=== If-else conditional ===&lt;br /&gt;
&lt;br /&gt;
If-else statements are used to branch out the script into different paths.&amp;lt;br&amp;gt;&lt;br /&gt;
They use the following syntax:&lt;br /&gt;
* '''if ''condition'' then ''statement'' else ''statement'' end'''&lt;br /&gt;
** Condition is a statement that results in a numeric value (where 0 is parsed as False, anything else as True), and statements are pieces of script that are run.&lt;br /&gt;
** All If-else conditional stations must have '''end''' syntax written after statement is complete.&lt;br /&gt;
** The statement has to be on one line. The if, then, else and end cannot be on different lines.&lt;br /&gt;
&lt;br /&gt;
If can be used to branch script execution into two possible outcomes temporarily based on variable value(s).&amp;lt;br&amp;gt;&lt;br /&gt;
'''Example:'''&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable != 2 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 3 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; endResult = 4 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* This script sets the value of '''endResult''' to 3 if '''variable''' does not have the value of 2.&lt;br /&gt;
* If '''variable''''s value is 2, '''endResult''' is set to the value of 4.&lt;br /&gt;
&lt;br /&gt;
Note that the else statement -part can be left out if not needed. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Example:'''&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable != 2 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 3 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt;&lt;br /&gt;
*This script only sets the value of 3 to '''endResult''' if '''variable''' does not have a value of 2, and doesn't do anything else.&lt;br /&gt;
&lt;br /&gt;
==== Nesting if statements ====&lt;br /&gt;
&lt;br /&gt;
It is possible to place if-conditionals inside the true/false statement blocks to achieve further branching of execution.&amp;lt;br&amp;gt;&lt;br /&gt;
Example:&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 0 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 1 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 1 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 2 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &lt;br /&gt;
* This script sets '''endResult''' to 1 if '''variable''' equals 0.&lt;br /&gt;
* If '''variable''' doesn't equal 0, but it equals 1, '''endResult''' is set to 2.&lt;br /&gt;
&lt;br /&gt;
Example:&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 0 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; endResult == 1 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 2 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; endResult = 1 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt;&lt;br /&gt;
* This script sets '''endResult''' to 2 if '''variable''' has a value of 0 and '''endResult''' equals to 1.&lt;br /&gt;
* If '''variable''' has a value of something other than 0, this script sets '''endResult''' to 1&lt;br /&gt;
* Otherwise '''endResult''' does not change, e.g. when '''variable''' is 0, but '''endResult''' does not equal 1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Combining conditions ====&lt;br /&gt;
&lt;br /&gt;
It is possible to calculate conditions inside to further manipulate the branching of execution.&amp;lt;br&amp;gt;&lt;br /&gt;
Example:&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 0 &amp;lt;font color=&amp;quot;grey&amp;quot;&amp;gt;AND&amp;lt;/font&amp;gt; endResult != 2 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 2 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; endResult = 1 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &lt;br /&gt;
* This script sets '''endResult''' to 2 if '''variable''' equals 0, but only if '''endResult''' is not already 2.&lt;br /&gt;
* In any other case it sets '''endResult''' to 1.&lt;br /&gt;
&lt;br /&gt;
=== Comments ===&lt;br /&gt;
&lt;br /&gt;
Comments are useful when writing code that is used by a lot of programmers.&amp;lt;br&amp;gt;&lt;br /&gt;
Note that comments also use up space from the pre-determined 70 character line limit and are not excluded from it.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Commenting is used with the following syntax:&lt;br /&gt;
*// '''text'''&lt;br /&gt;
** Text can be any single-line set of characters.&lt;br /&gt;
&lt;br /&gt;
 '''//''' This is a comment. It will explain how other lines of script work.&lt;br /&gt;
* An example of a possible comment syntax&lt;br /&gt;
&lt;br /&gt;
== Order of Operations ==&lt;br /&gt;
&lt;br /&gt;
Operations are conducted in the following order, when operators have the same precedence, left to right.&amp;lt;br&amp;gt;&lt;br /&gt;
To change order of operations, use ( ): e.g. 3*2+1=6+1=7 is the same as (3*2)+1=6+1=7 but is different from 3*(2+1)=3*3=9.&amp;lt;/br&amp;gt;&lt;br /&gt;
Where a line has multiple statements, they are executed left to right.&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Operators &lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| ++ --&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;!&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| operators &lt;br /&gt;
| sqrt, abs, sin etc.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;-&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| negate&lt;br /&gt;
|-&lt;br /&gt;
| ^&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| */%&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;&amp;lt; &amp;gt; == != &amp;lt;= &amp;gt;=&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| Surprise!&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;+-&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| not (logical negation)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| or&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| and&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Errors ==&lt;br /&gt;
&lt;br /&gt;
There are two types of errors that can happen with the programming language.&lt;br /&gt;
# Syntax errors&lt;br /&gt;
# Runtime errors&lt;br /&gt;
&lt;br /&gt;
* Syntax errors come from invalid and unparseable script and will result in the whole line not being executed.&lt;br /&gt;
* Runtime errors are only catchable while the script is being executed. They result in the execution of the line being interrupted, but any effects until the error will remain.&lt;br /&gt;
&lt;br /&gt;
== Known Bugs/Unintended Behavior ==&lt;br /&gt;
This is a list of known problems regarding yolol:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* variablenames including keywords like &amp;quot;if&amp;quot; in them will parse with the keyword in mind, resulting in a syntax error. Example: :life would be parsed as :l if e&lt;br /&gt;
&lt;br /&gt;
==YOLOL Tips &amp;amp; Tricks==&lt;br /&gt;
* [[Common YOLOL|Common YOLOL scripts]]&lt;br /&gt;
* [[YOLOL Tricks]]&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
* [[Data networks]]&lt;br /&gt;
* [[Devices and machines]]&lt;br /&gt;
* [[Device fields]]&lt;br /&gt;
* [[Universal tool|Universal tool]]&lt;br /&gt;
* [[YOLOL Chip]]&lt;br /&gt;
* [[Memory chip]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Networks|YOLOL]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=YOLOL&amp;diff=32622</id>
		<title>YOLOL</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=YOLOL&amp;diff=32622"/>
		<updated>2025-05-05T16:11:03Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: /* Variables */  added note about string character limit being shorter while in device field&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Otherlang2&lt;br /&gt;
|en=YOLOL&lt;br /&gt;
|de=YOLOL:de&lt;br /&gt;
|fr=YOLOL:fr&lt;br /&gt;
|ru=YOLOL:ru&lt;br /&gt;
|ua=YOLOL:ua&lt;br /&gt;
|jp=YOLOL:jp&lt;br /&gt;
|zh-cn=YOLOL语言&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
&lt;br /&gt;
{{#evt:service=youtube|id=https://www.youtube.com/watch?v=7lXK6_bktUk|alignment=center}}&lt;br /&gt;
&lt;br /&gt;
YOLOL is a programming language used to control and manage electrical [[Devices and machines|devices]].&amp;lt;br&amp;gt;&lt;br /&gt;
The code is written on lines in [[YOLOL Chip|YOLOL chips]] which are then inserted into [[Chip socket|chip sockets]], that read and relay their messages.&amp;lt;br&amp;gt;&lt;br /&gt;
The programming language enables the programming and controlling of almost any device within the known universe.&lt;br /&gt;
&lt;br /&gt;
== Basic information ==&lt;br /&gt;
&lt;br /&gt;
=== How it works ===&lt;br /&gt;
The code is written to and executed from programmable chips, and can be used to both monitor and control electrical [[Devices and machines|devices]] connected to a [[Data networks|data network]].&amp;lt;br&amp;gt;&lt;br /&gt;
Lines of code are executed in sequence from top to bottom, repeating the cycle of the chip after the last line has been executed, unless the script includes programmed instructions for specific line changes or stopping the execution completely.&lt;br /&gt;
&lt;br /&gt;
To put it simply:&lt;br /&gt;
&lt;br /&gt;
# Code execution starts from line 1&lt;br /&gt;
# After reading line 1, it proceeds to the next line based on the chip's time interval&lt;br /&gt;
# The process is then repeated for the lines 2, 3, 4... etc.&lt;br /&gt;
# The chip will begin executing line 1 again after the last line has been executed (unless the last line contains a goto statement or execution has been paused)&lt;br /&gt;
&lt;br /&gt;
So blank lines still use 0.2 seconds and can be used as a brief execution delay. (lines with only a comment are effectively the same as a blank line.)&lt;br /&gt;
&lt;br /&gt;
=== Limitations ===&lt;br /&gt;
&lt;br /&gt;
* Lines take 0.2 seconds to execute.&lt;br /&gt;
* A line can contain a maximum of 70 characters (comments and spaces included).*&lt;br /&gt;
* Some functions only work on specific YOLOL chips.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;*Note that because of this some examples shown below might not work in-game.&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Command references ==&lt;br /&gt;
&lt;br /&gt;
=== Case insensitive ===&lt;br /&gt;
&lt;br /&gt;
The programming language is fully case '''insensitive'''.&amp;lt;br&amp;gt;&lt;br /&gt;
This means that the following two example scripts function identically to each other:&lt;br /&gt;
&lt;br /&gt;
 if '''ButtonState''' == 1 then '''DoorState''' = 1 end&lt;br /&gt;
&lt;br /&gt;
 IF '''buttonstate''' == 1 THEN '''doorstate''' = 1 END&lt;br /&gt;
* Both scripts set the '''doorstate''' into 1, if '''buttonstate''' value is 1.&lt;br /&gt;
* The characters in the programming language can be written in either lowercase or uppercase letters.&lt;br /&gt;
** They are still parsed as case insensitive.&lt;br /&gt;
** This way it's possible to have the code look a bit more organized.&lt;br /&gt;
&lt;br /&gt;
=== Variables ===&lt;br /&gt;
&lt;br /&gt;
* The variables in the programming language are weakly typed (don't enforce type validity), and support two data types: '''Fixed-point decimals''' (up to 0.001 precision) and '''Strings''' (up to 1024 characters long within a chip or 127 while in a device field).&lt;br /&gt;
** To put it simply, the variables can either be introduced as strings or numbers, ignoring the earlier variable type if the previous type is not identical, without causing an error.&lt;br /&gt;
* Each variable is always of a single type, though it will be implicitly converted when required.&lt;br /&gt;
* The default value of an uninitialized variable is 0, and null values are not supported.&lt;br /&gt;
* True/False are numerical values of non-0 and 0.&lt;br /&gt;
** True != 0&lt;br /&gt;
** False == 0&lt;br /&gt;
&lt;br /&gt;
Assigning a value to a variable always converts the variable to the newly assigned value's type.&lt;br /&gt;
&lt;br /&gt;
'''Example:'''&lt;br /&gt;
&lt;br /&gt;
 ultimateAutopilot= 128.643&lt;br /&gt;
* This results in the variable '''ultimateAutopilot''' containing a numeric value of 128.643&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ultimateAutopilot= &amp;quot;Error prone&amp;quot;&lt;br /&gt;
* This results in the variable '''ultimateAutopilot''' to be a string variable &amp;quot;''Error prone''&amp;quot;, and numeric value of 128.643 is removed.&lt;br /&gt;
&lt;br /&gt;
==== Decimals ====&lt;br /&gt;
&lt;br /&gt;
Numeric values in the programming language are 64-bit fixed-point decimals.&amp;lt;br&amp;gt;&lt;br /&gt;
The variables hold decimal numbers up to three decimal accuracy.&amp;lt;br&amp;gt;&lt;br /&gt;
As a result, the maximum value range (even during operations) is [-9223372036854775.808, 9223372036854775.807]&lt;br /&gt;
&lt;br /&gt;
 pieVariable= 3.142&lt;br /&gt;
* The above script assigns a numeric value of 3.142 to the variable '''pieVariable'''.&lt;br /&gt;
** Supplying more precise values than the variables can store works, but doesn't affect the end result.&lt;br /&gt;
&lt;br /&gt;
 notPieVariable= 0.5772156649&lt;br /&gt;
* The above script attempts to assign a numeric value of 0.5772156649 to the variable '''notPieVariable'''.&lt;br /&gt;
* The end result however is notPieVariable == 0.577&lt;br /&gt;
** Here, the more precise values are cut, leaving only three decimals behind.&lt;br /&gt;
&lt;br /&gt;
==== Strings ====&lt;br /&gt;
&lt;br /&gt;
To specify a string literal in the programming language, the desired string value must be surrounded with double quotation marks.&lt;br /&gt;
Strings can hold up to 127 characters.&lt;br /&gt;
&lt;br /&gt;
 badRobots= &amp;quot;saltberia&amp;quot; &lt;br /&gt;
* This script assigns the string value of &amp;quot;''saltberia''&amp;quot; to the variable '''badRobots'''.&lt;br /&gt;
&lt;br /&gt;
==== Device fields / External variables ====&lt;br /&gt;
&lt;br /&gt;
External variables and device fields can be used in the programming language with the following syntax:&amp;lt;br&amp;gt;&lt;br /&gt;
* ''':variableName'''&lt;br /&gt;
**'''variableName''' being the configured device field id.&lt;br /&gt;
A colon prefix  ''':'''  is used to tell the script that an external variable is being accessed, instead of using one that may or may not be declared or used in the script.&amp;lt;br&amp;gt;&lt;br /&gt;
A programmable [[YOLOL Chip|chip]] that is connected to a [[Devices and machines|device]] has access to all the devices in the same [[Data networks|network]].&amp;lt;br&amp;gt;&lt;br /&gt;
It can then modify and listen to any device fields it has access to.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 if ''':ButtonState''' == 1 then ''':DoorState''' = 1 end&lt;br /&gt;
* The script above will send the value of 1 to any devices listening to the device field '''DoorState''' if the value of '''ButtonState''' is 1 in the data network.&lt;br /&gt;
&lt;br /&gt;
==== Naming Limitations ====&lt;br /&gt;
Currently variables containing keywords such as '''if''' or '''end''' can be parsed incorrectly, and must be avoided.&lt;br /&gt;
&lt;br /&gt;
==== Memory Chips and Relays ====&lt;br /&gt;
&lt;br /&gt;
[[YOLOL memory chip|Memory Chips]] provide 10 device fields that aren't tied to the function of devices and can be used to share variables and their values between multiple [[YOLOL_Chip|YOLOL Chips]]. &amp;lt;/br&amp;gt;&lt;br /&gt;
In a [[Memory_relay|Memory Relay]] they can also be used to copy data from one device field to another, which allows&lt;br /&gt;
* separation of networks e.g. for keeping the data networks less noisy and smaller&lt;br /&gt;
* a combination of shortened variable names in yolol and long variable names in displays e.g. for cockpit interfaces&lt;br /&gt;
&lt;br /&gt;
== Operators and commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the available operators may be limited by the type of the programmable [[YOLOL Chip|chip]].&amp;lt;br&amp;gt;&lt;br /&gt;
Basic chips have a limited selection of functions while more advanced ones can perform more complex operations natively.&lt;br /&gt;
&lt;br /&gt;
=== Basic arithmetic and assignment operators ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Operation || Numeric operation || String operation || Chip availability&lt;br /&gt;
|-&lt;br /&gt;
| A + B || Addition || String A is appended by String B. || All&lt;br /&gt;
|-&lt;br /&gt;
| A - B || Subtraction || The last appearance of String B in String A is removed from String A. || All&lt;br /&gt;
|-&lt;br /&gt;
| A * B || Multiplication || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A / B || Division || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A ++ || PostIncrement (A=A+1) || Appends a space to String A. Evaluates to the original value. || All&lt;br /&gt;
|-&lt;br /&gt;
| A -- || PostDecrement (A=A-1) || Removes the last character of the string. Results in runtime error when trying to remove &amp;quot;&amp;quot;. Evaluates to the original value. || All&lt;br /&gt;
|-&lt;br /&gt;
| ++ A  || PreIncrement (A=A+1) || Appends a space to String A. Evaluates to the modified value. || All&lt;br /&gt;
|-&lt;br /&gt;
| -- A || PreDecrement (A=A-1) || Removes the last character of the string. Results in runtime error when trying to remove &amp;quot;&amp;quot;. Evaluates to the modified value. || All&lt;br /&gt;
|-&lt;br /&gt;
| A = B || Assignment (Variable A is set to the value of variable B) || Assignment || All&lt;br /&gt;
|-&lt;br /&gt;
| A += B || Addition-assignment (A=A+B) || A is assigned the value of string-operation A+B || All&lt;br /&gt;
|-&lt;br /&gt;
| A -= B || Subtraction-assignment (A=A-B) || A is assigned the value of string-operation A-B || All&lt;br /&gt;
|-&lt;br /&gt;
| A *= B || Multiplication-assignment (A=A*B) || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A /= B || Division-assignment (A=A/B) || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A ^= B || Exponentiation-assignment (A=A^B) || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A %= B || Modulo-assignment (A=A%B) || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A ^ B || Exponentiation || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A % B || Modulo || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| ABS A || Modulus (absol value) (A=A if A&amp;gt;=0, else A=-A) || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A! || Factorial || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| SQRT A || Square root of A || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| SIN A || Sine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| COS A || Cosine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| TAN A || Tangent of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| ASIN A || Inverse sine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| ACOS A || Inverse cosine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| ATAN A || Inverse tangent of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Logical operators ===&lt;br /&gt;
&lt;br /&gt;
Logical operators are checks that identify if the statement is true or false.&amp;lt;br&amp;gt;&lt;br /&gt;
All logical operations return either '''&amp;quot;0 for False&amp;quot;''' or '''&amp;quot;1 for True&amp;quot;'''. &lt;br /&gt;
The '''NOT''', '''AND''', and '''OR''' keywords consider 0 to be falsy and anything not 0 to be truthy.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Operation || Numeric operation || String operation || Chip availability&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;lt; B || Less than || returns 1 if String A is first in alphabetical order, returns 0 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;gt; B || Greater than || returns 0 if String A is first in alphabetical order, returns 1 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;lt;= B ||Less than or equal to || returns 1 if String A is first in alphabetical order or identical to String B, returns 0 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;gt;= B || Greater than or equal to || returns 0 if String A is first in alphabetical order or identical to String B, returns 1 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A != B || Not equal to || returns 1 if String A is not equal to String B, 0 if it is. || All&lt;br /&gt;
|-&lt;br /&gt;
| A == B || Equal to || returns 1 if String A is equal to String B, 0 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| NOT A || Not || Returns 1 if A is 0, otherwise returns 0. || All&lt;br /&gt;
|-&lt;br /&gt;
| A AND B || And || Returns 1 if neither A nor B are 0, otherwise returns 0. || All&lt;br /&gt;
|-&lt;br /&gt;
| A OR B || Or || Returns 1 if either A or B is not 0, otherwise returns 0. || All&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Mixing variable types in operations ===&lt;br /&gt;
&lt;br /&gt;
Mixing variable types in an operation handles the operation using all parameters as ''strings''.&lt;br /&gt;
&lt;br /&gt;
 previouslyNumber= &amp;quot;10&amp;quot; + 15&lt;br /&gt;
* The above script results in '''previouslyNumber''' containing the string value &amp;quot;1015&amp;quot;.&lt;br /&gt;
** Note that the involved parameters themselves don't change types, their values are just cast as strings for the purpose of the operation:&lt;br /&gt;
 &lt;br /&gt;
 purelyNumber = 15&lt;br /&gt;
 purelyString = &amp;quot;10&amp;quot; + purelyNumber&lt;br /&gt;
* When this script has executed, '''purelyString''' contains the string value of &amp;quot;1015&amp;quot;, while '''purelyNumber''' still contains the numeric value of 15.&lt;br /&gt;
&lt;br /&gt;
=== Goto ===&lt;br /&gt;
&lt;br /&gt;
Goto syntax is used when the normal script reading order from 1-&amp;gt;20 is not desired, or needs to be altered.&lt;br /&gt;
&lt;br /&gt;
Goto is used with the following syntax:&lt;br /&gt;
*'''goto lineNumber'''&lt;br /&gt;
** lineNumber is the line which this command will take the script execution.&amp;lt;br&amp;gt;&lt;br /&gt;
** Any remaining script that is on the same line after the goto-command will not be executed.&lt;br /&gt;
*** using if statements before goto ignores goto syntax, assuming the if-statement is false&lt;br /&gt;
** Multiple goto commands can be added on the same line using conditionals, as '''False''' goto commands are skipped.&lt;br /&gt;
** Numeric values outside the [1,20] range are clamped to this range.&lt;br /&gt;
** Non-integer values are floored.&lt;br /&gt;
** String values will result in a Runtime Error.&lt;br /&gt;
&lt;br /&gt;
 if variable == 5 then '''goto 4''' end '''goto 6'''&lt;br /&gt;
&lt;br /&gt;
The script above will go to line number 4, if '''variable''' has a value of 5.&amp;lt;br&amp;gt;&lt;br /&gt;
Otherwise it will go to line number 6. Numerical operations can also be done &amp;quot;inside&amp;quot; the goto, e.g. &lt;br /&gt;
&lt;br /&gt;
  goto 4+1&lt;br /&gt;
&lt;br /&gt;
=== If-else conditional ===&lt;br /&gt;
&lt;br /&gt;
If-else statements are used to branch out the script into different paths.&amp;lt;br&amp;gt;&lt;br /&gt;
They use the following syntax:&lt;br /&gt;
* '''if ''condition'' then ''statement'' else ''statement'' end'''&lt;br /&gt;
** Condition is a statement that results in a numeric value (where 0 is parsed as False, anything else as True), and statements are pieces of script that are run.&lt;br /&gt;
** All If-else conditional stations must have '''end''' syntax written after statement is complete.&lt;br /&gt;
** The statement has to be on one line. The if, then, else and end cannot be on different lines.&lt;br /&gt;
&lt;br /&gt;
If can be used to branch script execution into two possible outcomes temporarily based on variable value(s).&amp;lt;br&amp;gt;&lt;br /&gt;
'''Example:'''&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable != 2 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 3 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; endResult = 4 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* This script sets the value of '''endResult''' to 3 if '''variable''' does not have the value of 2.&lt;br /&gt;
* If '''variable''''s value is 2, '''endResult''' is set to the value of 4.&lt;br /&gt;
&lt;br /&gt;
Note that the else statement -part can be left out if not needed. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Example:'''&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable != 2 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 3 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt;&lt;br /&gt;
*This script only sets the value of 3 to '''endResult''' if '''variable''' does not have a value of 2, and doesn't do anything else.&lt;br /&gt;
&lt;br /&gt;
==== Nesting if statements ====&lt;br /&gt;
&lt;br /&gt;
It is possible to place if-conditionals inside the true/false statement blocks to achieve further branching of execution.&amp;lt;br&amp;gt;&lt;br /&gt;
Example:&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 0 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 1 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 1 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 2 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &lt;br /&gt;
* This script sets '''endResult''' to 1 if '''variable''' equals 0.&lt;br /&gt;
* If '''variable''' doesn't equal 0, but it equals 1, '''endResult''' is set to 2.&lt;br /&gt;
&lt;br /&gt;
Example:&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 0 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; endResult == 1 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 2 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; endResult = 1 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt;&lt;br /&gt;
* This script sets '''endResult''' to 2 if '''variable''' has a value of 0 and '''endResult''' equals to 1.&lt;br /&gt;
* If '''variable''' has a value of something other than 0, this script sets '''endResult''' to 1&lt;br /&gt;
* Otherwise '''endResult''' does not change, e.g. when '''variable''' is 0, but '''endResult''' does not equal 1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Combining conditions ====&lt;br /&gt;
&lt;br /&gt;
It is possible to calculate conditions inside to further manipulate the branching of execution.&amp;lt;br&amp;gt;&lt;br /&gt;
Example:&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 0 &amp;lt;font color=&amp;quot;grey&amp;quot;&amp;gt;AND&amp;lt;/font&amp;gt; endResult != 2 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 2 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; endResult = 1 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &lt;br /&gt;
* This script sets '''endResult''' to 2 if '''variable''' equals 0, but only if '''endResult''' is not already 2.&lt;br /&gt;
* In any other case it sets '''endResult''' to 1.&lt;br /&gt;
&lt;br /&gt;
=== Comments ===&lt;br /&gt;
&lt;br /&gt;
Comments are useful when writing code that is used by a lot of programmers.&amp;lt;br&amp;gt;&lt;br /&gt;
Note that comments also use up space from the pre-determined 70 character line limit and are not excluded from it.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Commenting is used with the following syntax:&lt;br /&gt;
*// '''text'''&lt;br /&gt;
** Text can be any single-line set of characters.&lt;br /&gt;
&lt;br /&gt;
 '''//''' This is a comment. It will explain how other lines of script work.&lt;br /&gt;
* An example of a possible comment syntax&lt;br /&gt;
&lt;br /&gt;
== Order of Operations ==&lt;br /&gt;
&lt;br /&gt;
Operations are conducted in the following order, when operators have the same precedence, left to right.&amp;lt;br&amp;gt;&lt;br /&gt;
To change order of operations, use ( ): e.g. 3*2+1=6+1=7 is the same as (3*2)+1=6+1=7 but is different from 3*(2+1)=3*3=9.&amp;lt;/br&amp;gt;&lt;br /&gt;
Where a line has multiple statements, they are executed left to right.&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Operators &lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| ++ --&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;!&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| operators &lt;br /&gt;
| sqrt, abs, sin etc.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;-&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| negate&lt;br /&gt;
|-&lt;br /&gt;
| ^&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| */%&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;&amp;lt; &amp;gt; == != &amp;lt;= &amp;gt;=&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| Surprise!&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;+-&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| not (logical negation)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| or&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| and&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Errors ==&lt;br /&gt;
&lt;br /&gt;
There are two types of errors that can happen with the programming language.&lt;br /&gt;
# Syntax errors&lt;br /&gt;
# Runtime errors&lt;br /&gt;
&lt;br /&gt;
* Syntax errors come from invalid and unparseable script and will result in the whole line not being executed.&lt;br /&gt;
* Runtime errors are only catchable while the script is being executed. They result in the execution of the line being interrupted, but any effects until the error will remain.&lt;br /&gt;
&lt;br /&gt;
== Known Bugs/Unintended Behavior ==&lt;br /&gt;
This is a list of known problems regarding yolol:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* variablenames including keywords like &amp;quot;if&amp;quot; in them will parse with the keyword in mind, resulting in a syntax error. Example: :life would be parsed as :l if e&lt;br /&gt;
&lt;br /&gt;
==YOLOL Tips &amp;amp; Tricks==&lt;br /&gt;
* [[Common YOLOL|Common YOLOL scripts]]&lt;br /&gt;
* [[YOLOL Tricks]]&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
* [[Data networks]]&lt;br /&gt;
* [[Devices and machines]]&lt;br /&gt;
* [[Device fields]]&lt;br /&gt;
* [[Universal tool|Universal tool]]&lt;br /&gt;
* [[YOLOL Chip]]&lt;br /&gt;
* [[Memory chip]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Networks|YOLOL]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=YOLOL&amp;diff=32133</id>
		<title>YOLOL</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=YOLOL&amp;diff=32133"/>
		<updated>2024-06-22T18:50:38Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: /* Strings */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Otherlang2&lt;br /&gt;
|en=YOLOL&lt;br /&gt;
|de=YOLOL:de&lt;br /&gt;
|fr=YOLOL:fr&lt;br /&gt;
|ru=YOLOL:ru&lt;br /&gt;
|ua=YOLOL:ua&lt;br /&gt;
|jp=YOLOL:jp&lt;br /&gt;
|zh-cn=YOLOL语言&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
&lt;br /&gt;
{{#evt:service=youtube|id=https://www.youtube.com/watch?v=7lXK6_bktUk|alignment=center}}&lt;br /&gt;
&lt;br /&gt;
YOLOL is a programming language used to control and manage electrical [[Devices and machines|devices]].&amp;lt;br&amp;gt;&lt;br /&gt;
The code is written on lines in [[YOLOL Chip|YOLOL chips]] which are then inserted into [[Chip socket|chip sockets]], that read and relay their messages.&amp;lt;br&amp;gt;&lt;br /&gt;
The programming language enables the programming and controlling of almost any device within the known universe.&lt;br /&gt;
&lt;br /&gt;
== Basic information ==&lt;br /&gt;
&lt;br /&gt;
=== How it works ===&lt;br /&gt;
The code is written to and executed from programmable chips, and can be used to both monitor and control electrical [[Devices and machines|devices]] connected to a [[Data networks|data network]].&amp;lt;br&amp;gt;&lt;br /&gt;
Lines of code are executed in sequence from top to bottom, repeating the cycle of the chip after the last line has been executed, unless the script includes programmed instructions for specific line changes or stopping the execution completely.&lt;br /&gt;
&lt;br /&gt;
To put it simply:&lt;br /&gt;
&lt;br /&gt;
# Code execution starts from line 1&lt;br /&gt;
# After reading line 1, it proceeds to the next line based on the chip's time interval&lt;br /&gt;
# The process is then repeated for the lines 2, 3, 4... etc.&lt;br /&gt;
# The chip will begin executing line 1 again after the last line has been executed (unless the last line contains a goto statement or execution has been paused)&lt;br /&gt;
&lt;br /&gt;
So blank lines still use 0.2 seconds and can be used as a brief execution delay. (lines with only a comment are effectively the same as a blank line.)&lt;br /&gt;
&lt;br /&gt;
=== Limitations ===&lt;br /&gt;
&lt;br /&gt;
* Lines take 0.2 seconds to execute.&lt;br /&gt;
* A line can contain a maximum of 70 characters (comments and spaces included).*&lt;br /&gt;
* Some functions only work on specific YOLOL chips.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;*Note that because of this some examples shown below might not work in-game.&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Command references ==&lt;br /&gt;
&lt;br /&gt;
=== Case insensitive ===&lt;br /&gt;
&lt;br /&gt;
The programming language is fully case '''insensitive'''.&amp;lt;br&amp;gt;&lt;br /&gt;
This means that the following two example scripts function identically to each other:&lt;br /&gt;
&lt;br /&gt;
 if '''ButtonState''' == 1 then '''DoorState''' = 1 end&lt;br /&gt;
&lt;br /&gt;
 IF '''buttonstate''' == 1 THEN '''doorstate''' = 1 END&lt;br /&gt;
* Both scripts set the '''doorstate''' into 1, if '''buttonstate''' value is 1.&lt;br /&gt;
* The characters in the programming language can be written in either lowercase or uppercase letters.&lt;br /&gt;
** They are still parsed as case insensitive.&lt;br /&gt;
** This way it's possible to have the code look a bit more organized.&lt;br /&gt;
&lt;br /&gt;
=== Variables ===&lt;br /&gt;
&lt;br /&gt;
* The variables in the programming language are weakly typed (don't enforce type validity), and support two data types: '''Fixed-point decimals''' (up to 0.001 precision) and '''Strings''' (up to 1024 characters long).&lt;br /&gt;
** To put it simply, the variables can either be introduced as strings or numbers, ignoring the earlier variable type if the previous type is not identical, without causing an error.&lt;br /&gt;
* Each variable is always of a single type, though it will be implicitly converted when required.&lt;br /&gt;
* The default value of an uninitialized variable is 0, and null values are not supported.&lt;br /&gt;
* True/False are numerical values of non-0 and 0.&lt;br /&gt;
** True != 0&lt;br /&gt;
** False == 0&lt;br /&gt;
&lt;br /&gt;
Assigning a value to a variable always converts the variable to the newly assigned value's type.&lt;br /&gt;
&lt;br /&gt;
'''Example:'''&lt;br /&gt;
&lt;br /&gt;
 ultimateAutopilot= 128.643&lt;br /&gt;
* This results in the variable '''ultimateAutopilot''' containing a numeric value of 128.643&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ultimateAutopilot= &amp;quot;Error prone&amp;quot;&lt;br /&gt;
* This results in the variable '''ultimateAutopilot''' to be a string variable &amp;quot;''Error prone''&amp;quot;, and numeric value of 128.643 is removed.&lt;br /&gt;
&lt;br /&gt;
==== Decimals ====&lt;br /&gt;
&lt;br /&gt;
Numeric values in the programming language are 64-bit fixed-point decimals.&amp;lt;br&amp;gt;&lt;br /&gt;
The variables hold decimal numbers up to three decimal accuracy.&amp;lt;br&amp;gt;&lt;br /&gt;
As a result, the maximum value range (even during operations) is [-9223372036854775.808, 9223372036854775.807]&lt;br /&gt;
&lt;br /&gt;
 pieVariable= 3.142&lt;br /&gt;
* The above script assigns a numeric value of 3.142 to the variable '''pieVariable'''.&lt;br /&gt;
** Supplying more precise values than the variables can store works, but doesn't affect the end result.&lt;br /&gt;
&lt;br /&gt;
 notPieVariable= 0.5772156649&lt;br /&gt;
* The above script attempts to assign a numeric value of 0.5772156649 to the variable '''notPieVariable'''.&lt;br /&gt;
* The end result however is notPieVariable == 0.577&lt;br /&gt;
** Here, the more precise values are cut, leaving only three decimals behind.&lt;br /&gt;
&lt;br /&gt;
==== Strings ====&lt;br /&gt;
&lt;br /&gt;
To specify a string literal in the programming language, the desired string value must be surrounded with double quotation marks.&lt;br /&gt;
Strings can hold up to 127 characters.&lt;br /&gt;
&lt;br /&gt;
 badRobots= &amp;quot;saltberia&amp;quot; &lt;br /&gt;
* This script assigns the string value of &amp;quot;''saltberia''&amp;quot; to the variable '''badRobots'''.&lt;br /&gt;
&lt;br /&gt;
==== Device fields / External variables ====&lt;br /&gt;
&lt;br /&gt;
External variables and device fields can be used in the programming language with the following syntax:&amp;lt;br&amp;gt;&lt;br /&gt;
* ''':variableName'''&lt;br /&gt;
**'''variableName''' being the configured device field id.&lt;br /&gt;
A colon prefix  ''':'''  is used to tell the script that an external variable is being accessed, instead of using one that may or may not be declared or used in the script.&amp;lt;br&amp;gt;&lt;br /&gt;
A programmable [[YOLOL Chip|chip]] that is connected to a [[Devices and machines|device]] has access to all the devices in the same [[Data networks|network]].&amp;lt;br&amp;gt;&lt;br /&gt;
It can then modify and listen to any device fields it has access to.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 if ''':ButtonState''' == 1 then ''':DoorState''' = 1 end&lt;br /&gt;
* The script above will send the value of 1 to any devices listening to the device field '''DoorState''' if the value of '''ButtonState''' is 1 in the data network.&lt;br /&gt;
&lt;br /&gt;
==== Naming Limitations ====&lt;br /&gt;
Currently variables containing keywords such as '''if''' or '''end''' can be parsed incorrectly, and must be avoided.&lt;br /&gt;
&lt;br /&gt;
==== Memory Chips and Relays ====&lt;br /&gt;
&lt;br /&gt;
[[YOLOL memory chip|Memory Chips]] provide 10 device fields that aren't tied to the function of devices and can be used to share variables and their values between multiple [[YOLOL_Chip|YOLOL Chips]]. &amp;lt;/br&amp;gt;&lt;br /&gt;
In a [[Memory_relay|Memory Relay]] they can also be used to copy data from one device field to another, which allows&lt;br /&gt;
* separation of networks e.g. for keeping the data networks less noisy and smaller&lt;br /&gt;
* a combination of shortened variable names in yolol and long variable names in displays e.g. for cockpit interfaces&lt;br /&gt;
&lt;br /&gt;
== Operators and commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the available operators may be limited by the type of the programmable [[YOLOL Chip|chip]].&amp;lt;br&amp;gt;&lt;br /&gt;
Basic chips have a limited selection of functions while more advanced ones can perform more complex operations natively.&lt;br /&gt;
&lt;br /&gt;
=== Basic arithmetic and assignment operators ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Operation || Numeric operation || String operation || Chip availability&lt;br /&gt;
|-&lt;br /&gt;
| A + B || Addition || String A is appended by String B. || All&lt;br /&gt;
|-&lt;br /&gt;
| A - B || Subtraction || The last appearance of String B in String A is removed from String A. || All&lt;br /&gt;
|-&lt;br /&gt;
| A * B || Multiplication || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A / B || Division || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A ++ || PostIncrement (A=A+1) || Appends a space to String A. Evaluates to the original value. || All&lt;br /&gt;
|-&lt;br /&gt;
| A -- || PostDecrement (A=A-1) || Removes the last character of the string. Results in runtime error when trying to remove &amp;quot;&amp;quot;. Evaluates to the original value. || All&lt;br /&gt;
|-&lt;br /&gt;
| ++ A  || PreIncrement (A=A+1) || Appends a space to String A. Evaluates to the modified value. || All&lt;br /&gt;
|-&lt;br /&gt;
| -- A || PreDecrement (A=A-1) || Removes the last character of the string. Results in runtime error when trying to remove &amp;quot;&amp;quot;. Evaluates to the modified value. || All&lt;br /&gt;
|-&lt;br /&gt;
| A = B || Assignment (Variable A is set to the value of variable B) || Assignment || All&lt;br /&gt;
|-&lt;br /&gt;
| A += B || Addition-assignment (A=A+B) || A is assigned the value of string-operation A+B || All&lt;br /&gt;
|-&lt;br /&gt;
| A -= B || Subtraction-assignment (A=A-B) || A is assigned the value of string-operation A-B || All&lt;br /&gt;
|-&lt;br /&gt;
| A *= B || Multiplication-assignment (A=A*B) || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A /= B || Division-assignment (A=A/B) || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A ^= B || Exponentiation-assignment (A=A^B) || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A %= B || Modulo-assignment (A=A%B) || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A ^ B || Exponentiation || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A % B || Modulo || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| ABS A || Modulus (absol value) (A=A if A&amp;gt;=0, else A=-A) || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A! || Factorial || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| SQRT A || Square root of A || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| SIN A || Sine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| COS A || Cosine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| TAN A || Tangent of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| ASIN A || Inverse sine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| ACOS A || Inverse cosine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| ATAN A || Inverse tangent of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Logical operators ===&lt;br /&gt;
&lt;br /&gt;
Logical operators are checks that identify if the statement is true or false.&amp;lt;br&amp;gt;&lt;br /&gt;
All logical operations return either '''&amp;quot;0 for False&amp;quot;''' or '''&amp;quot;1 for True&amp;quot;'''. &lt;br /&gt;
The '''NOT''', '''AND''', and '''OR''' keywords consider 0 to be falsy and anything not 0 to be truthy.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Operation || Numeric operation || String operation || Chip availability&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;lt; B || Less than || returns 1 if String A is first in alphabetical order, returns 0 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;gt; B || Greater than || returns 0 if String A is first in alphabetical order, returns 1 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;lt;= B ||Less than or equal to || returns 1 if String A is first in alphabetical order or identical to String B, returns 0 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;gt;= B || Greater than or equal to || returns 0 if String A is first in alphabetical order or identical to String B, returns 1 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A != B || Not equal to || returns 1 if String A is not equal to String B, 0 if it is. || All&lt;br /&gt;
|-&lt;br /&gt;
| A == B || Equal to || returns 1 if String A is equal to String B, 0 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| NOT A || Not || Returns 1 if A is 0, otherwise returns 0. || All&lt;br /&gt;
|-&lt;br /&gt;
| A AND B || And || Returns 1 if neither A nor B are 0, otherwise returns 0. || All&lt;br /&gt;
|-&lt;br /&gt;
| A OR B || Or || Returns 1 if either A or B is not 0, otherwise returns 0. || All&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Mixing variable types in operations ===&lt;br /&gt;
&lt;br /&gt;
Mixing variable types in an operation handles the operation using all parameters as ''strings''.&lt;br /&gt;
&lt;br /&gt;
 previouslyNumber= &amp;quot;10&amp;quot; + 15&lt;br /&gt;
* The above script results in '''previouslyNumber''' containing the string value &amp;quot;1015&amp;quot;.&lt;br /&gt;
** Note that the involved parameters themselves don't change types, their values are just cast as strings for the purpose of the operation:&lt;br /&gt;
 &lt;br /&gt;
 purelyNumber = 15&lt;br /&gt;
 purelyString = &amp;quot;10&amp;quot; + purelyNumber&lt;br /&gt;
* When this script has executed, '''purelyString''' contains the string value of &amp;quot;1015&amp;quot;, while '''purelyNumber''' still contains the numeric value of 15.&lt;br /&gt;
&lt;br /&gt;
=== Goto ===&lt;br /&gt;
&lt;br /&gt;
Goto syntax is used when the normal script reading order from 1-&amp;gt;20 is not desired, or needs to be altered.&lt;br /&gt;
&lt;br /&gt;
Goto is used with the following syntax:&lt;br /&gt;
*'''goto lineNumber'''&lt;br /&gt;
** lineNumber is the line which this command will take the script execution.&amp;lt;br&amp;gt;&lt;br /&gt;
** Any remaining script that is on the same line after the goto-command will not be executed.&lt;br /&gt;
*** using if statements before goto ignores goto syntax, assuming the if-statement is false&lt;br /&gt;
** Multiple goto commands can be added on the same line using conditionals, as '''False''' goto commands are skipped.&lt;br /&gt;
** Numeric values outside the [1,20] range are clamped to this range.&lt;br /&gt;
** Non-integer values are floored.&lt;br /&gt;
** String values will result in a Runtime Error.&lt;br /&gt;
&lt;br /&gt;
 if variable == 5 then '''goto 4''' end '''goto 6'''&lt;br /&gt;
&lt;br /&gt;
The script above will go to line number 4, if '''variable''' has a value of 5.&amp;lt;br&amp;gt;&lt;br /&gt;
Otherwise it will go to line number 6. Numerical operations can also be done &amp;quot;inside&amp;quot; the goto, e.g. &lt;br /&gt;
&lt;br /&gt;
  goto 4+1&lt;br /&gt;
&lt;br /&gt;
=== If-else conditional ===&lt;br /&gt;
&lt;br /&gt;
If-else statements are used to branch out the script into different paths.&amp;lt;br&amp;gt;&lt;br /&gt;
They use the following syntax:&lt;br /&gt;
* '''if ''condition'' then ''statement'' else ''statement'' end'''&lt;br /&gt;
** Condition is a statement that results in a numeric value (where 0 is parsed as False, anything else as True), and statements are pieces of script that are run.&lt;br /&gt;
** All If-else conditional stations must have '''end''' syntax written after statement is complete.&lt;br /&gt;
** The statement has to be on one line. The if, then, else and end cannot be on different lines.&lt;br /&gt;
&lt;br /&gt;
If can be used to branch script execution into two possible outcomes temporarily based on variable value(s).&amp;lt;br&amp;gt;&lt;br /&gt;
'''Example:'''&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable != 2 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 3 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; endResult = 4 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* This script sets the value of '''endResult''' to 3 if '''variable''' does not have the value of 2.&lt;br /&gt;
* If '''variable''''s value is 2, '''endResult''' is set to the value of 4.&lt;br /&gt;
&lt;br /&gt;
Note that the else statement -part can be left out if not needed. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Example:'''&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable != 2 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 3 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt;&lt;br /&gt;
*This script only sets the value of 3 to '''endResult''' if '''variable''' does not have a value of 2, and doesn't do anything else.&lt;br /&gt;
&lt;br /&gt;
==== Nesting if statements ====&lt;br /&gt;
&lt;br /&gt;
It is possible to place if-conditionals inside the true/false statement blocks to achieve further branching of execution.&amp;lt;br&amp;gt;&lt;br /&gt;
Example:&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 0 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 1 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 1 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 2 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &lt;br /&gt;
* This script sets '''endResult''' to 1 if '''variable''' equals 0.&lt;br /&gt;
* If '''variable''' doesn't equal 0, but it equals 1, '''endResult''' is set to 2.&lt;br /&gt;
&lt;br /&gt;
Example:&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 0 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; endResult == 1 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 2 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; endResult = 1 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt;&lt;br /&gt;
* This script sets '''endResult''' to 2 if '''variable''' has a value of 0, and '''endResult''' equals to 1.&lt;br /&gt;
* Otherwise it sets '''endResult''' to 1.&lt;br /&gt;
&lt;br /&gt;
=== Comments ===&lt;br /&gt;
&lt;br /&gt;
Comments are useful when writing code that is used by a lot of programmers.&amp;lt;br&amp;gt;&lt;br /&gt;
Note that comments also use up space from the pre-determined 70 character line limit and are not excluded from it.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Commenting is used with the following syntax:&lt;br /&gt;
*// '''text'''&lt;br /&gt;
** Text can be any single-line set of characters.&lt;br /&gt;
&lt;br /&gt;
 '''//''' This is a comment. It will explain how other lines of script work.&lt;br /&gt;
* An example of a possible comment syntax&lt;br /&gt;
&lt;br /&gt;
== Order of Operations ==&lt;br /&gt;
&lt;br /&gt;
Operations are conducted in the following order, when operators have the same precedence, left to right.&amp;lt;br&amp;gt;&lt;br /&gt;
To change order of operations, use ( ): e.g. 3*2+1=6+1=7 is the same as (3*2)+1=6+1=7 but is different from 3*(2+1)=3*3=9.&amp;lt;/br&amp;gt;&lt;br /&gt;
Where a line has multiple statements, they are executed left to right.&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Operators &lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| ++ --&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;!&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| operators &lt;br /&gt;
| sqrt, abs, sin etc.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;-&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| negate&lt;br /&gt;
|-&lt;br /&gt;
| ^&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| */%&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;&amp;lt; &amp;gt; == != &amp;lt;= &amp;gt;=&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| Surprise!&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;+-&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| not (logical negation)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| or&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| and&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Errors ==&lt;br /&gt;
&lt;br /&gt;
There are two types of errors that can happen with the programming language.&lt;br /&gt;
# Syntax errors&lt;br /&gt;
# Runtime errors&lt;br /&gt;
&lt;br /&gt;
* Syntax errors come from invalid and unparseable script and will result in the whole line not being executed.&lt;br /&gt;
* Runtime errors are only catchable while the script is being executed. They result in the execution of the line being interrupted, but any effects until the error will remain.&lt;br /&gt;
&lt;br /&gt;
== Known Bugs/Unintended Behavior ==&lt;br /&gt;
This is a list of known problems regarding yolol:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* variablenames including keywords like &amp;quot;if&amp;quot; in them will parse with the keyword in mind, resulting in a syntax error. Example: :life would be parsed as :l if e&lt;br /&gt;
&lt;br /&gt;
==YOLOL Tips &amp;amp; Tricks==&lt;br /&gt;
* [[Common YOLOL|Common YOLOL scripts]]&lt;br /&gt;
* [[YOLOL Tricks]]&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
* [[Data networks]]&lt;br /&gt;
* [[Devices and machines]]&lt;br /&gt;
* [[Device fields]]&lt;br /&gt;
* [[Universal tool|Universal tool]]&lt;br /&gt;
* [[YOLOL Chip]]&lt;br /&gt;
* [[Memory chip]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Networks|YOLOL]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=YOLOL&amp;diff=32132</id>
		<title>YOLOL</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=YOLOL&amp;diff=32132"/>
		<updated>2024-06-22T18:50:11Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: /* Strings */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Otherlang2&lt;br /&gt;
|en=YOLOL&lt;br /&gt;
|de=YOLOL:de&lt;br /&gt;
|fr=YOLOL:fr&lt;br /&gt;
|ru=YOLOL:ru&lt;br /&gt;
|ua=YOLOL:ua&lt;br /&gt;
|jp=YOLOL:jp&lt;br /&gt;
|zh-cn=YOLOL语言&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
&lt;br /&gt;
{{#evt:service=youtube|id=https://www.youtube.com/watch?v=7lXK6_bktUk|alignment=center}}&lt;br /&gt;
&lt;br /&gt;
YOLOL is a programming language used to control and manage electrical [[Devices and machines|devices]].&amp;lt;br&amp;gt;&lt;br /&gt;
The code is written on lines in [[YOLOL Chip|YOLOL chips]] which are then inserted into [[Chip socket|chip sockets]], that read and relay their messages.&amp;lt;br&amp;gt;&lt;br /&gt;
The programming language enables the programming and controlling of almost any device within the known universe.&lt;br /&gt;
&lt;br /&gt;
== Basic information ==&lt;br /&gt;
&lt;br /&gt;
=== How it works ===&lt;br /&gt;
The code is written to and executed from programmable chips, and can be used to both monitor and control electrical [[Devices and machines|devices]] connected to a [[Data networks|data network]].&amp;lt;br&amp;gt;&lt;br /&gt;
Lines of code are executed in sequence from top to bottom, repeating the cycle of the chip after the last line has been executed, unless the script includes programmed instructions for specific line changes or stopping the execution completely.&lt;br /&gt;
&lt;br /&gt;
To put it simply:&lt;br /&gt;
&lt;br /&gt;
# Code execution starts from line 1&lt;br /&gt;
# After reading line 1, it proceeds to the next line based on the chip's time interval&lt;br /&gt;
# The process is then repeated for the lines 2, 3, 4... etc.&lt;br /&gt;
# The chip will begin executing line 1 again after the last line has been executed (unless the last line contains a goto statement or execution has been paused)&lt;br /&gt;
&lt;br /&gt;
So blank lines still use 0.2 seconds and can be used as a brief execution delay. (lines with only a comment are effectively the same as a blank line.)&lt;br /&gt;
&lt;br /&gt;
=== Limitations ===&lt;br /&gt;
&lt;br /&gt;
* Lines take 0.2 seconds to execute.&lt;br /&gt;
* A line can contain a maximum of 70 characters (comments and spaces included).*&lt;br /&gt;
* Some functions only work on specific YOLOL chips.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;*Note that because of this some examples shown below might not work in-game.&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Command references ==&lt;br /&gt;
&lt;br /&gt;
=== Case insensitive ===&lt;br /&gt;
&lt;br /&gt;
The programming language is fully case '''insensitive'''.&amp;lt;br&amp;gt;&lt;br /&gt;
This means that the following two example scripts function identically to each other:&lt;br /&gt;
&lt;br /&gt;
 if '''ButtonState''' == 1 then '''DoorState''' = 1 end&lt;br /&gt;
&lt;br /&gt;
 IF '''buttonstate''' == 1 THEN '''doorstate''' = 1 END&lt;br /&gt;
* Both scripts set the '''doorstate''' into 1, if '''buttonstate''' value is 1.&lt;br /&gt;
* The characters in the programming language can be written in either lowercase or uppercase letters.&lt;br /&gt;
** They are still parsed as case insensitive.&lt;br /&gt;
** This way it's possible to have the code look a bit more organized.&lt;br /&gt;
&lt;br /&gt;
=== Variables ===&lt;br /&gt;
&lt;br /&gt;
* The variables in the programming language are weakly typed (don't enforce type validity), and support two data types: '''Fixed-point decimals''' (up to 0.001 precision) and '''Strings''' (up to 1024 characters long).&lt;br /&gt;
** To put it simply, the variables can either be introduced as strings or numbers, ignoring the earlier variable type if the previous type is not identical, without causing an error.&lt;br /&gt;
* Each variable is always of a single type, though it will be implicitly converted when required.&lt;br /&gt;
* The default value of an uninitialized variable is 0, and null values are not supported.&lt;br /&gt;
* True/False are numerical values of non-0 and 0.&lt;br /&gt;
** True != 0&lt;br /&gt;
** False == 0&lt;br /&gt;
&lt;br /&gt;
Assigning a value to a variable always converts the variable to the newly assigned value's type.&lt;br /&gt;
&lt;br /&gt;
'''Example:'''&lt;br /&gt;
&lt;br /&gt;
 ultimateAutopilot= 128.643&lt;br /&gt;
* This results in the variable '''ultimateAutopilot''' containing a numeric value of 128.643&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 ultimateAutopilot= &amp;quot;Error prone&amp;quot;&lt;br /&gt;
* This results in the variable '''ultimateAutopilot''' to be a string variable &amp;quot;''Error prone''&amp;quot;, and numeric value of 128.643 is removed.&lt;br /&gt;
&lt;br /&gt;
==== Decimals ====&lt;br /&gt;
&lt;br /&gt;
Numeric values in the programming language are 64-bit fixed-point decimals.&amp;lt;br&amp;gt;&lt;br /&gt;
The variables hold decimal numbers up to three decimal accuracy.&amp;lt;br&amp;gt;&lt;br /&gt;
As a result, the maximum value range (even during operations) is [-9223372036854775.808, 9223372036854775.807]&lt;br /&gt;
&lt;br /&gt;
 pieVariable= 3.142&lt;br /&gt;
* The above script assigns a numeric value of 3.142 to the variable '''pieVariable'''.&lt;br /&gt;
** Supplying more precise values than the variables can store works, but doesn't affect the end result.&lt;br /&gt;
&lt;br /&gt;
 notPieVariable= 0.5772156649&lt;br /&gt;
* The above script attempts to assign a numeric value of 0.5772156649 to the variable '''notPieVariable'''.&lt;br /&gt;
* The end result however is notPieVariable == 0.577&lt;br /&gt;
** Here, the more precise values are cut, leaving only three decimals behind.&lt;br /&gt;
&lt;br /&gt;
==== Strings ====&lt;br /&gt;
&lt;br /&gt;
To specify a string literal in the programming language, the desired string value must be surrounded with double quotation marks. Strings can hold up to 127 characters.&lt;br /&gt;
&lt;br /&gt;
 badRobots= &amp;quot;saltberia&amp;quot; &lt;br /&gt;
* This script assigns the string value of &amp;quot;''saltberia''&amp;quot; to the variable '''badRobots'''.&lt;br /&gt;
&lt;br /&gt;
==== Device fields / External variables ====&lt;br /&gt;
&lt;br /&gt;
External variables and device fields can be used in the programming language with the following syntax:&amp;lt;br&amp;gt;&lt;br /&gt;
* ''':variableName'''&lt;br /&gt;
**'''variableName''' being the configured device field id.&lt;br /&gt;
A colon prefix  ''':'''  is used to tell the script that an external variable is being accessed, instead of using one that may or may not be declared or used in the script.&amp;lt;br&amp;gt;&lt;br /&gt;
A programmable [[YOLOL Chip|chip]] that is connected to a [[Devices and machines|device]] has access to all the devices in the same [[Data networks|network]].&amp;lt;br&amp;gt;&lt;br /&gt;
It can then modify and listen to any device fields it has access to.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 if ''':ButtonState''' == 1 then ''':DoorState''' = 1 end&lt;br /&gt;
* The script above will send the value of 1 to any devices listening to the device field '''DoorState''' if the value of '''ButtonState''' is 1 in the data network.&lt;br /&gt;
&lt;br /&gt;
==== Naming Limitations ====&lt;br /&gt;
Currently variables containing keywords such as '''if''' or '''end''' can be parsed incorrectly, and must be avoided.&lt;br /&gt;
&lt;br /&gt;
==== Memory Chips and Relays ====&lt;br /&gt;
&lt;br /&gt;
[[YOLOL memory chip|Memory Chips]] provide 10 device fields that aren't tied to the function of devices and can be used to share variables and their values between multiple [[YOLOL_Chip|YOLOL Chips]]. &amp;lt;/br&amp;gt;&lt;br /&gt;
In a [[Memory_relay|Memory Relay]] they can also be used to copy data from one device field to another, which allows&lt;br /&gt;
* separation of networks e.g. for keeping the data networks less noisy and smaller&lt;br /&gt;
* a combination of shortened variable names in yolol and long variable names in displays e.g. for cockpit interfaces&lt;br /&gt;
&lt;br /&gt;
== Operators and commands ==&lt;br /&gt;
&lt;br /&gt;
Note that the available operators may be limited by the type of the programmable [[YOLOL Chip|chip]].&amp;lt;br&amp;gt;&lt;br /&gt;
Basic chips have a limited selection of functions while more advanced ones can perform more complex operations natively.&lt;br /&gt;
&lt;br /&gt;
=== Basic arithmetic and assignment operators ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Operation || Numeric operation || String operation || Chip availability&lt;br /&gt;
|-&lt;br /&gt;
| A + B || Addition || String A is appended by String B. || All&lt;br /&gt;
|-&lt;br /&gt;
| A - B || Subtraction || The last appearance of String B in String A is removed from String A. || All&lt;br /&gt;
|-&lt;br /&gt;
| A * B || Multiplication || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A / B || Division || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A ++ || PostIncrement (A=A+1) || Appends a space to String A. Evaluates to the original value. || All&lt;br /&gt;
|-&lt;br /&gt;
| A -- || PostDecrement (A=A-1) || Removes the last character of the string. Results in runtime error when trying to remove &amp;quot;&amp;quot;. Evaluates to the original value. || All&lt;br /&gt;
|-&lt;br /&gt;
| ++ A  || PreIncrement (A=A+1) || Appends a space to String A. Evaluates to the modified value. || All&lt;br /&gt;
|-&lt;br /&gt;
| -- A || PreDecrement (A=A-1) || Removes the last character of the string. Results in runtime error when trying to remove &amp;quot;&amp;quot;. Evaluates to the modified value. || All&lt;br /&gt;
|-&lt;br /&gt;
| A = B || Assignment (Variable A is set to the value of variable B) || Assignment || All&lt;br /&gt;
|-&lt;br /&gt;
| A += B || Addition-assignment (A=A+B) || A is assigned the value of string-operation A+B || All&lt;br /&gt;
|-&lt;br /&gt;
| A -= B || Subtraction-assignment (A=A-B) || A is assigned the value of string-operation A-B || All&lt;br /&gt;
|-&lt;br /&gt;
| A *= B || Multiplication-assignment (A=A*B) || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A /= B || Division-assignment (A=A/B) || Runtime error. The rest of the line is skipped. || All&lt;br /&gt;
|-&lt;br /&gt;
| A ^= B || Exponentiation-assignment (A=A^B) || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A %= B || Modulo-assignment (A=A%B) || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A ^ B || Exponentiation || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A % B || Modulo || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| ABS A || Modulus (absol value) (A=A if A&amp;gt;=0, else A=-A) || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| A! || Factorial || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| SQRT A || Square root of A || Runtime error. The rest of the line is skipped. || Advanced, Professional&lt;br /&gt;
|-&lt;br /&gt;
| SIN A || Sine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| COS A || Cosine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| TAN A || Tangent of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| ASIN A || Inverse sine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| ACOS A || Inverse cosine of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|-&lt;br /&gt;
| ATAN A || Inverse tangent of A (degrees) || Runtime error. The rest of the line is skipped. || Professional&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Logical operators ===&lt;br /&gt;
&lt;br /&gt;
Logical operators are checks that identify if the statement is true or false.&amp;lt;br&amp;gt;&lt;br /&gt;
All logical operations return either '''&amp;quot;0 for False&amp;quot;''' or '''&amp;quot;1 for True&amp;quot;'''. &lt;br /&gt;
The '''NOT''', '''AND''', and '''OR''' keywords consider 0 to be falsy and anything not 0 to be truthy.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Operation || Numeric operation || String operation || Chip availability&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;lt; B || Less than || returns 1 if String A is first in alphabetical order, returns 0 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;gt; B || Greater than || returns 0 if String A is first in alphabetical order, returns 1 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;lt;= B ||Less than or equal to || returns 1 if String A is first in alphabetical order or identical to String B, returns 0 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A &amp;gt;= B || Greater than or equal to || returns 0 if String A is first in alphabetical order or identical to String B, returns 1 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| A != B || Not equal to || returns 1 if String A is not equal to String B, 0 if it is. || All&lt;br /&gt;
|-&lt;br /&gt;
| A == B || Equal to || returns 1 if String A is equal to String B, 0 if not. || All&lt;br /&gt;
|-&lt;br /&gt;
| NOT A || Not || Returns 1 if A is 0, otherwise returns 0. || All&lt;br /&gt;
|-&lt;br /&gt;
| A AND B || And || Returns 1 if neither A nor B are 0, otherwise returns 0. || All&lt;br /&gt;
|-&lt;br /&gt;
| A OR B || Or || Returns 1 if either A or B is not 0, otherwise returns 0. || All&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Mixing variable types in operations ===&lt;br /&gt;
&lt;br /&gt;
Mixing variable types in an operation handles the operation using all parameters as ''strings''.&lt;br /&gt;
&lt;br /&gt;
 previouslyNumber= &amp;quot;10&amp;quot; + 15&lt;br /&gt;
* The above script results in '''previouslyNumber''' containing the string value &amp;quot;1015&amp;quot;.&lt;br /&gt;
** Note that the involved parameters themselves don't change types, their values are just cast as strings for the purpose of the operation:&lt;br /&gt;
 &lt;br /&gt;
 purelyNumber = 15&lt;br /&gt;
 purelyString = &amp;quot;10&amp;quot; + purelyNumber&lt;br /&gt;
* When this script has executed, '''purelyString''' contains the string value of &amp;quot;1015&amp;quot;, while '''purelyNumber''' still contains the numeric value of 15.&lt;br /&gt;
&lt;br /&gt;
=== Goto ===&lt;br /&gt;
&lt;br /&gt;
Goto syntax is used when the normal script reading order from 1-&amp;gt;20 is not desired, or needs to be altered.&lt;br /&gt;
&lt;br /&gt;
Goto is used with the following syntax:&lt;br /&gt;
*'''goto lineNumber'''&lt;br /&gt;
** lineNumber is the line which this command will take the script execution.&amp;lt;br&amp;gt;&lt;br /&gt;
** Any remaining script that is on the same line after the goto-command will not be executed.&lt;br /&gt;
*** using if statements before goto ignores goto syntax, assuming the if-statement is false&lt;br /&gt;
** Multiple goto commands can be added on the same line using conditionals, as '''False''' goto commands are skipped.&lt;br /&gt;
** Numeric values outside the [1,20] range are clamped to this range.&lt;br /&gt;
** Non-integer values are floored.&lt;br /&gt;
** String values will result in a Runtime Error.&lt;br /&gt;
&lt;br /&gt;
 if variable == 5 then '''goto 4''' end '''goto 6'''&lt;br /&gt;
&lt;br /&gt;
The script above will go to line number 4, if '''variable''' has a value of 5.&amp;lt;br&amp;gt;&lt;br /&gt;
Otherwise it will go to line number 6. Numerical operations can also be done &amp;quot;inside&amp;quot; the goto, e.g. &lt;br /&gt;
&lt;br /&gt;
  goto 4+1&lt;br /&gt;
&lt;br /&gt;
=== If-else conditional ===&lt;br /&gt;
&lt;br /&gt;
If-else statements are used to branch out the script into different paths.&amp;lt;br&amp;gt;&lt;br /&gt;
They use the following syntax:&lt;br /&gt;
* '''if ''condition'' then ''statement'' else ''statement'' end'''&lt;br /&gt;
** Condition is a statement that results in a numeric value (where 0 is parsed as False, anything else as True), and statements are pieces of script that are run.&lt;br /&gt;
** All If-else conditional stations must have '''end''' syntax written after statement is complete.&lt;br /&gt;
** The statement has to be on one line. The if, then, else and end cannot be on different lines.&lt;br /&gt;
&lt;br /&gt;
If can be used to branch script execution into two possible outcomes temporarily based on variable value(s).&amp;lt;br&amp;gt;&lt;br /&gt;
'''Example:'''&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable != 2 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 3 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; endResult = 4 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* This script sets the value of '''endResult''' to 3 if '''variable''' does not have the value of 2.&lt;br /&gt;
* If '''variable''''s value is 2, '''endResult''' is set to the value of 4.&lt;br /&gt;
&lt;br /&gt;
Note that the else statement -part can be left out if not needed. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Example:'''&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable != 2 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 3 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt;&lt;br /&gt;
*This script only sets the value of 3 to '''endResult''' if '''variable''' does not have a value of 2, and doesn't do anything else.&lt;br /&gt;
&lt;br /&gt;
==== Nesting if statements ====&lt;br /&gt;
&lt;br /&gt;
It is possible to place if-conditionals inside the true/false statement blocks to achieve further branching of execution.&amp;lt;br&amp;gt;&lt;br /&gt;
Example:&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 0 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 1 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 1 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 2 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &lt;br /&gt;
* This script sets '''endResult''' to 1 if '''variable''' equals 0.&lt;br /&gt;
* If '''variable''' doesn't equal 0, but it equals 1, '''endResult''' is set to 2.&lt;br /&gt;
&lt;br /&gt;
Example:&amp;lt;br&amp;gt;&lt;br /&gt;
 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; variable == 0 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''if'''&amp;lt;/font&amp;gt; endResult == 1 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''then'''&amp;lt;/font&amp;gt; endResult = 2 &amp;lt;font color=&amp;quot;cyan&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt; &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''else'''&amp;lt;/font&amp;gt; endResult = 1 &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''end'''&amp;lt;/font&amp;gt;&lt;br /&gt;
* This script sets '''endResult''' to 2 if '''variable''' has a value of 0, and '''endResult''' equals to 1.&lt;br /&gt;
* Otherwise it sets '''endResult''' to 1.&lt;br /&gt;
&lt;br /&gt;
=== Comments ===&lt;br /&gt;
&lt;br /&gt;
Comments are useful when writing code that is used by a lot of programmers.&amp;lt;br&amp;gt;&lt;br /&gt;
Note that comments also use up space from the pre-determined 70 character line limit and are not excluded from it.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Commenting is used with the following syntax:&lt;br /&gt;
*// '''text'''&lt;br /&gt;
** Text can be any single-line set of characters.&lt;br /&gt;
&lt;br /&gt;
 '''//''' This is a comment. It will explain how other lines of script work.&lt;br /&gt;
* An example of a possible comment syntax&lt;br /&gt;
&lt;br /&gt;
== Order of Operations ==&lt;br /&gt;
&lt;br /&gt;
Operations are conducted in the following order, when operators have the same precedence, left to right.&amp;lt;br&amp;gt;&lt;br /&gt;
To change order of operations, use ( ): e.g. 3*2+1=6+1=7 is the same as (3*2)+1=6+1=7 but is different from 3*(2+1)=3*3=9.&amp;lt;/br&amp;gt;&lt;br /&gt;
Where a line has multiple statements, they are executed left to right.&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Operators &lt;br /&gt;
! Comments&lt;br /&gt;
|-&lt;br /&gt;
| ++ --&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;!&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| operators &lt;br /&gt;
| sqrt, abs, sin etc.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;-&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| negate&lt;br /&gt;
|-&lt;br /&gt;
| ^&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| */%&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;&amp;lt; &amp;gt; == != &amp;lt;= &amp;gt;=&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
| Surprise!&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;nowiki&amp;gt;+-&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| not (logical negation)&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| or&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| and&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Errors ==&lt;br /&gt;
&lt;br /&gt;
There are two types of errors that can happen with the programming language.&lt;br /&gt;
# Syntax errors&lt;br /&gt;
# Runtime errors&lt;br /&gt;
&lt;br /&gt;
* Syntax errors come from invalid and unparseable script and will result in the whole line not being executed.&lt;br /&gt;
* Runtime errors are only catchable while the script is being executed. They result in the execution of the line being interrupted, but any effects until the error will remain.&lt;br /&gt;
&lt;br /&gt;
== Known Bugs/Unintended Behavior ==&lt;br /&gt;
This is a list of known problems regarding yolol:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* variablenames including keywords like &amp;quot;if&amp;quot; in them will parse with the keyword in mind, resulting in a syntax error. Example: :life would be parsed as :l if e&lt;br /&gt;
&lt;br /&gt;
==YOLOL Tips &amp;amp; Tricks==&lt;br /&gt;
* [[Common YOLOL|Common YOLOL scripts]]&lt;br /&gt;
* [[YOLOL Tricks]]&lt;br /&gt;
&lt;br /&gt;
== Related Pages ==&lt;br /&gt;
* [[Data networks]]&lt;br /&gt;
* [[Devices and machines]]&lt;br /&gt;
* [[Device fields]]&lt;br /&gt;
* [[Universal tool|Universal tool]]&lt;br /&gt;
* [[YOLOL Chip]]&lt;br /&gt;
* [[Memory chip]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Networks|YOLOL]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Missile&amp;diff=20454</id>
		<title>Missile</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Missile&amp;diff=20454"/>
		<updated>2021-04-11T21:34:58Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: /* Thruster */ Fixed &amp;quot;IsActive&amp;quot; row formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Otherlang2&lt;br /&gt;
|de=Missile:de&lt;br /&gt;
|fr=Missile:fr&lt;br /&gt;
|zh-cn=火箭弹&lt;br /&gt;
|ru=Ракета&lt;br /&gt;
|ua=Модульна Ракета&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{|{{Infobox ship begin}}&lt;br /&gt;
{{Infobox ship image&lt;br /&gt;
|Ship image=MissileParts.PNG&lt;br /&gt;
|Ship caption=The parts of a modular missile&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox ship career&lt;br /&gt;
|Hide header=&lt;br /&gt;
|Ship class=Mounted weapon, Unguided projectile&lt;br /&gt;
|Ship name=Missile&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
| General use: &lt;br /&gt;
|Causing large amounts of destruction&lt;br /&gt;
|-&lt;br /&gt;
{{Infobox ship characteristics&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
| Power draw:&lt;br /&gt;
| ? local power per shot&lt;br /&gt;
|-&lt;br /&gt;
| Mass: &lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
| Lifetime:&lt;br /&gt;
| ? seconds&lt;br /&gt;
|}&lt;br /&gt;
== Summary ==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:MissileParts.PNG|400px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Basics''&lt;br /&gt;
* Flight speed: Approximately 360-460m/s depending on composition.&lt;br /&gt;
* Ammunition type: Projectile&lt;br /&gt;
* Guidance: None&lt;br /&gt;
&lt;br /&gt;
== Ship usage ==&lt;br /&gt;
&lt;br /&gt;
Missiles can be found on the following ships, either as its default, or as a variant:&lt;br /&gt;
* [[Veles|Veles]]&lt;br /&gt;
&lt;br /&gt;
== Parts ==&lt;br /&gt;
&lt;br /&gt;
Missiles are modular projectiles comprising 4 seperate parts, varients of each are available&lt;br /&gt;
* Thruster, default or fast&lt;br /&gt;
* Propellant tank, default or small and explosive&lt;br /&gt;
* Warhead, heat or corosive damage&lt;br /&gt;
* Fuse, contact or proximity&lt;br /&gt;
&lt;br /&gt;
== Launcher ==&lt;br /&gt;
&lt;br /&gt;
While missiles can be launched using a universal tool, they are best used in conjunction with a missile launcher.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:MissileLauncher.PNG|400px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The missile launcher allows YOLOL to directly interface with the missiles, this can be used to fire missiles at a push of a button or even automate the process.&lt;br /&gt;
&lt;br /&gt;
== Video ==&lt;br /&gt;
&lt;br /&gt;
More information can be found in [https://www.youtube.com/watch?v=5-xhwLw3cYI this official missile video].&lt;br /&gt;
&lt;br /&gt;
== Device fields ==&lt;br /&gt;
&lt;br /&gt;
=== Missile ===&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! YOLOL field&lt;br /&gt;
! description&lt;br /&gt;
! range&lt;br /&gt;
|-&lt;br /&gt;
! '''Detonate'''&lt;br /&gt;
| Detonates the missile if set to 1&lt;br /&gt;
| 0 - 1&lt;br /&gt;
|-&lt;br /&gt;
! '''Safety'''&lt;br /&gt;
| Stops the fuse from detonating the missile if set to 1&lt;br /&gt;
| 0 - 1&lt;br /&gt;
|-&lt;br /&gt;
! '''TimerState'''&lt;br /&gt;
| Determines whether the timer is active&lt;br /&gt;
| 0 - 1&lt;br /&gt;
|-&lt;br /&gt;
! '''Timer'''&lt;br /&gt;
| Counts up while TimerState is 1, detonates once reaching DetonationTime&lt;br /&gt;
| 0 - n&lt;br /&gt;
|-&lt;br /&gt;
! '''SafetyTime'''&lt;br /&gt;
| Need info&lt;br /&gt;
| -1 - n&lt;br /&gt;
|-&lt;br /&gt;
! '''DetonationTime'''&lt;br /&gt;
| Time that Timer will detonate the missile&lt;br /&gt;
| -1 - n&lt;br /&gt;
|-&lt;br /&gt;
! '''TriggerRange'''&lt;br /&gt;
| Range to trigger fuse&lt;br /&gt;
| 0 - n&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Thruster ===&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! YOLOL field&lt;br /&gt;
! description&lt;br /&gt;
! range&lt;br /&gt;
|-&lt;br /&gt;
! '''CurrentThrust'''&lt;br /&gt;
| The current thrust value&lt;br /&gt;
| 0 - n&lt;br /&gt;
|-&lt;br /&gt;
! '''TargetThrust'''&lt;br /&gt;
| The thrust value the missile will attempt to achieve&lt;br /&gt;
| 0 - n&lt;br /&gt;
|-&lt;br /&gt;
!'''IsActive'''&lt;br /&gt;
| Toggle to turn on thruster&lt;br /&gt;
| 0 - 1&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Mounted weapons|Missile]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Missile&amp;diff=20453</id>
		<title>Missile</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Missile&amp;diff=20453"/>
		<updated>2021-04-11T21:34:07Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: /* Thruster */  Added &amp;quot;IsActive&amp;quot; field&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Otherlang2&lt;br /&gt;
|de=Missile:de&lt;br /&gt;
|fr=Missile:fr&lt;br /&gt;
|zh-cn=火箭弹&lt;br /&gt;
|ru=Ракета&lt;br /&gt;
|ua=Модульна Ракета&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{|{{Infobox ship begin}}&lt;br /&gt;
{{Infobox ship image&lt;br /&gt;
|Ship image=MissileParts.PNG&lt;br /&gt;
|Ship caption=The parts of a modular missile&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox ship career&lt;br /&gt;
|Hide header=&lt;br /&gt;
|Ship class=Mounted weapon, Unguided projectile&lt;br /&gt;
|Ship name=Missile&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
| General use: &lt;br /&gt;
|Causing large amounts of destruction&lt;br /&gt;
|-&lt;br /&gt;
{{Infobox ship characteristics&lt;br /&gt;
}}&lt;br /&gt;
|-&lt;br /&gt;
| Power draw:&lt;br /&gt;
| ? local power per shot&lt;br /&gt;
|-&lt;br /&gt;
| Mass: &lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
| Lifetime:&lt;br /&gt;
| ? seconds&lt;br /&gt;
|}&lt;br /&gt;
== Summary ==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:MissileParts.PNG|400px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''Basics''&lt;br /&gt;
* Flight speed: Approximately 360-460m/s depending on composition.&lt;br /&gt;
* Ammunition type: Projectile&lt;br /&gt;
* Guidance: None&lt;br /&gt;
&lt;br /&gt;
== Ship usage ==&lt;br /&gt;
&lt;br /&gt;
Missiles can be found on the following ships, either as its default, or as a variant:&lt;br /&gt;
* [[Veles|Veles]]&lt;br /&gt;
&lt;br /&gt;
== Parts ==&lt;br /&gt;
&lt;br /&gt;
Missiles are modular projectiles comprising 4 seperate parts, varients of each are available&lt;br /&gt;
* Thruster, default or fast&lt;br /&gt;
* Propellant tank, default or small and explosive&lt;br /&gt;
* Warhead, heat or corosive damage&lt;br /&gt;
* Fuse, contact or proximity&lt;br /&gt;
&lt;br /&gt;
== Launcher ==&lt;br /&gt;
&lt;br /&gt;
While missiles can be launched using a universal tool, they are best used in conjunction with a missile launcher.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:MissileLauncher.PNG|400px]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The missile launcher allows YOLOL to directly interface with the missiles, this can be used to fire missiles at a push of a button or even automate the process.&lt;br /&gt;
&lt;br /&gt;
== Video ==&lt;br /&gt;
&lt;br /&gt;
More information can be found in [https://www.youtube.com/watch?v=5-xhwLw3cYI this official missile video].&lt;br /&gt;
&lt;br /&gt;
== Device fields ==&lt;br /&gt;
&lt;br /&gt;
=== Missile ===&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! YOLOL field&lt;br /&gt;
! description&lt;br /&gt;
! range&lt;br /&gt;
|-&lt;br /&gt;
! '''Detonate'''&lt;br /&gt;
| Detonates the missile if set to 1&lt;br /&gt;
| 0 - 1&lt;br /&gt;
|-&lt;br /&gt;
! '''Safety'''&lt;br /&gt;
| Stops the fuse from detonating the missile if set to 1&lt;br /&gt;
| 0 - 1&lt;br /&gt;
|-&lt;br /&gt;
! '''TimerState'''&lt;br /&gt;
| Determines whether the timer is active&lt;br /&gt;
| 0 - 1&lt;br /&gt;
|-&lt;br /&gt;
! '''Timer'''&lt;br /&gt;
| Counts up while TimerState is 1, detonates once reaching DetonationTime&lt;br /&gt;
| 0 - n&lt;br /&gt;
|-&lt;br /&gt;
! '''SafetyTime'''&lt;br /&gt;
| Need info&lt;br /&gt;
| -1 - n&lt;br /&gt;
|-&lt;br /&gt;
! '''DetonationTime'''&lt;br /&gt;
| Time that Timer will detonate the missile&lt;br /&gt;
| -1 - n&lt;br /&gt;
|-&lt;br /&gt;
! '''TriggerRange'''&lt;br /&gt;
| Range to trigger fuse&lt;br /&gt;
| 0 - n&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Thruster ===&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! YOLOL field&lt;br /&gt;
! description&lt;br /&gt;
! range&lt;br /&gt;
|-&lt;br /&gt;
! '''CurrentThrust'''&lt;br /&gt;
| The current thrust value&lt;br /&gt;
| 0 - n&lt;br /&gt;
|-&lt;br /&gt;
! '''TargetThrust'''&lt;br /&gt;
| The thrust value the missile will attempt to achieve&lt;br /&gt;
| 0 - n&lt;br /&gt;
!'''IsActive'''&lt;br /&gt;
| Toggle to turn on thruster&lt;br /&gt;
| 0 - 1&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Mounted weapons|Missile]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19168</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19168"/>
		<updated>2020-12-29T10:55:10Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: change company type to be more accurate, add mercenary section v1&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union/Temp Agency, Mercenary&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||5&lt;br /&gt;
|-&lt;br /&gt;
|'''Mercenary strength'''||1&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Preferred Contractors'''||[[Byzantium]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
===#5===&lt;br /&gt;
Members that are mercenaries are required to help with fighting or combat logistics if one of the F.O.X. members needs standing up for or F.O.X. is hired to fight in a conflict. However, mercenaries will be prohibited from participating in conflicts against their own companies.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please and to act as an opposing force to bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Blank Template=====&lt;br /&gt;
Your task not listed here? Use this as a starting point to make your own listing.&lt;br /&gt;
 **Task Type:** TASK_TITLE&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** ITEMS&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** CARGO_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''1,000,000'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Mercenary ==&lt;br /&gt;
=== Purpose ===&lt;br /&gt;
To enforce the agreements that are made with our members, to fulfill contracts to aid our customers in battle, and to hunt rogue pirates that are harassing people, F.O.X. trains a dedicated force of mercenaries.&lt;br /&gt;
=== Joining ===&lt;br /&gt;
For now, anyone may join. You must ask XenoCow for permission, and he will grant it. Combat and leadership experience is preferred, though. Like other parts of F.O.X., members of the mercenary may be members of other companies simultaneously. However, like stated in the rules, participation against your own faction is prohibited.&lt;br /&gt;
=== Ordering Mercenary Services ===&lt;br /&gt;
FIXME&lt;br /&gt;
=== Training ===&lt;br /&gt;
FIXME&lt;br /&gt;
=== Fighting Capacity ===&lt;br /&gt;
FIXME&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Mercenary version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19158</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19158"/>
		<updated>2020-12-29T08:52:10Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Add mercenary strength to facts box&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||5&lt;br /&gt;
|-&lt;br /&gt;
|'''Mercenary strength'''||1&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Preferred Contractors'''||[[Byzantium]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
===#5===&lt;br /&gt;
Members that are mercenaries are required to help with fighting or combat logistics if one of the F.O.X. members needs standing up for or F.O.X. is hired to fight in a conflict. However, mercenaries will be prohibited from participating in conflicts against their own companies.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please and to act as an opposing force to bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Blank Template=====&lt;br /&gt;
Your task not listed here? Use this as a starting point to make your own listing.&lt;br /&gt;
 **Task Type:** TASK_TITLE&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** ITEMS&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** CARGO_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''1,000,000'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Mercenary version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19157</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19157"/>
		<updated>2020-12-29T03:19:35Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Fixed inset box of blank template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||5&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Preferred Contractors'''||[[Byzantium]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
===#5===&lt;br /&gt;
Members that are mercenaries are required to help with fighting or combat logistics if one of the F.O.X. members needs standing up for or F.O.X. is hired to fight in a conflict. However, mercenaries will be prohibited from participating in conflicts against their own companies.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please and to act as an opposing force to bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Blank Template=====&lt;br /&gt;
Your task not listed here? Use this as a starting point to make your own listing.&lt;br /&gt;
 **Task Type:** TASK_TITLE&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** ITEMS&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** CARGO_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''1,000,000'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Mercenary version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19156</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19156"/>
		<updated>2020-12-29T03:17:25Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: /* #task-listings */ Added template task and fixed some capitalization inconsistancies&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||5&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Preferred Contractors'''||[[Byzantium]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
===#5===&lt;br /&gt;
Members that are mercenaries are required to help with fighting or combat logistics if one of the F.O.X. members needs standing up for or F.O.X. is hired to fight in a conflict. However, mercenaries will be prohibited from participating in conflicts against their own companies.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please and to act as an opposing force to bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Blank Template=====&lt;br /&gt;
Your task not listed here? Use this as a starting point to make your own listing.&lt;br /&gt;
**Task Type:** TASK_TITLE&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** ITEMS&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** CARGO_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''1,000,000'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Mercenary version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19155</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19155"/>
		<updated>2020-12-29T03:01:27Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: /* #5 */ Fixed the number of the mercenary rule from a second 4 to 5&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||5&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Preferred Contractors'''||[[Byzantium]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
===#5===&lt;br /&gt;
Members that are mercenaries are required to help with fighting or combat logistics if one of the F.O.X. members needs standing up for or F.O.X. is hired to fight in a conflict. However, mercenaries will be prohibited from participating in conflicts against their own companies.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please and to act as an opposing force to bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** Items&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** Cargo_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''1,000,000'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Mercenary version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19154</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19154"/>
		<updated>2020-12-29T03:00:49Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: /* Rules */: Added mercenary rules&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||5&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Preferred Contractors'''||[[Byzantium]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
===#4===&lt;br /&gt;
Members that are mercenaries are required to help with fighting or combat logistics if one of the F.O.X. members needs standing up for or F.O.X. is hired to fight in a conflict. However, mercenaries will be prohibited from participating in conflicts against their own companies.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please and to act as an opposing force to bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** Items&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** Cargo_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''1,000,000'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Mercenary version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19153</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19153"/>
		<updated>2020-12-29T02:14:58Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Changed wording in Goals section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||5&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Preferred Contractors'''||[[Byzantium]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please and to act as an opposing force to bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** Items&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** Cargo_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''1,000,000'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Mercenary version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19152</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19152"/>
		<updated>2020-12-29T02:01:59Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Adjusted member size to only include freelancers, tweaked art desc.,&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||5&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Preferred Contractors'''||[[Byzantium]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please without worries about bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** Items&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** Cargo_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''1,000,000'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Mercenary version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=F.O.X.&amp;diff=19151</id>
		<title>F.O.X.</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=F.O.X.&amp;diff=19151"/>
		<updated>2020-12-29T01:41:59Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: XenoCow moved page F.O.X. to Freelance Operatives of XenoCow: period at end of old title would not let most URL interpreters to include it in the hyperlink&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Freelance Operatives of XenoCow]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19150</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=19150"/>
		<updated>2020-12-29T01:41:59Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: XenoCow moved page F.O.X. to Freelance Operatives of XenoCow: period at end of old title would not let most URL interpreters to include it in the hyperlink&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||9&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Preferred Contractors'''||[[Byzantium]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please without worries about bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** Items&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** Cargo_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''1,000,000'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Battle version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=18397</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=18397"/>
		<updated>2020-10-01T02:13:04Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Changed current rate for towing task&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||9&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Preferred Contractors'''||[[Byzantium]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please without worries about bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** Items&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** Cargo_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''1,000,000'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Battle version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=18396</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=18396"/>
		<updated>2020-09-30T23:20:04Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||9&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Preferred Contractors'''||[[Byzantium]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please without worries about bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** Items&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** Cargo_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Battle version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=18395</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=18395"/>
		<updated>2020-09-30T23:13:17Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: updated member count&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||9&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''[[Player alliances|Alliances]]'''||N/A&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please without worries about bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** Items&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** Cargo_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Battle version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=18310</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=18310"/>
		<updated>2020-09-16T22:38:44Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Removed the large enemies list as to not start fights for no reason&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||5&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''[[Player alliances|Alliances]]'''||N/A&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||Rogue pirates/Trolls/Griefers&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please without worries about bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** Items&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** Cargo_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Battle version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Factions]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Community_navigation_systems&amp;diff=16592</id>
		<title>Community navigation systems</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Community_navigation_systems&amp;diff=16592"/>
		<updated>2020-07-17T23:07:59Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Changed note under Duke's GPS System to promote ISAN while not degrading Duke's&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Since Starbase has no in built coordinate system accesable to the player, it has been neccersary to develop comunity soloutions to the problem of 'where am I?'&lt;br /&gt;
&lt;br /&gt;
Systems so far untilise the [[Radio transmitters|Transmitter]] and [[Navigation receivers|Receiver]] systems to determine a ships position using [https://wikipedia.org/wiki/Multilateration Multilateration].&lt;br /&gt;
&lt;br /&gt;
== Systems ==&lt;br /&gt;
&lt;br /&gt;
Both systems below share compatable coordinates, information about the position of various stations can be found in the [[Radio transmitters|Transmitters]] page.&lt;br /&gt;
&lt;br /&gt;
=== Duke's GPS System ===&lt;br /&gt;
[https://docs.google.com/document/d/1y9ZJ7aehgoENzIp3-HW3nPLIPnfQvaeHYpTZEskCnVA/edit Triangulation of coordinates in Starbase, using Transmitters and YOLOL]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Developed by [[User:Duke_Ironhelm|Duke]]&lt;br /&gt;
&lt;br /&gt;
While being the first publicly available navigation system, the ISAN system is superior.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ISAN ===&lt;br /&gt;
&lt;br /&gt;
[https://docs.google.com/document/d/1UZWv5UM_DUMQZnlsFbLcuyjbu__Bs0yltIHsXP88qvk/edit ISAN - Integrated System for Autonomous Navigation]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Developed by [[Collective]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=15916</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=15916"/>
		<updated>2020-06-19T03:10:07Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: /* Quick Facts */ corrected link to &amp;quot;Rules&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||5&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''[[Player alliances|Alliances]]'''||N/A&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||[[Alpha]], [[Anker Imperium]], [[Arcforge Industries]], [[Band of Outlaws]], [[Black Code]], [[The Blood Reavers]], [[Casually Addicted]], [[Devil's Decendants]], [[Dreadmob]], [[Fate]], [[Jar of Cries]], [[Outlanders]], [[Pegasus Industries]], [[Pestilence]], [[Space Fleet Sailors]], [[The Anarchists]], [[The Order]], [[TNT]], [[WAR - We Are Real]], [[Zephyrs]], &amp;amp; any rogue pirates&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php/F.O.X.#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please without worries about bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** Items&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** Cargo_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Battle version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=15915</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=15915"/>
		<updated>2020-06-19T03:04:31Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: updated member count, edited wording from &amp;quot;job(s)&amp;quot; to &amp;quot;task(s)&amp;quot;, added &amp;quot;Quick Facts&amp;quot;, edited &amp;quot;Getting Started&amp;quot;, added &amp;quot;Using the Discord Server&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan:'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||5&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Diplomacy&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''[[Player alliances|Alliances]]'''||N/A&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||[[Alpha]], [[Anker Imperium]], [[Arcforge Industries]], [[Band of Outlaws]], [[Black Code]], [[The Blood Reavers]], [[Casually Addicted]], [[Devil's Decendants]], [[Dreadmob]], [[Fate]], [[Jar of Cries]], [[Outlanders]], [[Pegasus Industries]], [[Pestilence]], [[Space Fleet Sailors]], [[The Anarchists]], [[The Order]], [[TNT]], [[WAR - We Are Real]], [[Zephyrs]], &amp;amp; any rogue pirates&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
== Quick Facts ==&lt;br /&gt;
Freelance Operatives of XenoCow (F.O.X. or FOX) is a (nearly) apolitical union of players designed to provide organization, resources, and community for players who like to play alone or outside of company/faction operations. Members may be members of both F.O.X. and another company or faction&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt; simultaneously. Members will have access to a discord server where they may:&lt;br /&gt;
*Post jobs&lt;br /&gt;
*View and accept jobs&lt;br /&gt;
*Post and maintain a CV that can be rated&lt;br /&gt;
*Team up with other players to be able to tackle larger jobs&lt;br /&gt;
*Post advertisements&lt;br /&gt;
*Worship Pip/Bob/Clang&lt;br /&gt;
&amp;lt;sup&amp;gt;†&amp;lt;/sup&amp;gt;See [https://wiki.starbasegame.com/index.php?title=F.O.X.&amp;amp;action=submit#Rules Rules]for exceptions.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Tasks can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find tasks and meet clients, but they can request the help of fellow F.O.X. members when the task is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a task done, the task board is be the best place to post your tasks. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the task. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
===#1===&lt;br /&gt;
Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
===#2===&lt;br /&gt;
Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
===#3===&lt;br /&gt;
Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
===#4===&lt;br /&gt;
Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please without worries about bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the tasks that need doing.&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
	 To get started, follow this link: https://discord.gg/NqJWtZb to join the server. Once you arrive, you will be greeted by the #welcome channel. From there, proceed to the #roles channel to give yourself a role or two to have access to the rest of the server.&lt;br /&gt;
&lt;br /&gt;
== Using the Discord Server ==&lt;br /&gt;
This section describes the function and use of the channels in the Discord server.&lt;br /&gt;
===Information===&lt;br /&gt;
====#welcome====&lt;br /&gt;
This is where new members first join. It displays some basic information on how the server works and where to go to get started.&lt;br /&gt;
====#roles====&lt;br /&gt;
This channel allows members to assign themselves roles to access the rest of the server and to show what kind of member they are. There are four options:&lt;br /&gt;
* Guest: The starting role which only has access to the #welcome, #roles, #rules, and #most-wanted channels.&lt;br /&gt;
* Employer: Employers have access to the rest of the server except the #advertisements channel. They may post in #task-listings.&lt;br /&gt;
* Freelance: This role gives access to the rest of the server except the #advertisements channel. They may not post in #task-listings.&lt;br /&gt;
* Advertiser: This role is the most limited. Advertisers may post in #advertisements and the general channels, but not in the task-related channels.&lt;br /&gt;
====#announcements====&lt;br /&gt;
Check this channel for updates on the what's new in F.O.X. and for event announcements.&lt;br /&gt;
====#most-wanted====&lt;br /&gt;
This will be a list of the worst pirates and the rewards for destroying them and their ships. Members may propose players to XenoCow or other officers to add to the list. Any members may add to the reward pools as well to incentivize other players to help in the hunt.&lt;br /&gt;
&lt;br /&gt;
===Tasks===&lt;br /&gt;
====#task-listings====&lt;br /&gt;
The task listings channel is the heart of F.O.X.. This is where employers list tasks and where freelancers find tasks. Any messages that are not task descriptions or complete will be deleted to make finding jobs easier and the channel less cluttered.&lt;br /&gt;
There are an infinite number of tasks that could need doing. However, here is a list of templates for common tasks:&lt;br /&gt;
=====Cargo=====&lt;br /&gt;
Cargo tasks are very similar to towing tasks, except that they usually deal with the movement of smaller goods such as ores or devices. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Cargo :truck:&amp;lt;br&amp;gt;**Items:** Items&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Cargo Size:** Cargo_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Escort=====&lt;br /&gt;
Escort tasks involve protecting a ship or endo on his/her journey through space. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Escort :shield:&amp;lt;br&amp;gt;**Duration:** DURATION&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Locations:** STATION_NAMES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Refuel/Rescue=====&lt;br /&gt;
These kinds of tasks involve bringing fuel and supplies to endos in some sort of emergency. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Refuel/Rescue :sos:&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** LOCATION&amp;lt;br&amp;gt;**Beacon Frequency:** FREQUENCY&amp;lt;br&amp;gt;**Resources Needed:** RESOURCES&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Repair=====&lt;br /&gt;
The repair task involves fixing damaged ships and stations after combat or accident. The current average rate is: '''0'''.&lt;br /&gt;
 **Task Type:** Repair :hammer_and_wrench:&amp;lt;br&amp;gt;**Repair object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Needed Knowledge:** KNOWLEDGE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Target Decommission=====&lt;br /&gt;
This task typically involves destroying a target endo and/or his or her ship. The current average rate for this job is: '''2,000,000'''.&lt;br /&gt;
 **Task Type:** Target Decommission :dagger:&amp;lt;br&amp;gt;**Target:** TARGET_NAME (Optional)&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Last Known Location:** STATION_NAME&amp;lt;br&amp;gt;**Active Time:** TARGET_ONLINE_TIME&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
=====Towing=====&lt;br /&gt;
This task involves moving ships, debris, or even station parts around the universe. The current average rate for this job is: '''0'''.&lt;br /&gt;
 **Task Type:** Towing :construction_site:&amp;lt;br&amp;gt;**Object:** OBJECT&amp;lt;br&amp;gt;**Pay:** PAYMENT&amp;lt;br&amp;gt;**Danger:** High/Medium/Low&amp;lt;br&amp;gt;**Location:** STATION_NAME&amp;lt;br&amp;gt;**Object Size:** OBJECT_SIZE&amp;lt;br&amp;gt;**Details:** OTHER_DETAILS&amp;lt;br&amp;gt;**Deadline:** DEADLINE (Optional)&lt;br /&gt;
====#task-detail-discussion====&lt;br /&gt;
This channel is intended for public discussions about the details of the various tasks that are posted.&lt;br /&gt;
====#member-reviews====&lt;br /&gt;
This channel is where you may post your bio once and then edit it later. Also, you may rate other players whom you've dealt with with either a positive, negative, or neutral emoji reaction. Below is an example of a post:&lt;br /&gt;
 **Personal Statement:** If you need a job done well, I'm your endo!&amp;lt;br&amp;gt;**Prefered Job Types:** Pirate hunting, VIP Escort, Repair&amp;lt;br&amp;gt;**Ship(s) owned:** Heavy fighter with 4x rail guns and small cargo space&amp;lt;br&amp;gt;**What people are saying about me:** &amp;quot;Very professional and dedicated to the job.&amp;quot; -Jimmy, &amp;quot;He smells nice&amp;quot; -Bert, &amp;quot;Who's XenoCow again?&amp;quot; -Sally&lt;br /&gt;
====#task-help====&lt;br /&gt;
In this channel members may ask others for help with tasks. How members decide to split up the proceeds is up to them.&lt;br /&gt;
====#general====&lt;br /&gt;
The general channel may be used for general discussion about tasks and how to accomplish them.&lt;br /&gt;
====#task-stories====&lt;br /&gt;
This channel is for sharing of amusing, scary, or otherwise interesting tales of one's work.&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
====#advertisements====&lt;br /&gt;
Here is where advertisers may post their advertisements about faction recruiting, product sales, or YOLOL chips. Please keep spam to a minimum.&lt;br /&gt;
====#bob-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Bob.&lt;br /&gt;
====#pip-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Pip.&lt;br /&gt;
====#clang-prayer-room====&lt;br /&gt;
This is a place to express and share your faith in Clang.&lt;br /&gt;
====#starbase-memes====&lt;br /&gt;
This is a channel for posting memes about Starbase and about Starbase only.&lt;br /&gt;
====#off-topic====&lt;br /&gt;
This channel is a free for all as long as it's polite and PG (maybe a little PG-13).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Battle version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Jobs&amp;diff=15523</id>
		<title>Jobs</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Jobs&amp;diff=15523"/>
		<updated>2020-05-31T10:12:13Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Removed unrelated link to &amp;quot;Aurogon Union 烛龙联盟&amp;quot; that was at the top of the page.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Otherlang2&lt;br /&gt;
|ru=Работа&lt;br /&gt;
|pl=Jobs:pl&lt;br /&gt;
|de=Jobs:de&lt;br /&gt;
|zh-cn=工作&lt;br /&gt;
|fr=Jobs:fr&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Summary ==&lt;br /&gt;
The universe offers varying opportunities for [[Endoskeleton|endoskeletons]] to build their careers and to acquire money to support their life in space.&amp;lt;br&amp;gt;&lt;br /&gt;
[[:Category:Entry level jobs|Entry level jobs]] are the most suitable for robots at the beginning of their careers as they do not require any prior licenses or equipment.&lt;br /&gt;
&lt;br /&gt;
== Entry level jobs ==&lt;br /&gt;
&lt;br /&gt;
=== [[Job: asteroid mining|Asteroid mining]] ===&lt;br /&gt;
{{#lsth:Job: asteroid mining|summary}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== [[Job: assembly|Assembly]] ===&lt;br /&gt;
{{#lsth:Job: assembly|summary}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== [[Job: salvage|Salvage]] ===&lt;br /&gt;
{{#lsth:Job: salvage|summary}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Other Jobs ===&lt;br /&gt;
Some possible future jobs mentioned by developers in the official Discord: &lt;br /&gt;
* Demolition&lt;br /&gt;
* Ship Repair&lt;br /&gt;
* Station Construction &lt;br /&gt;
* Trading &lt;br /&gt;
[[Category:Collection|Jobs]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Collection|Jobs]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=14642</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=14642"/>
		<updated>2020-05-26T02:50:56Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Member count adjusted&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||3&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Foreign Affairs&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''[[Player alliances|Alliances]]'''||N/A&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||[[Alpha]], [[Anker Imperium]], [[Arcforge Industries]], [[Band of Outlaws]], [[Black Code]], [[The Blood Reavers]], [[Casually Addicted]], [[Devil's Decendants]], [[Dreadmob]], [[Fate]], [[Jar of Cries]], [[Outlanders]], [[Pegasus Industries]], [[Pestilence]], [[Space Fleet Sailors]], [[The Anarchists]], [[The Order]], [[TNT]], [[WAR - We Are Real]], [[Zephyrs]], &amp;amp; any rogue pirates&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Jobs can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find jobs and meet clients, but they can request the help of fellow F.O.X. members when the job is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a job done, the job board is be the best place to post your jobs. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the job. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
&lt;br /&gt;
'''#1'''	Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
&lt;br /&gt;
'''#2'''	Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
&lt;br /&gt;
'''#3'''	Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
&lt;br /&gt;
'''#4'''	Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please without worries about bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the jobs that need doing.&lt;br /&gt;
&lt;br /&gt;
== How Can You Join? ==&lt;br /&gt;
	If all of that above looks like something that you can get behind, follow this link: https://discord.gg/NqJWtZb to see what F.O.X. is really about.&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Battle version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Player_factions&amp;diff=12963</id>
		<title>Player factions</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Player_factions&amp;diff=12963"/>
		<updated>2020-05-10T10:00:51Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Added F.O.X. faction to Mercenary group&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here is a list of player factions in Starbase. Please add your faction to the list and include a link to either your Starbase Wiki page or Discord server. &amp;lt;br&amp;gt;&lt;br /&gt;
For instructions on how to make your own faction page, check [[How to Create a Faction Page]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please add your faction to &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''only one category'''&amp;lt;/font&amp;gt; using a &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;silver&amp;lt;/font&amp;gt; font color or use double square brackets if your faction has a page on the wiki and ensure your faction is in the proper position to uphold &amp;lt;font color=&amp;quot;orangered&amp;quot;&amp;gt;'''alphabetical organization'''&amp;lt;/font&amp;gt;.&amp;lt;br&amp;gt; [[Player alliances]] should be added to a separate page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can find more detailed information about these factions in various community spreadsheets:&lt;br /&gt;
* [https://docs.google.com/spreadsheets/d/17XDzbc7Zde7EM2jdMOTYWp-3mZb-EPbGIK9zdPUVp6I/edit#gid=1492971814 Ovenmitt's and Neapolitan's]&lt;br /&gt;
* [https://docs.google.com/spreadsheets/d/1SVG5O8fYWA1hQ47RKg36nLyFHnFDPEfekd-iu10xSaE/edit#gid=1635166738 Volcano's]&lt;br /&gt;
&lt;br /&gt;
==Empire==&lt;br /&gt;
[[Empire]]&lt;br /&gt;
==Kingdom==&lt;br /&gt;
[[Kingdom]]&lt;br /&gt;
&lt;br /&gt;
==Multipurpose Factions ==&lt;br /&gt;
* [[Advanced Software &amp;amp; Technology Research Operations (ASTRO)]] [https://discord.gg/xYYK7mP Discord server]&lt;br /&gt;
* [[Alpha Legion Regime]]&lt;br /&gt;
* [[Arcturus Industries]]&lt;br /&gt;
* [[Argentavian Federation]] [https://discord.gg/gY66MqN Discord Server]&lt;br /&gt;
* [https://discord.gg/SPfSPA3 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Aurum Imperium Clan &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Avant Vanguard/ AVG]]&lt;br /&gt;
* [[Awoo]]&lt;br /&gt;
* [[The_British_Empire|The British Empire]]&lt;br /&gt;
* [[Byzantium]]&lt;br /&gt;
* [[Church of the Forge God]]&lt;br /&gt;
* [[Collective]]&lt;br /&gt;
* [https://discord.gg/VmFsJRh &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Cult of Clang &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Dark Star Imperium]]&lt;br /&gt;
* [https://discord.gg/qZkFJwg &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Driss&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[The Dragonian Lords]]&lt;br /&gt;
* [[DynaStar]] [https://discord.gg/5wKtz73 Discord Server]&lt;br /&gt;
* [[Federation]] [https://discord.gg/ehsMNa8 Discord server]&lt;br /&gt;
* [[The Final Order]] [https://discord.gg/d3ygZ6E Discord server]&lt;br /&gt;
* [https://discord.gg/j3UENxJ &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; The free United Nation &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/n3ExPUF &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; The First Order (T.F.O) &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/EAppD7Z &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Galactic Federation&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/b8uwCmB &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Gemini Outpost - Last Findings (GOLF) &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/G3RZcy2 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Havok Combat Systems &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/hpZMfvh &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; IDC - Ice Defense Corporation &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Imperium Ignis]] [https://discord.gg/jjXwgPE Discord Server]&lt;br /&gt;
* [https://discord.gg/jFeyBzR &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Imperium of Man&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/DmH5su2 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;International Space Legion Androids&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/r23zfTP&amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Interstellar Merchant Corporation (IMC)&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/veritas &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Legacy &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[LingCORP]]&lt;br /&gt;
* [https://discord.gg/SSU2SWu &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Luktar &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/jbEax9J &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Lykain Contracting &amp;amp; Dire Industries &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[MANN CO]] [https://discord.gg/XNG5chW Discord Server]&lt;br /&gt;
* [[The Midnight Order]]&lt;br /&gt;
* [https://discord.gg/PJkVbSF &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; MooNDust Inc. &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/2KqpTCx&amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Mutiny &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/Veqm9Zs &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Nemesis Sentinel Corporation&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[New_Federal_Republic|New Federal Republic]][https://discord.gg/XhmUVVu &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; (Discord link) &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/TAqXJ4h &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; The Nordic Countries Space Company &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[North star]]&lt;br /&gt;
* [[Number 6]]&lt;br /&gt;
* [[The Order]]&lt;br /&gt;
* [https://discord.gg/ruHcaSJ &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Order of the Sacred Oak &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/KAcpgsR &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The PAC&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Panem]] [https://discord.gg/MHPz6ww Discord Server]&lt;br /&gt;
* [[Phoenix Empire]] [https://discord.gg/3cHbdK4 Discord server]&lt;br /&gt;
* [https://discord.gg/eBHJCM2 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Phoenix Industries &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/nehPZCx &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Phantom Company &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Red Wood Industries]]&lt;br /&gt;
* [https://discord.gg/F6Ypese &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Ronin Industries &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/hc2SZpn &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; SkyRail Industries 天际轨道重工 &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Soyboys]] [https://discord.gg/RpYXqmK Discord Server]&lt;br /&gt;
* [https://www.discord.gg/n9kUvPJ &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Starsteel Industries &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Tactical Annihilation Corporation]] [https://discord.gg/PBmbWbj Discord Server]&lt;br /&gt;
* [https://discord.gg/CduUBpC &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Terran Conglomerate - TRC &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Tranklin_Raiders|Tranklin Raiders]] [https://discord.gg/586Mxdv Discord]&lt;br /&gt;
* [[Triquetra Engineering Company (TEC)]]&lt;br /&gt;
* [[Toha Heavy Industries]] [https://discord.gg/knxERrn Discord Server]&lt;br /&gt;
* [https://discord.gg/mG8XMw9 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; United Army of Engineers (U.A.E.) &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[United_Imperial_Arms_Corp|United Imperial Arms Corp]]&lt;br /&gt;
* [[Vultar Unity]]&lt;br /&gt;
* [[Wombat's Mining and Salvage]]&lt;br /&gt;
* [[WhaleMort]] [https://discord.gg/jxwGnQ5 Discord Server]&lt;br /&gt;
* [[Zeus_Autonomy|Zeus Autonomy]]&lt;br /&gt;
* [[D.O.S.S]]&lt;br /&gt;
* [[Blue Steel]]&lt;br /&gt;
* [[Liberty]]&lt;br /&gt;
* [[930 Incorporated]]&lt;br /&gt;
&lt;br /&gt;
==Trading Factions==&lt;br /&gt;
&lt;br /&gt;
* [https://www.discord.gg/hqxRCw7 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Capital of Capitalism &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/SquEsju &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Interstellar Inc.&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/WB2URjC &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Mortem Security &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/8u6uy4j &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Northstar Trading Company&amp;lt;/font&amp;gt;]&lt;br /&gt;
* &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;[[Spacemart|SPACEMART]]&amp;lt;/font&amp;gt;&lt;br /&gt;
* [[STAR Industries]]&lt;br /&gt;
* [https://www.discord.gg/8cE363n &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Stellyx Corp&amp;lt;/font&amp;gt; ]&lt;br /&gt;
&lt;br /&gt;
==Design and Building Companies==&lt;br /&gt;
* [https://discord.gg/ZfBH99W &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Absalom Industries&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/XCJJQWr &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Aegis Dynamics&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/y58ScrZ &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Asage Fleetworks&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/aKbapza &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Bobtilian Industries&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Delos Star Corps]]&lt;br /&gt;
* [[DURΛTΞCH]]&lt;br /&gt;
* [[GalacTech Shipyard]]&lt;br /&gt;
* [[MACHINI Corp]]&lt;br /&gt;
* [https://www.discord.gg/WCJtkYD &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Neko Conglomerate Fleetworks - NCF&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/BYJ4rP8 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Objective Driveyards - ODY&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/N4vwDCY &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Project ECH0 &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/YvWMVEq &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Quasar Systems &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/gwSuZtW &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;RC&amp;amp;B – Ruddy’s Construction and Burger Co.&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/uP2sT9S &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Seekers&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[SkyJak Industries]] [https://www.skyjak.xyz/ &amp;lt;font color=&amp;quot;silver&amp;gt;Website&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/8DejYGT &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;TEST Outfit&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/r5uCey3 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Two Man Squad&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Wavefront Hardened Circuitry]]&lt;br /&gt;
* [[Kreiker Industries]] [https://discord.gg/JEfU38d/ Discord]&lt;br /&gt;
&lt;br /&gt;
==Cargo/Transportation Companies==&lt;br /&gt;
* [[Artemis_Cargo_Corporation|Artemis Cargo Corporation]] [https://discord.gg/p4MD3FR &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Discord Link&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/8w7MXwd &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Egor Inc &amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
==YOLOL/Programming Communities==&lt;br /&gt;
&lt;br /&gt;
* [https://www.discord.gg/rmu6aCr &amp;lt;font color=&amp;quot;silver&amp;gt;Cylon - Collaborative YOLOL Learning Open Network&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [https://www.discord.gg/6rsbUU8 &amp;lt;font color=&amp;quot;silver&amp;gt;Glua.Team&amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
==Tech/Engineering Companies==&lt;br /&gt;
&lt;br /&gt;
* [https://www.discord.gg/ZHFzqf3 &amp;lt;font color=&amp;quot;silver&amp;gt;Advanced Computer Engineering and Science Research Foundation (ACES) &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/6rhxABk &amp;lt;font color=&amp;quot;silver&amp;gt;Advanced Defense System Initiative &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Archen Industries]] [https://discord.gg/XfTgGJB Discord]&lt;br /&gt;
* [[Critical Mass Industries]]&lt;br /&gt;
* [https://www.discord.gg/qdQUyqm &amp;lt;font color=&amp;quot;silver&amp;gt;The Machine&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/mBjx2GQ &amp;lt;font color=&amp;quot;silver&amp;gt;Okim's Workshop &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Paragon Technologies]]&lt;br /&gt;
* [https://www.discord.gg/TvXf6Wh &amp;lt;font color=&amp;quot;silver&amp;gt;TI Alloys&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/nJ328mP &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;United Mole Enterprise (UME) &amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
==Scrapping/Scavenging Companies==&lt;br /&gt;
* [https://www.discord.gg/ER6VvGE &amp;lt;font color=&amp;quot;silver&amp;gt;Orbital Salvage Corporation&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/Ny9E479 &amp;lt;font color=&amp;quot;silver&amp;gt;The Privateer Scavengers&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/KA6N6bf &amp;lt;font color=&amp;quot;silver&amp;gt;The Scavengers&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/PwcJ2NZ &amp;lt;font color=&amp;quot;silver&amp;gt;The Sundered Swarm&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/u4g2Tax &amp;lt;font color=&amp;quot;silver&amp;gt;Vulture Scrapping &amp;amp; Repairing Co.&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[The Wake]]&lt;br /&gt;
&lt;br /&gt;
==Mining Factions==&lt;br /&gt;
&lt;br /&gt;
* [[Aegis Mining Corporation]]&lt;br /&gt;
* [[Asteroid-Control-Team|Asteroid Control Team]]&lt;br /&gt;
* [https://www.discord.gg/frZPYua &amp;lt;font color=&amp;quot;silver&amp;gt;The Mining Guild&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/7Yftkph &amp;lt;font color=&amp;quot;silver&amp;gt;Order of Anfarc&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/TvgzXzN &amp;lt;font color=&amp;quot;silver&amp;gt;OreBase&amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
==Exploration Groups==&lt;br /&gt;
&lt;br /&gt;
* [https://discord.gg/yPQFXaf &amp;lt;font color=&amp;quot;silver&amp;gt;Eos Explorers Alliance&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/2QMPcTD &amp;lt;font color=&amp;quot;silver&amp;gt;Journeymen&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/7DP3E2T &amp;lt;font color=&amp;quot;silver&amp;gt;Starfleet 907&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/011SxZSwWNhviexZg &amp;lt;font color=&amp;quot;silver&amp;gt;Space Nomads&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Trailblazers]]&lt;br /&gt;
&lt;br /&gt;
==Other Specialized Factions==&lt;br /&gt;
&lt;br /&gt;
* [https://www.discord.gg/ezjfcY4 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Cardinal Guild&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/DweDswk &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Church of Bob&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/BysBaqq &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Database&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/y8f3aVc &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Dooting Assassin Coalition&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [[Dragon Bank]] [https://discord.gg/sW9n3na&amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Discord&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [https://www.discord.gg/hdwkavA &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Galactic News Network&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Historian Resolute Combined to Explore (H.R.C.E)]]&lt;br /&gt;
* [https://www.discord.gg/pZ2bK4j &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;IRSL - Interplanetary Racing Sports League&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/WzAeBDn &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Library&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[MMT]], [https://discord.gg/3ufNU4 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Discord&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/mTbRczc &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;OMEX Commission&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Paradise Development Company]]&lt;br /&gt;
* [https://www.discord.gg/SKyy22u &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Peacekeeping Force&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Save Our Ships|Save Our Ships (SOS)]]&lt;br /&gt;
* [https://www.discord.gg/5wWKn33 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Starbase Bountyhunter Association&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/MrHPqSS &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Starbase SCP Foundation&amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
==Pirate Factions==&lt;br /&gt;
* [[Alpha]]&lt;br /&gt;
* [https://www.discord.gg/3qCfMPu &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Anker Imperium&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://wiki.starbasegame.com/index.php/Arcforge_Industries &amp;lt;font color=&amp;quot;teal&amp;quot;&amp;gt;Arcforge Industries&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/z6wSBWK &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Band of Outlaws&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/aZD4cMS &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Black Code&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/FThDDWB &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Blood Reavers&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/ksMe9uV &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Casually Addicted&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [https://www.discord.gg/ApwSJGq &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Devil’s Descendants&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/FJnr7Fu &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Dreadmob&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/qcMHKhh &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Fate&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/ehHPaKf  &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Jar of Cries&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/dKbEV7G &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Outlanders&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/jXFNQre &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Pegasus Industries&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Pestilence]]&lt;br /&gt;
* [https://www.discord.gg/nrdF3jq &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Space Fleet Sailors&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/mk9xa3f &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Strohhutarmee&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[The Anarchists]]&lt;br /&gt;
* [[[[https://wiki.starbasegame.com/index.php/The_Order|The Order]]]]&lt;br /&gt;
* [https://www.discord.gg/vAhESnR &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;TNT&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/2cFmskX &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;WAR - We Are Real&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [https://www.discord.gg/WkuXN8q &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Zephyrs&amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
==Mercenary Groups==&lt;br /&gt;
* [[Cryptic Brotherhood]] [https://discord.gg/HYYF4sX Discord]&lt;br /&gt;
* [https://www.discord.gg/k2mw44X &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Green Suns SB&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/ecs2ttf  &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Groove &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[F.O.X.]] [https://discord.gg/NqJWtZb Discord]&lt;br /&gt;
* [https://www.discord.gg/yDePq7w  &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Havoc Star Division&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/RbgAFjn &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;H-EIST&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/AfSS5jP &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Mosque &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/x6BnwPF &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;MRVNS Mercenaries &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/rRWBMCb &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Project Hammerhead&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/TznZQX9 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Red Spear Operations (RSO)&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Revenant]] [https://discord.gg/zVCkKvB Discord]&lt;br /&gt;
* [https://discord.gg/kxydSRN &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Starbase Mercenaries (SM)&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/vyPPyhr &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Thos&amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
==Military Factions==&lt;br /&gt;
* [https://discord.gg/g5XdWzf &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; Blue Army&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [[Cyberdyne systems]]&lt;br /&gt;
* [https://www.discord.gg/BVfbqbw  &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Dark Army&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/4h5tjj9 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Federation of Stars&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[The Grey Legion]]&lt;br /&gt;
* [[Holy Chapter]]&lt;br /&gt;
* [https://www.discord.gg/JGRT3ZE &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;New Prussia&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/VE8dwS6 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Project Ironside&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [[Red Martian Axis]]&lt;br /&gt;
* [https://www.discord.gg/ExvNfp8  &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Todan Corporation&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [[United Nations Space Command]] [https://discord.gg/xTF8sCe Discord Server]]&lt;br /&gt;
&lt;br /&gt;
==Empire Allied Factions==&lt;br /&gt;
&lt;br /&gt;
* [https://www.discord.gg/q5zGKma &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Legacy of the Eternal Order (LEO)&amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
==Kingdom Allied Factions==&lt;br /&gt;
&lt;br /&gt;
* [https://www.discord.gg/T8QwWMk &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Fellowship of the Frog&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://discord.gg/zjRuCB4 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt; K-BOT &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/VMzqsnp &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Particle Research Laboratories&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/4hxk98Y &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;United Earth Space Corps (UESC)&amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
==Neutral Factions==&lt;br /&gt;
&lt;br /&gt;
* [https://www.discord.gg/bgZRdFy &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Adventurers Guild&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Arbiters' Ambition]]&lt;br /&gt;
* [https://www.discord.gg/PQ7CjGH &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;BlueStorm&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/NEFksV7 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Corporation 404&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/Y7AQ6RW &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;D.E.M. Dark Epoch Mafia&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/hyC3r86 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;DMD&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/UVDxCSm &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Earanthral&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/Sq4FMpS &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Event Horizon Syndicate&amp;lt;/font&amp;gt;] [http://event-horizon.site/event-horizon-syndicate/ Website]&lt;br /&gt;
* [https://www.discord.gg/b2AStyB &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Fenrir Star Alliance&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/YfrftxK &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The First Order&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/Hd9ymAN &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Great Space Expo&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Hediata ]]&lt;br /&gt;
* [https://www.discord.gg/QmY9TWH &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Iron Wolves&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [https://www.discord.gg/TK8YRaD &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Lack of Diplomacy&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/ZadRzbJ &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Lost Warriors&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [https://www.discord.gg/K4q3pfq &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Mjolnir Arms&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [https://www.discord.gg/cqsqjeg &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Orb&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/0rSSLXIfNaOfRU9u &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Orchestra&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Oz]]&lt;br /&gt;
* [https://www.discord.gg/MHEtHQQ &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Phoenix Alliance&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/dvZD3k9 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Reavers - Reaver Innovative Solutions&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Rising Sun Corporation]] [https://discordapp.com/invite/KQrbQMH Discord]&lt;br /&gt;
* [https://www.discord.gg/xAcrhRY &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Skywhale Industries 1703&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/2dDs43B &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Society&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/TH8fhGE &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Unknown&amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
==French Communities==&lt;br /&gt;
&lt;br /&gt;
* [https://www.discord.gg/Pfna5Fs &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;French-Navy&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Starbase FR]] [https://www.discord.gg/JbGGpYN Our Discord]&lt;br /&gt;
* [https://www.discord.gg/rqTVakP &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Union Galactique Terran&amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
==German Communities==&lt;br /&gt;
&lt;br /&gt;
* [https://www.discord.gg/EQBBNPd &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Call&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/5hpYSGt &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Softwerker &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/MhN2J2r &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Walhalla &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/QnwrMME &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;zer0³&amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Russian Communities==&lt;br /&gt;
&lt;br /&gt;
* [[Born in Madness Flame]] [https://discord.gg/ApwFYG4 Our Discord]&lt;br /&gt;
* [https://www.discord.gg/GRYAbfd &amp;lt;font color= &amp;quot;silver&amp;quot;&amp;gt;The Cobrastan Cult (TCC) &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/aHpP3Jg &amp;lt;font color= &amp;quot;silver&amp;quot;&amp;gt;Machine Scavengers &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/yEUQ5Y9 &amp;lt;font color= &amp;quot;silver&amp;quot;&amp;gt;RF – Russian Federation &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[StarbaseRU]] [https://www.discord.gg/mJVtk33 &amp;lt;font color= &amp;quot;silver&amp;quot;&amp;gt;Starbase RU &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Starbase CIS]] [https://discord.gg/GsvKpDp &amp;lt;font color=#4863A0&amp;gt;Our Discord&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [[Kurosawa]] [https://discord.gg/ddDFEHk &amp;lt;font color=#4863A0&amp;gt;Our Discord&amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
==Polish Communities==&lt;br /&gt;
&lt;br /&gt;
*  [[RoboCorp]] [https://discord.gg/wpjqf2y Discord]&lt;br /&gt;
&lt;br /&gt;
==Other Foreign Language Communitites==&lt;br /&gt;
&lt;br /&gt;
*  [https://www.discord.gg/ke7wMPn &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Allight Korea&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [https://www.discord.gg/XMRCYGE &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Aseveljet&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  太阳神人工智能文明共同体 / [[Helios]] / [http://wiki.starbasegame.com/index.php/Category:Helios_Artificial_Civilization_Community Helios Artificial Civilization Community] 【Discord】[https://discord.gg/gY66MqN Discord Server] 【QQ】[https://jq.qq.com/?_wv=1027&amp;amp;k=5lxmuDs QQ]&lt;br /&gt;
*  [https://discord.gg/dTZZR8e &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Hermash&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [https://www.discord.gg/GpwgnZy &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Muro Independents&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [https://www.discord.gg/FsdwsEQ &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Slavic Federation&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [[Space Latino Industry]]&lt;br /&gt;
*  [[Starbase Italia]] [https://discord.gg/wNGfRm3 Discord]&lt;br /&gt;
&lt;br /&gt;
==Gaming Communities==&lt;br /&gt;
&lt;br /&gt;
*  [http://www.discord.gg/RgMke5w &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Alehouse Gaming&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [https://www.discord.gg/CUeNSMk &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;CNCR&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [https://www.discord.gg/ExileGaming &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Exile Gaming&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [https://www.discord.gg/Dq4fZht &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Ghosts of the Revolution&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [https://www.discord.gg/sWKgjxW &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Misfit Army&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [https://www.discord.gg/gQ3XEb8 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;RARE® &amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [https://www.discord.gg/F8Pjnj2 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;UBGE&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [https://www.discord.gg/tfsJaSw &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Uganda&amp;lt;/font&amp;gt; ]&lt;br /&gt;
*  [https://www.discord.gg/hkcveVu &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Voodoo Shipping Company&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [http://www.discord.gg/vU9EJPz &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;=VX9= Gaming Community&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [https://www.discord.gg/Ka2KWQf &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Wolves Rangers&amp;lt;/font&amp;gt;]&lt;br /&gt;
*  [[Vie for the Void]] [https://discord.com/invite/4Z9r6FG Our Discord]&lt;br /&gt;
&lt;br /&gt;
==Other Factions And Communities==&lt;br /&gt;
&lt;br /&gt;
* [https://www.discord.gg/hQrHJ2Z &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;BORG &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/jQHE98k &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Communists In Space&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/TmZbKyX &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Computer&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/N9BThah &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Dusty Nuts Inc.&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [https://www.discordapp.com/invite/6ukm69s &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Expanse&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/kkFzRaK &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Facade&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [https://www.discord.gg/5xg9Pum &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;FDE (Found Dead Everywhere)&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/EfsdXG3 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Harbormen&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/FQjk9ty &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Join or Die&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/BVRspph &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Mechanicus&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [https://www.discord.gg/3tNVXjf &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Meme Defence Force&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/ehnDtcW &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Minutemen&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/xJyMcVr &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Nekro Virus&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/pK2nqd9 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;PHR &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/87yt6xx &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;SNV Normandy&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [https://www.discord.gg/PsecdPD &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Space Soviets&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/HsymfWc &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Spartans (Xooted Spartans)&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/3DcWPKS &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Starbase Science (SBS)&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/8AMW8tV &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Star Drifters&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/uHyyaM8 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;StarGoons&amp;lt;/font&amp;gt; ]&lt;br /&gt;
* [https://www.discord.gg/pdU6Md5 &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Tavern&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/J8CwkZj &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Teaspoons&amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/JqUNw2j &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;The Tinkers Federation &amp;lt;/font&amp;gt;]&lt;br /&gt;
* [https://www.discord.gg/K6U5MUF &amp;lt;font color=&amp;quot;silver&amp;quot;&amp;gt;Vultar Unity &amp;lt;/font&amp;gt;]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=12962</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=12962"/>
		<updated>2020-05-10T09:55:52Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Initial Post&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;infobox&amp;quot; style=&amp;quot;float: right; clear: right; margin: 0 0 1em 1em; width: 22em;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt;'''F.O.X.'''&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; font-size: 90%;&amp;quot; |[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot; text-align=&amp;quot;center&amp;quot;&amp;gt; Leadership Structure&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Founder'''||XenoCow&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;vertical-align: top; text-align: center;&amp;quot;&lt;br /&gt;
|'''Faction Type'''||Union of Individuals&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Faction Information&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Colors:'''||fox-red, gray, green&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Official Motto/Slogan'''||''Integrity, Honor, Freedom''&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Date of founding:'''||May 9, 2020&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Membership strength'''||1&lt;br /&gt;
|-&lt;br /&gt;
|'''Discord Link'''&lt;br /&gt;
|https://discord.gg/NqJWtZb&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;background: none; width: 22em; margin: 0 auto;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! colspan=&amp;quot;2&amp;quot; style=&amp;quot;background-color: #FFFFFF; font-size: 120%; text-align: center;&amp;quot; align=&amp;quot;center&amp;quot; | &amp;lt;span style=&amp;quot;color: #000000;&amp;quot;&amp;gt; Foreign Affairs&amp;lt;/span&amp;gt;&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''[[Player alliances|Alliances]]'''||N/A&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
|'''Enemies'''||[[Alpha]], [[Anker Imperium]], [[Arcforge Industries]], [[Band of Outlaws]], [[Black Code]], [[The Blood Reavers]], [[Casually Addicted]], [[Devil's Decendants]], [[Dreadmob]], [[Fate]], [[Jar of Cries]], [[Outlanders]], [[Pegasus Industries]], [[Pestilence]], [[Space Fleet Sailors]], [[The Anarchists]], [[The Order]], [[TNT]], [[WAR - We Are Real]], [[Zephyrs]], &amp;amp; any rogue pirates&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Freelance Operatives of XenoCow ==&lt;br /&gt;
	The universe can often be a hard place for a lone endo. However, some of the factions and companies that offer membership can be equally challenging due to the commitments required. What's an endo to do that wants to live free? Jobs can be hard to find, so we're here to make it easier. Not only can members of F.O.X. find jobs and meet clients, but they can request the help of fellow F.O.X. members when the job is too big for one endo alone.&lt;br /&gt;
&lt;br /&gt;
	Membership is not limited to freelance endos! If you want a job done, the job board is be the best place to post your jobs. Additionally, we have a dossier of members (employers and freelancers) that let you find the right endo for the job. If you end up being rated too low, maybe it's time to ask for some help or to put on a smile for the clients.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
	There are not many rules to be in this organization. Endos may even be a member of a faction (with some exceptions) and also a member of F.O.X..&lt;br /&gt;
&lt;br /&gt;
'''#1'''	Don't be a pirate. The only organizations that F.O.X. members may not be concurrently affiliated with are ones that practice piracy. Exceptions may be made if the organization is at war with another and condones privateering. ''However'', members may not be privateers either.&lt;br /&gt;
&lt;br /&gt;
'''#2'''	Don't let pirates get away. If during your adventures or jobs you encounter pirates, you must do your best to destroy them completely. The only exception to this rule comes if fighting them puts your client's mission at greater risk or if the odds are stacked greatly against you.&lt;br /&gt;
&lt;br /&gt;
'''#3'''	Follow the motto. Act with integrity, honor, and retain your freedom in all that you do.&lt;br /&gt;
&lt;br /&gt;
'''#4'''	Respect each other. Sometimes, especially during times of war, endos might be hired to work for both sides of a conflict. If that is the case, fight for your client, but when the fighting stops you may not hold any grudges against the fellow F.O.X. members whom you fought.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
	F.O.X.'s main goal is to create a universe where endos are free to live as they please without worries about bandits. Secondly, we strive to help the endos that might be having a tough time finding good work find something meaningful to do. Thirdly, we wish to set the bar for what quality service looks like. F.O.X. should become synonymous with freelancer as we work to fill the jobs that need doing.&lt;br /&gt;
&lt;br /&gt;
== How Can You Join? ==&lt;br /&gt;
	If all of that above looks like something that you can get behind, follow this link: https://discord.gg/NqJWtZb to see what F.O.X. is really about.&lt;br /&gt;
== Art ==&lt;br /&gt;
Formal emblem of the Freelance Operatives of XenoCow:&lt;br /&gt;
[[File:FOX Emblem1.png|up|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Battle version of the emblem:&lt;br /&gt;
[[File:FOXLogo1BDU.png|up|250px]]&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=File:FOXLogo1BDU.png&amp;diff=12953</id>
		<title>File:FOXLogo1BDU.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=File:FOXLogo1BDU.png&amp;diff=12953"/>
		<updated>2020-05-09T23:34:16Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The original emblem of F.O.X. but in gray.&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=File:FOX_Emblem1.png&amp;diff=12927</id>
		<title>File:FOX Emblem1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=File:FOX_Emblem1.png&amp;diff=12927"/>
		<updated>2020-05-09T10:22:50Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The original emblem of the members of F.O.X.. Created by XenoCow.&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=12925</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=12925"/>
		<updated>2020-05-09T08:54:49Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Basic placeholder format&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== What Are We? ==&lt;br /&gt;
Placeholder beans.&lt;br /&gt;
&lt;br /&gt;
== Rules ==&lt;br /&gt;
Placeholder beans.&lt;br /&gt;
&lt;br /&gt;
== Goals ==&lt;br /&gt;
Placeholder beans.&lt;br /&gt;
&lt;br /&gt;
== How Can You Join? ==&lt;br /&gt;
Placeholder beans.&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=12924</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=12924"/>
		<updated>2020-05-09T08:49:22Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;p&amp;gt;Hello Eos!&amp;lt;/p&amp;gt;&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
	<entry>
		<id>https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=12923</id>
		<title>Freelance Operatives of XenoCow</title>
		<link rel="alternate" type="text/html" href="https://wiki.starbasegame.com/index.php?title=Freelance_Operatives_of_XenoCow&amp;diff=12923"/>
		<updated>2020-05-09T08:48:25Z</updated>

		<summary type="html">&lt;p&gt;XenoCow: Created page with &amp;quot;Hello Eos!&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello Eos!&lt;/div&gt;</summary>
		<author><name>XenoCow</name></author>
	</entry>
</feed>