Thread: Importing animations

Results 1 to 8 of 8
  1. #1 Importing animations 
    Registered Member
    Join Date
    Dec 2016
    Posts
    65
    Thanks given
    4
    Thanks received
    3
    Rep Power
    11
    I've been trying to get Zulrah added to my client, I managed to get the models inported but when I try to import the animations, the client stops loading. No errors. What would be an easy way to go about importing the animations? I've tried using toms cache editor, it crashes every time. Even the any size cache one.
    Reply With Quote  
     

  2. #2  
    Registered Member
    Join Date
    Jan 2017
    Posts
    196
    Thanks given
    15
    Thanks received
    22
    Rep Power
    11
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Dec 2016
    Posts
    65
    Thanks given
    4
    Thanks received
    3
    Rep Power
    11
    I did that but neither worked. I will post my import model method that was on my client in a few mins, it's what worked for the models. When I follow those instructions my client wont load.
    Reply With Quote  
     

  4. #4  
    Banned

    Join Date
    Nov 2014
    Posts
    611
    Thanks given
    180
    Thanks received
    156
    Rep Power
    0
    Just because there are no output errors, doesn't mean there are no errors.
    Lookg into debugging.
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    Dec 2016
    Posts
    65
    Thanks given
    4
    Thanks received
    3
    Rep Power
    11
    Yeah I'll try that when I get a chance.

    Didn't get to try debugging it last night. I was too caught up in my farming not working out of no where ,_,
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    Dec 2016
    Posts
    65
    Thanks given
    4
    Thanks received
    3
    Rep Power
    11
    I tried using a cache editor aswell, crashes everytime

    I tried using a cache editor aswell, crashes everytime
    Reply With Quote  
     

  7. #7  
    Registered Member
    Join Date
    Dec 2016
    Posts
    65
    Thanks given
    4
    Thanks received
    3
    Rep Power
    11
    Quote Originally Posted by yung reckless View Post
    Why would you use a cache editor to pack animations when theres:https://www.rune-server.ee/runescape...repacking.html

    Also try hardcoding the anims?

    There's even a tutorial on how to do this: https://www.rune-server.ee/runescape...rs-zulrah.html
    I've tried to follow those as well, no luck. I work tonight (day time in the States), so I can trouble shoot it tonight.

    This worked for models though
    public byte[] GetModel(int Index)
    {
    try
    {
    File Model = new File(sign.signlink.findcachedir() + "models/"+Index+".gz");
    byte[] aByte = new byte[(int)Model.length()];
    FileInputStream Fis = new FileInputStream(Model);
    Fis.read(aByte);
    pushMessage("aByte = ["+aByte+"]!", 0, "");
    Fis.close();
    return aByte;
    }
    catch(Exception e)
    {return null;}
    }
    public void forceMsg(String message){
    pushMessage(message, 2, myPlayer.name);
    }
    public void models()
    {
    for(int ModelIndex = 0; ModelIndex < 40000; ModelIndex++)
    {
    byte[] abyte0 = GetModel(ModelIndex);
    if(abyte0 != null && abyte0.length > 0)
    {
    decompressors[1].method234(abyte0.length, abyte0, ModelIndex);
    pushMessage("Models added successfully!", 0, "");

    }
    }
    }
    Reply With Quote  
     

  8. #8  
    Registered Member
    Join Date
    Dec 2016
    Posts
    65
    Thanks given
    4
    Thanks received
    3
    Rep Power
    11
    I still havent gotten a chance to debug it ._.

    This is probly a stupid question, as I am still learning. Are my animations in the gfx.dat file under Data\animations?
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Replies: 4
    Last Post: 02-12-2013, 08:07 PM
  2. Replies: 7
    Last Post: 01-03-2011, 07:51 PM
  3. Replies: 67
    Last Post: 12-02-2007, 05:50 AM
  4. omg important!
    By Fezz in forum Showcase
    Replies: 10
    Last Post: 05-04-2007, 05:23 PM
  5. 1 And Only Anime Sig
    By Darklordants Evil Bro in forum Showcase
    Replies: 3
    Last Post: 04-12-2007, 04:25 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •