Advertisement
Olivki

gud chode ok

Feb 6th, 2013
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.36 KB | None | 0 0
  1. package se.proxus.mods.list;
  2.  
  3. import net.minecraft.src.Block;
  4. import net.minecraft.src.EntityPlayer;
  5. import net.minecraft.src.MathHelper;
  6. import net.minecraft.src.Reflector;
  7. import se.proxus.events.*;
  8. import se.proxus.events.player.EventUpdate;
  9. import se.proxus.events.render.*;
  10. import se.proxus.mods.*;
  11. import se.proxus.utils.*;
  12.  
  13. public class ModTest extends BaseMod {
  14.  
  15.     public ModTest() {
  16.         super("Test", new ModInfo(new String[]{"Used to test mods while in debug."},
  17.                 "Oliver", "NONE", true), ModType.PLAYER, false);
  18.         getInfo().setMod(this);
  19.         getConfig().loadConfig();
  20.         getInfo().setArrayName(getType().getColor() + getName());
  21.     }
  22.  
  23.     @Override
  24.     public void initMod() {
  25.         this.getEvent().registerEvent(EventUpdate.class);
  26.     }
  27.  
  28.     @Override
  29.     public void onEnabled() {
  30.  
  31.     }
  32.  
  33.     @Override
  34.     public void onDisabled() {
  35.        
  36.     }
  37.  
  38.     @Override
  39.     public void onEvent(Event event) {
  40.         if(getState()) {
  41.             if(event instanceof EventUpdate) {
  42.                 if(Wrapper.getMouseOver() != null) {
  43.                     int id = Wrapper.getWorld().getBlockId(Wrapper.getMouseOver().blockX, Wrapper.getMouseOver().blockY,
  44.                             Wrapper.getMouseOver().blockZ);
  45.                    
  46.                     if(id == Block.music.blockID) {
  47.                         Wrapper.getMinecraft().clickMouse(1);
  48.                        
  49.                         for(int clicks = 0; clicks < 100; clicks++) {
  50.                             Wrapper.getMinecraft().clickMouse(1);
  51.                         }
  52.                     }
  53.                 }
  54.             }
  55.         }
  56.     }
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement