Package com.massivecraft.mcore.event

Examples of com.massivecraft.mcore.event.MCorePlayerPSTeleportEvent


    else
    {
      // Without delay AKA "now"/"at once"
     
      // Run event
      MCorePlayerPSTeleportEvent event = new MCorePlayerPSTeleportEvent(teleporteeId, Mixin.getSenderPs(teleporteeId), to, desc);
      event.run();
      if (event.isCancelled()) return;
      if (event.getTo() == null) return;
      to = event.getTo();
      desc = event.getDesc();
     
      if (desc != null)
      {
        Mixin.msg(teleporteeId, "<i>Teleporting to <h>"+desc+"<i>.");
      }
View Full Code Here

TOP

Related Classes of com.massivecraft.mcore.event.MCorePlayerPSTeleportEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.