I am working on getting a new zip file on my computer that opens zip files the one I am using is junk andy suggestions on a good one by chance?
Errors:
+ custom/Daat99/Token/daat99's Token System.cs:
CS0246: Line 16: The type or namespace name 'daat99' could not be 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.
Can anyone help me fix this, please?????
SackFlour sack = item as SackFlour;
if (sack != null && sack.Amount > 0 && types.ContainsKey(typeof(SackFlour)))
types[typeof(SackFlour)] = sack.Amount;
return types;
if (item is SackFlour)
{
int add = Math.Min(amount, 20);
((SackFlour)item).Amount = add;
amount -= add;
}
Hello I tried this system and gotThis one works for me as it is. This includes the Master Looter and Tokens Systems taken from daat99's OWLTR system, and modified to work with ServUO. If you have another version of these files, back them up and then remove them from your folders before adding these.
/*
public override void OnSingleClick( Mobile from )
{
base.OnSingleClick( from );
if ( Stone != null && !Stone.Deleted )
{
if ( Stone.Name != null )
LabelTo( from, "Stone Ball, Connected to: "+ Stone.Name );
else
LabelTo( from, "Stone Ball, Connected to: !SET THE STONE'S NAME!" );
}
else
{
LabelTo( from, "Stone Ball, Connected to: None" );
}
}
*/
have u gotten anywhere with this one?Hi, im getting this error
C:\Users\rbhim\Desktop\ServUO-master\ServUO-master\ServUO-master\Scripts\Custom\MasterStorage\MasterStorageUtils.cs(306,31): error CS1501: No overload for method 'CheckLoot' takes 2 arguments [C:\Users\rbhim\Desktop\ServUO-master\ServUO-master\ServUO-master\Scripts\Scripts.csproj]
UPDATE: at the top of the masterstorageutils.cs //comment out of the #define runuo2_2Hi, im getting this error
C:\Users\rbhim\Desktop\ServUO-master\ServUO-master\ServUO-master\Scripts\Custom\MasterStorage\MasterStorageUtils.cs(306,31): error CS1501: No overload for method 'CheckLoot' takes 2 arguments [C:\Users\rbhim\Desktop\ServUO-master\ServUO-master\ServUO-master\Scripts\Scripts.csproj]
if (owner.HasBreath) //give bonus for creatures that have fire breath
if (owner.HasAbility(SpecialAbility.DragonBreath)) //give bonus for creatures that have fire breath
I should have updated this, it was misspelled. I looked it up on UOGuide and changed the spelling and that compiled.If your shard doesn't have putrefication just delete that entry from the list. Before doing that though make sure the resource isn't misspelled in your shard's main code (it is in mine) so I changed the spelling to match the "wrong" entry. Mine is spelled "Putrefaction" but it works.
if (owner.SpecialAbility.DragonBreath)
We use essential cookies to make this site work, and optional cookies to enhance your experience.