Examples of registerMacro()


Examples of com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance.registerMacro()

       
      }
     
    }
   
    player.registerMacro(_macro);
  }

  private boolean checkSecurityOnCommand(L2MacroCmd cmd){
   
    //not more then 2x ;
View Full Code Here

Examples of l2p.gameserver.model.L2Player.registerMacro()

    if(_macro.descr.length() > 32)
    {
      activeChar.sendPacket(Msg.MACRO_DESCRIPTIONS_MAY_CONTAIN_UP_TO_32_CHARACTERS);
      return;
    }
    activeChar.registerMacro(_macro);
  }
}
View Full Code Here

Examples of lineage2.gameserver.model.Player.registerMacro()

    if (_macro.descr.length() > 32)
    {
      activeChar.sendPacket(Msg.MACRO_DESCRIPTIONS_MAY_CONTAIN_UP_TO_32_CHARACTERS);
      return;
    }
    activeChar.registerMacro(_macro);
  }
}
View Full Code Here

Examples of net.sf.l2j.gameserver.model.actor.instance.L2PcInstance.registerMacro()

    {
      //Macro descriptions may contain up to 32 characters.
      player.sendPacket(new SystemMessage(SystemMessageId.MACRO_DESCRIPTION_MAX_32_CHARS));
      return;
    }
    player.registerMacro(_macro);
  }

  /* (non-Javadoc)
   * @see net.sf.l2j.gameserver.clientpackets.ClientBasePacket#getType()
   */
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.