commit | aca9894e76d7d083895e1b3a86d05c775a3a7885 | [log] [download] |
---|---|---|
author | Wuerfel_21 <nunuu@gmx.net> | Tue Jun 17 15:20:23 2014 +0200 |
committer | Wuerfel_21 <nunuu@gmx.net> | Tue Jun 17 15:20:23 2014 +0200 |
tree | 9c2e0ce8cf2e7f89a53f845415e2da59f702dd6b | |
parent | 8ca7306f3455deaabcaf94c3eb21c737a5da0fef [diff] |
fixed random stuff well, title states. and there is some random binary for you: 11000011 01011101 10101110 11001111 00100011 00110110 01011000 01110101 11101111 11010100 11100101 10010011 00011001 11100101 10000101 10100000 11011001 01110110 10000111 00111000 00010000 10011001 10100111 10111100 10000101 00010000 01010010 10111101 10011101 00010101 10010001 00001101 10110100 10101111 00110001 11010101 01011010 11000000 00000100 10101011 01011111 11001111
OpenComputers is a Minecraft mod that adds programmable computers and robots to the game. The built-in computer implementation uses Lua 5.2 and is fully persistent. This means programs will continue running across reloads. For more information, please see the wiki. Feel invited to visit the community forums or drop by in the IRC channel #oc on esper.net.
A few useful links:
###Experimental Builds You can find experimental builds on the build server. Expect these to be generally more unstable than builds marked as releases. Use these at your own risk, but - when using the latest one - please do report bugs you encounter using them. Thanks!
This mod is licensed under the MIT license. All assets are public domain, unless otherwise stated; all are free to be distributed as long as the license / source credits are kept. This means you can use this mod in any mod pack as you please. I'd be happy to hear about you using it, though, just out of curiosity.
###Assets and Localizations
text
or sides
) would help a lot. Thanks!###Bug fixes, features and scripts
To use the API in your own mod, either get the API JAR from the build server, or if you're using gradle, add a dependency to the maven repo:
repositories { maven { url = "http://maven.cil.li/" } } dependencies { compile group: 'li.cil.oc', name: 'OpenComputers', version: 'MC1.6.4-1.2.3.280', classifier: 'api' }
Adjust the version number accordingly to the version you'd like to build against.
To run the mod in your development environment, download the deobf
JAR from the build server and drop it into your dev env's eclipse/mods
folder.
Alternatively, leave out the api
classifier and you can build against the deobf JAR directly. This way you don't have to add it to your mods folder, but you will have to add -Dfml.coreMods.load=li.cil.oc.common.launch.TransformerLoader
to the VM options in your run configuration.
If you have any questions, please do not hesitate to ask, either in the forums or in the IRC!
Want to tinker with the mod itself? Here is how - for IntelliJ IDEA users. For eclipse I assume the process will be similar.
Important
Clone the repository, then in it rungradlew setupDecompWorkspace
to setup the workspace, including assets and such, thengradlew idea
to create an IntellJ IDEA project.
Open the project and you will be asked to import the Gradle project (check your Event Log if you missed the pop-up). Do so. This will configure additionally referenced libraries - at this point CodeChickenLib and ForgeMultipart. Since CCL will download stuff again and you'll get conflicts otherwise, go into the project settings and mark CCL and FMP as “provided” (instead of the default, “compile”).