Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

hello I would like to know if it is possible to ensure that a keyEvent for example remains activated for several seconds before cutting itself with a keyRelease. because I manage to make it last indefinitely be to make it activate once but not let it activate for a certain precise time.thanks for the help

 

public class macro1 {
 
 
	
	@SubscribeEvent
	public void KeyDown(InputEvent.KeyInputEvent e) throws AWTException, Throwable{
	
		
		EntityPlayer player = Minecraft.getMinecraft().player;
			if(Keyboard.isKeyDown(Keyboard.KEY_NUMPAD1)) {
				player.sendMessage(new TextComponentTranslation("eeee"));	
			
				Robot robot = null;
				try {
					robot = new Robot();
					
					robot.setAutoDelay(40);
				    robot.setAutoWaitForIdle(true);
				    
				    robot.delay(4);
				    robot.mousePress(KeyEvent.BUTTON1_MASK);
				    
				    robot.delay(40);
				    robot.mouseRelease(KeyEvent.BUTTON1_MASK);
				    
				    robot.delay(10);
				    robot.keyPress(KeyEvent.VK_W);
				    
				    robot.delay(500);
				    robot.keyRelease(KeyEvent.VK_W);
				    
					
					
	        
				}catch (AWTException v){
					v.printStackTrace();
					
				}
 
				
				}
	    
	}
	
	    
}

 

Guest
This topic is now closed to further replies.

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.