Okay, so I'm making a Minecraft plugin, and I have 2 lines of code with sender.Sendmessage
My question is, how do I make a delay between the two messages? I want it to send one message, then maybe 1-2 seconds later, send the other. (Keep in mind I'm new to coding)
Minecraft Plugin Coding Help? - 1
Darrien
Thread.sleep(x)
x is an integer in milliseconds (so 1000 is one second).
Next time, look it up in the API
http://docs.oracle.com/.../docs/api/
William