Package com.l2jfrozen.gameserver.model.L2Macro

Examples of com.l2jfrozen.gameserver.model.L2Macro.L2MacroCmd


      int type = readC(); // 1 = skill, 3 = action, 4 = shortcut
      int d1 = readD(); // skill or page number for shortcuts
      int d2 = readC();
      String command = readS();
      _commandsLenght += command.length()+1;
      commands[i] = new L2MacroCmd(entry, type, d1, d2, command);
      if(Config.DEBUG)
      {
        System.out.println("entry:" + entry + "\ttype:" + type + "\td1:" + d1 + "\td2:" + d2 + "\tcommand:" + command);
      }
    }
View Full Code Here


          if(st.hasMoreTokens())
          {
            cmd = st.nextToken();
          }

          L2MacroCmd mcmd = new L2MacroCmd(commands.size(), type, d1, d2, cmd);
          commands.add(mcmd);

          mcmd = null;
          st = null;
        }
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.model.L2Macro.L2MacroCmd

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.