Package com.kellerkindt.scs.events

Examples of com.kellerkindt.scs.events.ShowCaseCreateEvent


          event.setMsgSuccessfully(Term.MESSAGE_SUCCESSFULL_ADDED_MEMBER.get());
          break;
         
        // create a new shop
        case CREATE:
          event   = new ShowCaseCreateEvent(player, shop);
          event.setMsgSuccessfully(Term.MESSAGE_SUCCESSFULL_CREATED.get());
          break;
         
        // deletes a shop
        case DESTROY:
View Full Code Here


     
     
    } else if (todo != null && todo.Type == Type.CREATE && shopTodo != null) {
      // create event
      shopTodo.setLocation(block.getLocation());
      event     = new ShowCaseCreateEvent(player, shopTodo);
      msgSuccess  = Term.MESSAGE_SUCCESSFULL_CREATED.get();
     
     
    } else if (todo != null) {
      scs.msgPlayer(player, Term.ERROR_NOT_A_SHOP.get());
View Full Code Here

TOP

Related Classes of com.kellerkindt.scs.events.ShowCaseCreateEvent

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.