Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. To upload mods to your server, you will have 2 options, to either add the mod to a newly generated world, or to add the mod to an esisting world. First, I will explain how to add the mods to a world that has not yet been geneareted. After, I will explain how to add mods to a preexisting world.
  2.  
  3. To add mods to a new world is much simpler than adding mods to a preexisting world, simply follow the steps below.
  4.  
  5. *Note: This will need to be done when there is no world with the name of the world in the configuration editor.*
  6. 1. Open up your configuration editor.
  7. 2. Find the section that says mods.
  8. 3. Type <unsignedLong>00000000000000000</unsignedLong> but replace 000000000000000 with your mod ID, which can be found as the last part of the mod URL.
  9. 4. Simply click save and start the server.
  10.  
  11. To add mods to a preexisting world, you will need to do the previous to add all the mods to the mods section in the configuration files.
  12.  
  13. *Note: Only do this once you have added all the mod IDs you want to the configuration files*
  14. 1. Open up the file manager.
  15. 2. Open the saves folder.
  16. 3. Find the folder with the name of the world you want to add the mods to, open it.
  17. 4. Once inside the file, located the sandbox.sbc file.
  18. 5. Click edit the sandbox.sbc file.
  19. 6. In the sandbox.sbc file, locate the location that says <Mods/>
  20. 7. Replace <Mods/> with
  21. <Mods>
  22. <ModItem>
  23. <Name>Mod ID.sbm</Name>
  24. <PublishedFileId>Mod ID</PublishedFileId>
  25. </ModItem>
  26. <ModItem>
  27. </Mods>
  28.  
  29. 8. In the location that says Mod ID, replace it with your mods ID
  30. 9. If you want to add multiple mods, you will need to add more
  31. <ModItem>
  32. <Name>Mod ID.sbm</Name>
  33. <PublishedFileId>Mod ID</PublishedFileId>
  34. </ModItem>
  35. to the sandbox.sbc, the following will be an example of adding 3 mods.
  36.  
  37. Example:
  38.  
  39. <Mods>
  40. <ModItem>
  41. <Name>Mod ID.sbm</Name>
  42. <PublishedFileId>Mod ID</PublishedFileId>
  43. </ModItem>
  44. <ModItem>
  45. <Name>Mod ID.sbm</Name>
  46. <PublishedFileId>Mod ID</PublishedFileId>
  47. </ModItem>
  48. <ModItem>
  49. <ModItem>
  50. <Name>Mod ID.sbm</Name>
  51. <PublishedFileId>Mod ID</PublishedFileId>
  52. </ModItem>
  53. <ModItem>
  54. </Mods>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement