Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

how to code a minecraft plugin

public class Main extends JavaPlugin {

	@Override
    public static void onEnable() {
    	getLogger.info("Plugin Enabled");
    }
  
  	@Override
  	public static void onDisable() {
     	getLogger.info("Plugin Disabled");
    }

}
Comment

HOW TO CODE WORKING PLUGIN IN MINECRAFT

#you need install minecraft development plugin in your IDE

import org.bukkit.plugin.java.JavaPlugin;

public class Main extends JavaPlugin {

	@Override
    public static void onEnable() {
    	getLogger().info("Plugin Enabled");
    }
  
  	@Override
  	public static void onDisable() {
     	getLogger().info("Plugin Disabled");
    }

}
Comment

PREVIOUS NEXT
Code Example
Java :: oxygen cylinder management program in java 
Java :: ternario java 
Java :: java 2d array previous object 
Java :: final private vs private final 
Java :: lcd initialize arduino 
Java :: jsp multipart/form-data submition 
Java :: set length java 
Java :: facebook share android Studio 
Java :: how to get data from array list to set java 
Java :: public static void main(String args[]) { level input=new level(System.in); FirstPractice obj1=new FirstPractice(); obj1.loosing(1000); } 
Java :: aggregationoperation multi match 
Java :: string.equals 
Java :: Cloudinary image Transformation in Java 
Java :: how to find all apps on android device using java 
Java :: ldap java connection 
Java :: java webelement how to double click 
Java :: java load config file 
Java :: https://www.baeldung.com/java-stream-findfirst-vs-findany 
Java :: conky cpu temperature 
Java :: multi threading callable 
Java :: android edittext with icon 
Java :: how to read returned arraylist from another class method 
Java :: Make device not run on emulator or rooted device 
Java :: Based on the method exampleMethod, what is the return type of the method? 
Java :: reset a jTable without deleting rows 
Java :: What are the design patterns involved in JDBC architecture? 
Java :: jframe open another frame using button actionlistener 
Java :: conditional statement problems in java 
Java :: how to extract value from payload in java 
Java :: make the array stop in java 
ADD CONTENT
Topic
Content
Source link
Name
1+1 =