Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.minecraft.src;
- import net.minecraft.client.Minecraft;
- import dan200.computer.api.IComputerAccess;
- import dan200.computer.api.IPeripheral;
- public class TileEntityTest extends TileEntity implements IPeripheral{
- public Minecraft mcc = ModLoader.getMinecraftInstance();
- public boolean canAttachToSide(int side)
- {
- return true;
- }
- public String getType()
- {
- return "casblock";
- }
- public String[] getMethodNames()
- {
- String[] methods = { "getstring" };
- return methods;
- }
- public Object[] callMethod(IComputerAccess arg0, int arg1, Object[] arg2)
- throws Exception
- {
- if (arg1 == 0)
- {
- return new Object[] { "This is a CC Test Mod!" };
- }
- else {
- return new Object[] { "Dieses Argument kenne ich nicht!" };
- }
- }
- @Override
- public void attach(IComputerAccess computer, String computerSide) {
- mcc.thePlayer.sendChatMessage("Addet to " + computer.getID() + " on side " + computerSide);
- computer.mountFixedDir("rom/apis/testmod", "mods/ModTets/casmods/mod_tets/code.lua", true);
- }
- @Override
- public void detach(IComputerAccess computer) {
- computer.unmount("rom/apis/testmod");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement