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!

[RunUO 2.0 RC1] FS: Animal Taming Systems Gen2

test444

Wanderer
try add this in your basecreature.cs file

Code:
		public virtual double GetControlChance( Mobile m, bool useBaseSkill )
		{
			if ( m_dMinTameSkill <= 29.1 || m_bSummoned || m.AccessLevel >= AccessLevel.GameMaster )
				return 1.0;

			double dMinTameSkill = m_dMinTameSkill;

			if ( dMinTameSkill > -24.9 && Server.SkillHandlers.AnimalTaming.CheckMastery( m, this ) )
				dMinTameSkill = -24.9;

			int taming = (int)((useBaseSkill ? m.Skills[SkillName.AnimalTaming].Base : m.Skills[SkillName.AnimalTaming].Value ) * 10);
			int lore = (int)((useBaseSkill ? m.Skills[SkillName.AnimalLore].Base : m.Skills[SkillName.AnimalLore].Value )* 10);

			int difficulty = (int)(dMinTameSkill * 10);
			int weighted = ((taming * 4) + lore) / 5;
			int bonus = weighted - difficulty;
			int chance;

			if ( bonus <= 0 )
				chance = 700 + (bonus * 14);
			else
				chance = 700 + (bonus * 6);

			if ( chance >= 0 && chance < 200 )
				chance = 200;
			else if ( chance > 990 )
				chance = 990;

			chance -= (MaxLoyalty - m_Loyalty) * 10;

			return ( (double)chance / 1000 );
		}

that should get rid of half errors
 

Montesuma80

Wanderer
More then 1 LVL Gain

Hello,

what must i do wenn i want to get more then 1 LVL up, because my Pet gains round about 700k exp at one Traningscow.

Thanks
 

greyrebel

Wanderer
hey folks, i am trying to figure out how to make the shrink potions work for non-tamers that can still control things like giant beetles and lesser hiryus(with bushido). atm it wont allow you to unshrink these types of pets unless you have the required taming, and this sucks for crafters and mule characters. thank for any help


i have found this line in ShrinkItem.cs line 1135: else if ( from.Skills[SkillName.AnimalTaming].Value < m_PetMinTame && notame != true )
{
from.SendMessage( "You do not have the required taming to control this pet.");
from.SendMessage( "You must have {0} animal taming to reclaim this pet.", m_PetMinTame );
}

is the notame that is in red supposed to allow nontamers to claim the pet?
 

Bred203

Sorceror
Tryin to install package on rc2 please help

When i install step by step from the directions i get
Code:
RunUO - [www.runuo.com] Version 2.0, Build 2959.20979
Core: Running on .NET Framework Version 2.0.50727
Scripts: Compiling C# scripts...failed (13 errors, 0 warnings)
Errors:
+ Mobiles/Animals/Mounts/LesserHiryu.cs:
CS0115: Line 119: 'Server.Mobiles.LesserHiryu.GetControlChance(Serve r.Mobile
, bool)': no suitable method found to override
+ Mobiles/Animals/Mounts/Ridgeback.cs:
CS0115: Line 48: 'Server.Mobiles.Ridgeback.GetControlChance(Server. Mobile, b
ool)': no suitable method found to override
+ Mobiles/Animals/Mounts/SavageRidgeback.cs:
CS0115: Line 48: 'Server.Mobiles.SavageRidgeback.GetControlChance(S erver.Mob
ile, bool)': no suitable method found to override
+ Mobiles/Animals/Mounts/ScaledSwampDragon.cs:
CS0115: Line 47: 'Server.Mobiles.ScaledSwampDragon.GetControlChance (Server.M
obile, bool)': no suitable method found to override
+ Mobiles/Animals/Mounts/SwampDragon.cs:
CS0115: Line 145: 'Server.Mobiles.SwampDragon.GetControlChance(Serve r.Mobile
, bool)': no suitable method found to override
+ Mobiles/Monsters/Misc/Melee/BladeSpirits.cs:
CS0115: Line 17: 'Server.Mobiles.BladeSpirits.GetFightModeRanking(S erver.Mob
ile, Server.Mobiles.FightMode, bool)': no suitable method found to override
+ Mobiles/Monsters/Misc/Melee/EnergyVortex.cs:
CS0115: Line 17: 'Server.Mobiles.EnergyVortex.GetFightModeRanking(S erver.Mob
ile, Server.Mobiles.FightMode, bool)': no suitable method found to override
+ Mobiles/Monsters/SE/FireBeetle.cs:
CS0115: Line 80: 'Server.Mobiles.FireBeetle.GetControlChance(Server .Mobile,
bool)': no suitable method found to override
+ Mobiles/Vendors/NPC/Blacksmith.cs:
CS0115: Line 125: 'Server.Mobiles.Blacksmith.OnSuccessfulBulkOrderRe ceive(Se
rver.Mobile)': no suitable method found to override
+ Mobiles/Vendors/NPC/Tailor.cs:
CS0115: Line 74: 'Server.Mobiles.Tailor.OnSuccessfulBulkOrderReceiv e(Server.
Mobile)': no suitable method found to override
+ Mobiles/Vendors/NPC/Weaponsmith.cs:
CS0115: Line 92: 'Server.Mobiles.Weaponsmith.OnSuccessfulBulkOrderR eceive(Se
rver.Mobile)': no suitable method found to override
+ Mobiles/Vendors/NPC/Weaver.cs:
CS0115: Line 74: 'Server.Mobiles.Weaver.OnSuccessfulBulkOrderReceiv e(Server.
Mobile)': no suitable method found to override
+ Mobiles/Vendors/GenericBuy.cs:
CS0535: Line 9: 'Server.Mobiles.GenericBuyInfo' does not implement interface
member 'Server.IBuyItemInfo.GetObject()'
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
wich is the same errors as the person in a few posts ago. so then i tried to use win merge to merge the original distros with the 1s in package now i get these errors.

Code:
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBBard.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBBarkeeper.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBBeekeeper.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBBlacksmith.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBBowyer.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBButcher.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBCarpenter.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBCobbler.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBCook.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBFarmer.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBFisherman.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBFortuneTeller.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBFurtrader.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBGlassblower.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBHairStylist.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBHealer.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBHerbalist.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBHolyMage.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBHouseDeed.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBInfo.cs:
    CS0246: Line 13: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBInnKeeper.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBJewel.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBKeeperOfChivalry.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBLeatherWorker.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBMage.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBMapmaker.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBMiller.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBMiner.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBPlayerBarkeeper.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBProvisioner.cs:
    CS0246: Line 11: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 17: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBRancher.cs:
    CS0246: Line 11: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 17: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBRanger.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBRealEstateBroker.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBScribe.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBSECook.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBSEHats.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBShipwright.cs:
    CS0246: Line 11: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 17: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBSmithTools.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBStoneCrafter.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBTailor.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBTanner.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBTavernKeeper.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBThief.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBTinker.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBVagabond.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBVarietyDealer.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBVeterinarian.cs:
    CS0246: Line 11: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 17: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBWaiter.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBWeaponSmith.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Mobiles/Vendors/SBInfo/SBWeaver.cs:
    CS0246: Line 10: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 16: The type or namespace name 'IShopSellInfo' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Regions/GuardedRegion.cs:
    CS0246: Line 107: The type or namespace name 'BaseVendor' could not be found
 (are you missing a using directive or an assembly reference?)
 + Skills/AnimalLore.cs:
    CS0246: Line 83: The type or namespace name 'BaseCreature' could not be foun
d (are you missing a using directive or an assembly reference?)
    CS0246: Line 127: The type or namespace name 'BaseCreature' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Skills/AnimalTaming.cs:
    CS0246: Line 217: The type or namespace name 'BaseCreature' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 223: The type or namespace name 'BaseCreature' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 198: The type or namespace name 'BaseCreature' could not be fou
nd (are you missing a using directive or an assembly reference?)
    CS0246: Line 41: The type or namespace name 'BaseCreature' could not be foun
d (are you missing a using directive or an assembly reference?)
    CS0246: Line 54: The type or namespace name 'BaseCreature' could not be foun
d (are you missing a using directive or an assembly reference?)
    CS0246: Line 59: The type or namespace name 'BaseCreature' could not be foun
d (are you missing a using directive or an assembly reference?)
    CS0246: Line 83: The type or namespace name 'BaseCreature' could not be foun
d (are you missing a using directive or an assembly reference?)
 + Skills/Provocation.cs:
    CS0246: Line 78: The type or namespace name 'BaseCreature' could not be foun
d (are you missing a using directive or an assembly reference?)
    CS0246: Line 81: The type or namespace name 'BaseCreature' could not be foun
d (are you missing a using directive or an assembly reference?)
 + Spells/Base/SpellHelper.cs:
    CS0246: Line 406: The type or namespace name 'BaseCreature' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Spells/Necromancy/AnimateDeadSpell.cs:
    CS0246: Line 387: The type or namespace name 'BaseCreature' could not be fou
nd (are you missing a using directive or an assembly reference?)
 + Spells/UnsummonTimer.cs:
    CS0246: Line 8: The type or namespace name 'BaseCreature' could not be found
 (are you missing a using directive or an assembly reference?)
    CS0246: Line 11: The type or namespace name 'BaseCreature' could not be foun
d (are you missing a using directive or an assembly reference?)
 + Skills/ArmsLore.cs:
    CS0246: Line 25: The type or namespace name 'PlayerVendorTarget' could not b
e found (are you missing a using directive or an assembly reference?)
 + Skills/ItemIdentification.cs:
    CS0246: Line 23: The type or namespace name 'PlayerVendorTarget' could not b
e found (are you missing a using directive or an assembly reference?)
 + Skills/TasteID.cs:
    CS0246: Line 25: The type or namespace name 'PlayerVendorTarget' could not b
e found (are you missing a using directive or an assembly reference?)
Scripts: One or more scripts failed to compile or no script files were found.
 - Press return to exit, or R to try again.
I have search the threads through and through this package says its made for rc1 and runs fine on rc1 i seen a few posts in this thread saying people have this running on rc2 can u please send me the files with the proper mods or tell me what im doing wrong. THANKS
 

Hawkins

Sorceror
Bred203;792372 said:
I have search the threads through and through this package says its made for rc1 and runs fine on rc1 i seen a few posts in this thread saying people have this running on rc2 can u please send me the files with the proper mods or tell me what im doing wrong. THANKS

The rar file in the second post might work. You may need to merge the scripts under the folder "/distro" with your existing scripts.

http://www.runuo.com/forums/custom-...o-2-0-svn-daat99s-owltr-runuo-2-0-svn301.html
 

Hawkins

Sorceror
Maestro7;793228 said:
I downloaded and installed as instructed and still getting a bunch of errors. what could I be doing wrong?

I guess you may have to re-install a clean RunUO RC2, if that's the version you prefer. It is because the errors you posted are quite unusual, such as this,


CS0115: Line 80: 'Server.Mobiles.FireBeetle.GetControlChance(Server .Mobile, bool)': no suitable method found to override

It seems that you don't have a FireBeetle.cs script installed, which could mean that some of your RC2 core scripts are missing or not of version RC2.
 
I just did reinstall runuo 2 and installed the distros to their correct location and still showing the same errors


Mobiles/Animals/Mounts/LesserHiryu.cs:
CS0115: Line 119: 'Server.Mobiles.LesserHiryu.GetControlChance(Serve r.Mobile
, bool)': no suitable method found to override
+ Mobiles/Animals/Mounts/Ridgeback.cs:
CS0115: Line 48: 'Server.Mobiles.Ridgeback.GetControlChance(Server. Mobile, b
ool)': no suitable method found to override
+ Mobiles/Animals/Mounts/SavageRidgeback.cs:
CS0115: Line 48: 'Server.Mobiles.SavageRidgeback.GetControlChance(S erver.Mob
ile, bool)': no suitable method found to override
+ Mobiles/Animals/Mounts/ScaledSwampDragon.cs:
CS0115: Line 47: 'Server.Mobiles.ScaledSwampDragon.GetControlChance (Server.M
obile, bool)': no suitable method found to override
+ Mobiles/Animals/Mounts/SwampDragon.cs:
CS0115: Line 145: 'Server.Mobiles.SwampDragon.GetControlChance(Serve r.Mobile
, bool)': no suitable method found to override
+ Mobiles/Monsters/Misc/Melee/BladeSpirits.cs:
CS0115: Line 17: 'Server.Mobiles.BladeSpirits.GetFightModeRanking(S erver.Mob
ile, Server.Mobiles.FightMode, bool)': no suitable method found to override
+ Mobiles/Monsters/Misc/Melee/EnergyVortex.cs:
CS0115: Line 17: 'Server.Mobiles.EnergyVortex.GetFightModeRanking(S erver.Mob
ile, Server.Mobiles.FightMode, bool)': no suitable method found to override
+ Mobiles/Monsters/SE/FireBeetle.cs:
CS0115: Line 80: 'Server.Mobiles.FireBeetle.GetControlChance(Server .Mobile,
bool)': no suitable method found to override
+ Mobiles/Vendors/NPC/Blacksmith.cs:
CS0115: Line 125: 'Server.Mobiles.Blacksmith.OnSuccessfulBulkOrderRe ceive(Se
rver.Mobile)': no suitable method found to override
+ Mobiles/Vendors/NPC/Tailor.cs:
CS0115: Line 74: 'Server.Mobiles.Tailor.OnSuccessfulBulkOrderReceiv e(Server.
Mobile)': no suitable method found to override
+ Mobiles/Vendors/NPC/Weaponsmith.cs:
CS0115: Line 92: 'Server.Mobiles.Weaponsmith.OnSuccessfulBulkOrderR eceive(Se
rver.Mobile)': no suitable method found to override
+ Mobiles/Vendors/NPC/Weaver.cs:
CS0115: Line 74: 'Server.Mobiles.Weaver.OnSuccessfulBulkOrderReceiv e(Server.
Mobile)': no suitable method found to override
+ Mobiles/Vendors/GenericBuy.cs:
CS0535: Line 9: 'Server.Mobiles.GenericBuyInfo' does not implement interface
member 'Server.IBuyItemInfo.GetObject()'


what else could be wrong.

Thank you inadvance
 
Ok i fixed the mobiles now all i have for errors is this.


CS0115: Line 125: 'Server.Mobiles.Blacksmith.OnSuccessfulBulkOrderRe ceive(Se
rver.Mobile)': no suitable method found to override
+ Mobiles/Vendors/NPC/Tailor.cs:
CS0115: Line 74: 'Server.Mobiles.Tailor.OnSuccessfulBulkOrderReceiv e(Server.
Mobile)': no suitable method found to override
+ Mobiles/Vendors/NPC/Weaponsmith.cs:
CS0115: Line 92: 'Server.Mobiles.Weaponsmith.OnSuccessfulBulkOrderR eceive(Se
rver.Mobile)': no suitable method found to override
+ Mobiles/Vendors/NPC/Weaver.cs:
CS0115: Line 74: 'Server.Mobiles.Weaver.OnSuccessfulBulkOrderReceiv e(Server.
Mobile)': no suitable method found to override
+ Mobiles/Vendors/GenericBuy.cs:
CS0535: Line 9: 'Server.Mobiles.GenericBuyInfo' does not implement interface
member 'Server.IBuyItemInfo.GetObject()'

Any ideas on how to fix?
 
Does anyone have a fix for the disappearing pets bug? I have pets that just poof, they can be shrunk, unshrink, alive, or dead and they just vanish. The pets that disappear are bonded and they do it in an instant not hours later. So was just curious if anyone that uses this system knows of a fix. I was told by a player of mine that it happens on other shards that use this system as well. Its a rare occurence but it does happen. I use svn 264.
 

Jukas

Sorceror
Turning in taming bods.

I installed the fstaming gen 2 in my server. i got no errors on start up. But i cant seem to turn in the taming bods to animal trainer. Can you help with this. Every thing else is working fine but that.

Thanks Juka
 
jukas are you using runuo 2 with this taming system. ive been trying for days following the directions to the tee and continue to get errors involving basecreature script. As far as the taming bods I believe there might be a fix in the earlier posts of this thread. Let me know or if u can look at my basecreature to match to yours.
 

Jukas

Sorceror
I am using RunUO SVN 297. Did you us winmerger to merge the distro files. You have to merge each file in the distro file. There are about 8 of them that have to be merged. Try that it should work.
Juka
 
yea i did merge still get errors. I see a text file in an old post and going to try and edit them manually someone said it worked for them. This has been the biggest pain in the butt. I will continue to try though because I want it. Thanks anyway
 

Harmonic

Sorceror
Arwen, on the shard I play on we're having the same problem with the disappearing pets. Upon interviewing the players involved, they all said that they bonded their pets with the pet bonding deed. No other factor was the same. You might want to check to see if it's a common factor in your case, and if so, maybe we can figure out how to fix it. :)
 

Hawkins

Sorceror
I think that everytime when a command fails, the pet's loyalty will drop. If it the pet is left unattended for a long time, its loyalty will also drop. Till the pet's loyalty is dropped off a certain point, it will go wild even when it is bonded. When a 'wild' pet like this is killed by monsters, it will be gone with the wing.

That's the case in my shard with evo pets. I don't know for sure for normal pets though.
 
Top