Examples of MCRF


Examples of starlight.taliis.core.chunks.adt.MCRF

   *
   */
  public void generateAppeareances() {
    // clear all chunks
    for(int c=0; c<256; c++) {
      obj.mcnk[c].mcrf = new MCRF();
      obj.mcnk[c].setNDoodad(0);
      obj.mcnk[c].setNObj(0);
    }
   
    // Doodads
View Full Code Here

Examples of starlight.taliis.core.chunks.adt.MCRF

       
        for(int c=0; c<256; c++) {
          obj.mcnk[c].setNDoodad(injObj.mcnk[c].getNDoodad());
          injObj.mcnk[c].mcrf.render();
          try{
            MCRF mcrf=new MCRF(injObj.mcnk[c].mcrf.buff);
            obj.mcnk[c].mcrf=mcrf;
          }
           catch (ChunkNotFoundException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
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.