RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Annimation Releases

joshw

Sorceror
Not sure what animations I have released over the years but going to start releasing them. some are from other creators cant remember who they are and would give credit where credit is due so sorry if you were the one who created the animation just forgot over the years who did all of them.
 

Attachments

  • 4 Armed Demon.rar
    613.8 KB · Views: 29
  • baby dragon.rar
    269.1 KB · Views: 28
  • Blue Mushroom Man.rar
    247.8 KB · Views: 22
  • Bugbear.rar
    504.9 KB · Views: 22
  • carrion Crawler.rar
    170.6 KB · Views: 20
  • Chimera.rar
    684.6 KB · Views: 20
  • Deep troll.rar
    342.3 KB · Views: 23
  • Demogorgon.rar
    602.8 KB · Views: 21
  • Female Drider.rar
    500.9 KB · Views: 22
  • Fire giant Hammer.rar
    867.2 KB · Views: 20

joshw

Sorceror
Not sure what animations I have released over the years but going to start releasing them. some are from other creators cant remember who they are and would give credit where credit is due so sorry if you were the one who created the animation just forgot over the years who did all of them.
adding more
 

Attachments

  • Fire giant Hammer.rar
    867.2 KB · Views: 15
  • Fire giant.rar
    849.9 KB · Views: 25
  • Fire Salamander.rar
    200.8 KB · Views: 23
  • Frost giant.rar
    1,010.4 KB · Views: 20
  • Giant Beetle.rar
    923.2 KB · Views: 20
  • Hook Horror.rar
    249.7 KB · Views: 23
  • Ice Salamander.rar
    225.4 KB · Views: 22
  • Male Drider.rar
    520.6 KB · Views: 24
  • Red Mushroom man.rar
    196.1 KB · Views: 19

Safera

Page
Thanks, Josh. When I asked about the Drider, I didn't realize you had so many done. Very excited for the additional Drow types. Thanks again!
 

JEEG84

Sorceror
Some of this animation is took from "uo-pixel.de" Site

- BugBear
- Carrior Crawler
- Deep Troll
- Demogorgon
- Fire Giant Hammer
- Giant Beetle
- Frost Giant
- Fire and Ice Salamander
 

Safera

Page
HookHorror screenshot attached.

Otherwise, in order to preview these, you can open UOFiddler,
go to the ANIMATIONS tab and
at the bottom, click on SETTINGS > ANIMATION EDIT
Choose "anim" from the dropdown
Find a red text selection that begins with H (e.g. H:11 (11))
Right-click it and choose "Import from .vd"

You can then choose his various .vd files that he provided above to play the animations and see what they look like.
 

Attachments

  • hookhorror.jpg
    29 KB · Views: 43

Safera

Page
Thanks...I have to learn how to completely import them, but I think that's the jist of it, just have to add a script to make it work. So, like with Driders, they could use the GiantSpider.cs as an example...or they could ask some kindly person for help....like I usually have to. lol.
 

joshw

Sorceror
Some of this animation is took from "uo-pixel.de" Site

- BugBear
- Carrior Crawler
- Deep Troll
- Demogorgon
- Fire Giant Hammer
- Giant Beetle
- Frost Giant
- Fire and Ice Salamander

I am Vertigo on Uo-Pixel lol
 

joshw

Sorceror
Thanks...I have to learn how to completely import them, but I think that's the jist of it, just have to add a script to make it work. So, like with Driders, they could use the GiantSpider.cs as an example...or they could ask some kindly person for help....like I usually have to. lol.

Here is what I use for drider script. the body value is just basically where you put the animation I used a randomlist to select whether or not its male or female you can make separate scripts for each one with different abilities and all sorts of bells and whistles if like but that gets into a little deeper scripting.

Code:
using System;
using Server;
using Server.Items;
 
namespace Server.Mobiles
{
    [CorpseName( "an drider's corpse" )]
    public class Drider : BaseCreature
    {
        [Constructable]
        public Drider() : base( AIType.AI_Mage, FightMode.Closest, 10, 1, 0.2, 0.4 )
        {
            Name = "a drider";
            Body = Utility.RandomList( 99, 100 );
            BaseSoundID = 412;
 
            SetStr( 216, 305 );
            SetDex( 96, 115 );
            SetInt( 966, 1045 );
 
            SetHits( 560, 595 );
 
            SetDamage( 15, 27 );
 
            SetDamageType( ResistanceType.Physical, 20 );
            SetDamageType( ResistanceType.Cold, 40 );
            SetDamageType( ResistanceType.Energy, 40 );
 
            SetResistance( ResistanceType.Physical, 55, 65 );
            SetResistance( ResistanceType.Fire, 25, 30 );
            SetResistance( ResistanceType.Cold, 50, 60 );
            SetResistance( ResistanceType.Poison, 50, 60 );
            SetResistance( ResistanceType.Energy, 25, 30 );
 
            SetSkill( SkillName.EvalInt, 120.1, 130.0 );
            SetSkill( SkillName.Magery, 120.1, 130.0 );
            SetSkill( SkillName.Meditation, 100.1, 101.0 );
            SetSkill( SkillName.Poisoning, 100.1, 101.0 );
            SetSkill( SkillName.MagicResist, 175.2, 200.0 );
            SetSkill( SkillName.Tactics, 90.1, 100.0 );
            SetSkill( SkillName.Wrestling, 75.1, 100.0 );
 
            Fame = 23000;
            Karma = -23000;
            Exp = 230;
 
            VirtualArmor = 60;
            PackNecroReg( 30, 275 );
           
        }
 
        public override void GenerateLoot()
        {
            AddLoot( LootPack.FilthyRich, 3 );
            AddLoot( LootPack.MedScrolls, 2 );
        }
 
        public override bool Unprovokable{ get{ return true; } }
        public override bool BleedImmune{ get{ return true; } }
        public override Poison PoisonImmune{ get{ return Poison.Lethal; } }
        public override int TreasureMapLevel{ get{ return 5; } }
 
        public Drider( Serial serial ) : base( serial )
        {
        }
   
        public override void Serialize( GenericWriter writer )
        {
            base.Serialize( writer );
            writer.Write( (int) 0 );
        }
 
        public override void Deserialize( GenericReader reader )
        {
            base.Deserialize( reader );
            int version = reader.ReadInt();
        }
    }
}
 

Dian

Sorceror
What is the drider exactly? Years ago we had a drow package with a drider, was just a mounted drow.. or dark elf. Is that what this is?
 

joshw

Sorceror
Ok
A few more
 

Attachments

  • Fishman mage.rar
    305.4 KB · Views: 16
  • Fishman.rar
    270.3 KB · Views: 13
  • Frogman 2.rar
    236.3 KB · Views: 15
  • Frogman spear.rar
    281.5 KB · Views: 12
  • Frogman3.rar
    383.1 KB · Views: 12
  • Gnopll2.rar
    173.2 KB · Views: 14
  • Gnoll.rar
    167.9 KB · Views: 11
  • H_remorhaz.rar
    804.6 KB · Views: 12
  • Mind Flayer.rar
    90.2 KB · Views: 14
  • PanderBear.rar
    329.8 KB · Views: 19

joshw

Sorceror
Some More

The Salaads are from D&D Fiend Folio they are a type of demon frog.
 

Attachments

  • Red Salaad.rar
    826.4 KB · Views: 13
  • Sallad.rar
    741.9 KB · Views: 15
  • Saytr Bow.rar
    101.2 KB · Views: 14
  • Saytr mace.rar
    118.6 KB · Views: 14
  • Umberhulk.rar
    405.4 KB · Views: 13

joshw

Sorceror
What is the drider exactly? Years ago we had a drow package with a drider, was just a mounted drow.. or dark elf. Is that what this is?

The Drider is a cursed drow elf by the Goddess Loilth Spider queen. Its the upper torso of a drow elf and the lower body of a spider.
I do believe the animation was ripped from either icewinddale or balders gate games.

If like to read up on Drows you can look for the Dark Elf Trilogy by R.A. Salvatore great books.
 

Dian

Sorceror
Oh, okay so the name Drider is the actual name, not abbreviated or anything. Always wondered about that, thanks
 

Safera

Page
Oh my gosh! YES! And more Drow stuff at that!

Dian, I think I have the book on tape on the FTP server if you wanna listen to it. I started with the Dark Elf Trilogy and am now on the Icewind Dale series. You'll recognize half of those characters he has posted if you read/listen to it.
 
Top