Advertisement
Guest User

Untitled

a guest
Jul 4th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. Before formatting:
  2.  
  3. <?xml version = "1.0" encoding = "UTF-8" ?>
  4. <Computer id="advExamplePC"
  5. name="Extension Example PC"
  6. ip="167.194.132.7"
  7. security="2"
  8. allowsDefaultBootModule="false"
  9. icon="chip"
  10. type="1" >
  11. <!--for the type flag: 1= corporate, 2 = Home, 3 = server 4 = empty
  12. you can also use the word "empty" to make sure it launches without generating junk files and IRC.
  13. -->
  14.  
  15. <!-- icon: not including this uses the default set by security level:
  16. laptop
  17. chip
  18. kellis
  19. tablet
  20. ePhone
  21. ePhone2
  22.  
  23. LABYRINTHS ONLY:
  24. Psylance
  25. PacificAir
  26. Alchemist
  27. DLCLaptop
  28. DLCPC1
  29. DLCPC2
  30. DLCServer
  31. -->
  32.  
  33. <!--
  34. Security is a number from 0 to 5 that represents how hard it is to hack
  35. From 1-4 it will need that many ports to open, 4 and above will automatically
  36. add other security to scale it up easily, you can overwrite specifics below (recommended)
  37.  
  38. AllowsDefaultBootModule is default to true and means that when you connect to a node
  39. it will automatically launch it's program (the last daemon defined in this file) and
  40. put it up on the display module.
  41. Because this example computer shows off a lot of stuff, I've set this to false here.
  42. -->
  43.  
  44. <!-- Accounts -->
  45. <adminPass pass="password" />
  46.  
  47. <account username="Matt" password="testpass" type="ALL" />
  48. <!-- Adds an account to this computer.
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56. After formatting:
  57.  
  58.  
  59. Computer nodes:
  60.  
  61. <Computer id="advExamplePC"
  62. name="Extension Example PC"
  63. ip="167.194.132.7"
  64. security="2"
  65. allowsDefaultBootModule="false"
  66. icon="chip"
  67. type="1" >
  68.  
  69. Note that "type" uses numbers to determine what the computer will contain.
  70. Possible values are: 1= corporate, 2 = Home, 3 = server 4 = empty
  71.  
  72. Icon is used to determine the icon that will appear in-game, and the possible values are:
  73.  
  74. laptop
  75. chip
  76. kellis
  77. tablet
  78. ePhone
  79. ePhone2
  80.  
  81. LABYRINTHS ONLY:
  82. Psylance
  83. PacificAir
  84. Alchemist
  85. DLCLaptop
  86. DLCPC1
  87. DLCPC2
  88. DLCServer
  89.  
  90. Security is a number from 0 to 5 that represents how hard it is to hack
  91. From 1-4 it will need that many ports to open, 4 and above will automatically
  92. add other security to scale it up easily, you can overwrite specifics below (recommended)
  93.  
  94. AllowsDefaultBootModule is default to true and means that when you connect to a node
  95. it will automatically launch it's program (the last daemon defined in the file) and
  96. put it up on the display.
  97.  
  98.  
  99. The admin account is defined in code as this:
  100. <adminPass pass="password" />
  101.  
  102. Normal accounts are defined like this:
  103. <account username="Matt" password="testpass" type="ALL" />
  104. <!-- Adds an account to this computer.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement