Package l2p.gameserver.model

Examples of l2p.gameserver.model.L2Spawn.spawnOne()


        L2Spawn buffer = new L2Spawn(template);
        buffer.setLocx(loc[0]);
        buffer.setLocy(loc[1]);
        buffer.setLocz(loc[2]);
        buffer.setRespawnDelay(10);
        buffer.spawnOne();
        _buffers.add(buffer);
      }
      catch(Exception e)
      {
        e.printStackTrace();
View Full Code Here


      L2Spawn sp = new L2Spawn(template);
      sp.setLoc(loc);
      sp.setAmount(1);
      sp.setRespawnDelay(0);
      _spawns.add(sp);
      return sp.spawnOne();
    }
    catch(Exception e)
    {
      e.printStackTrace();
      return null;
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.