Created
March 2, 2014 12:21
-
-
Save anonymous/9305785 to your computer and use it in GitHub Desktop.
Display chat message
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@SubscribeEvent | |
public void onItemUse(UseHoeEvent event){ | |
double x = event.entityPlayer.posX ; | |
double y = event.entityPlayer.posY; | |
double z = event.entityPlayer.posZ; | |
for(int i = 0; i <= 30; i++){ | |
event.entityPlayer.worldObj.spawnParticle("portal", x,y,z, 1D, 1D,1D); | |
} | |
event.entityPlayer.addChatMessage("Particles spawned!"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment