Difference between revisions of "SystemNames"

From Vendetta Lua
Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
'''Description:'''<br>
 
'''Description:'''<br>
 
Table to translate systemid's into system names and back. Note that the "ID to name" translation returns names with capital letters, but the "name to ID" translation only works with all lower-case names.
 
Table to translate systemid's into system names and back. Note that the "ID to name" translation returns names with capital letters, but the "name to ID" translation only works with all lower-case names.
\nNumerical Order: (1 to 30)  
+
<br>Numerical Order: (1 to 30)  
 
<source lang="text">
 
<source lang="text">
Sol II
+
[1] Sol II
Betheshee
+
[2] Betheshee
Geira Rutilus
+
[3] Geira Rutilus
Deneb
+
[4] Deneb
Eo
+
[5] Eo
Cantus
+
[6] Cantus
Metana
+
[7] Metana
Setalli Shinas
+
[8] Setalli Shinas
Itan
+
[9] Itan
Pherona
+
[10] Pherona
Artana Aquilus
+
[11] Artana Aquilus
Divinia
+
[12] Divinia
Jallik
+
[13] Jallik
Edras
+
[14] Edras
Verasi
+
[15] Verasi
Pelatus
+
[16] Pelatus
Bractus
+
[17] Bractus
Nyrius
+
[18] Nyrius
Dau
+
[19] Dau
Sedina
+
[20] Sedina
Azek
+
[21] Azek
Odia
+
[22] Odia
Latos
+
[23] Latos
Arta Caelestis
+
[24] Arta Caelestis
Ukari
+
[25] Ukari
Helios
+
[26] Helios
Initros
+
[27] Initros
Pyronis
+
[28] Pyronis
Rhamus
+
[29] Rhamus
Dantia
+
[30] Dantia
 
</source>
 
</source>
  

Latest revision as of 00:51, 10 February 2014

Description:
Table to translate systemid's into system names and back. Note that the "ID to name" translation returns names with capital letters, but the "name to ID" translation only works with all lower-case names.
Numerical Order: (1 to 30)

[1] Sol II
[2] Betheshee
[3] Geira Rutilus
[4] Deneb
[5] Eo
[6] Cantus
[7] Metana
[8] Setalli Shinas
[9] Itan
[10] Pherona
[11] Artana Aquilus
[12] Divinia
[13] Jallik
[14] Edras
[15] Verasi
[16] Pelatus
[17] Bractus
[18] Nyrius
[19] Dau
[20] Sedina
[21] Azek
[22] Odia
[23] Latos
[24] Arta Caelestis
[25] Ukari
[26] Helios
[27] Initros
[28] Pyronis
[29] Rhamus
[30] Dantia

Example

print(SystemNames[16]) -- Prints the name of the system with ID 16, "Pelatus"
print(SystemNames["pelatus"]) -- Prints 16
print(SystemNames["Pelatus"]) -- Prints "nil" (note the capital P)