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!

[runuo2.2] what is itemid=0x3ea0 ?

vbarter

Sorceror
now i want to add new ridable horse to my shard, i can [add newhorse, but when i double click, i can't see it, so i guess, there is something wrong with my tiledata.mul, i search the "A War Horse", see :


Code:
public FactionWarHorse( Faction faction ) : base( "a war horse", 0xE2, 0x3EA0, AIType.AI_Melee, FightMode.Aggressor, 10, 1, 0.2, 0.4 )
        {
            BaseSoundID = 0xA8;
 
            SetStr( 400 );
            SetDex( 125 );
            SetInt( 51, 55 )

i can't find the itemid 0x3EA0, what is it?
 

vbarter

Sorceror
thx Hammerhand

i want to define my own ridable dragon,

Code:
public RideableDragon( string name ) : base( name, 0x162, 0x7FB6, AIType.AI_Animal, FightMode.Aggressor, 10, 1, 0.2, 0.4 )
        {
            SetStr(1000, 1200);
            SetDex(120, 150);

but, i failed to ride on this rideableDragon, 0x7F86 is defined in my tiledata.mul. how can i change it?
 

milva

Sorceror
This is what we have in a script for a ridable white wyrm
base (name, 0x65, 0x3C36
then it goes to the fight mode
Body = Core.AOS? 180: 49;
Then the name of it
and basesound

Ridable Drake
base( name, 0x3C, 0x7ff7
below for body just has
Body = Utility.RandomList (60);
I will ask the person who does all the tiledata.mul changes for ridable to find out what you need to do :) Unless some else helps out before me
**Edit did you also do the Anim but she can't remember if dragon was 1234 or 5
 
Top