Olórin submitted a new resource:

The Cu Llama - Tamable, Mount

Ladies and Gentlemen! Say hello to the new Cu Llama :D This is my 1st attempt at creating a mount so please exucse the noobish coding. It was made for a friend who loves Llamas, This Llama comes in all the colors that the Cu Sidhe comes in. But he is a human version of the Cu Sidhe. Only Humans can Tame and ride. Elves must wear the stinking boots ;) For some reason the BaseSoundID change didnt work.. and he still sounds like a Cu Sidhe. Maybe someone can download this and help me fix it. So...

Read more about this resource...
 
I made 2 changes (commented them both so you can easier see what I did). First I added a training definition directly to the file so PetTrainingHelper.cs doesn't have to be modified. Second change fixed the sounds.
 

Attachments

  • CuLlama.cs
    6.7 KB · Views: 13
Last edited:
Replace:
BaseSoundID = 1011;
with Lama sound id
BaseSoundID = 0x3F3;

Remove the
Code:
public override int GetIdleSound()
       {
           return 0x577;
       }

       public override int GetAttackSound()
       {
           return 0x576;
       }

       public override int GetAngerSound()
       {
           return 0x578;
       }

       public override int GetHurtSound()
       {
           return 0x576;
       }

       public override int GetDeathSound()
       {
           return 0x579;
       }
 
Back