Package l2p.gameserver.serverpackets

Examples of l2p.gameserver.serverpackets.SpecialCamera


        int dist = Integer.parseInt(wordList[2]);
        int yaw = Integer.parseInt(wordList[3]);
        int pitch = Integer.parseInt(wordList[4]);
        int time = Integer.parseInt(wordList[5]);
        int duration = Integer.parseInt(wordList[6]);
        activeChar.sendPacket(new SpecialCamera(id, dist, yaw, pitch, time, duration));
        break;
      }
      case admin_scene:
      {
        int id = Integer.parseInt(wordList[1]);
View Full Code Here

TOP

Related Classes of l2p.gameserver.serverpackets.SpecialCamera

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.