I'll see what I can do on that tonight. Might help me stay awake a bit easier while at work.
case 4:
{
this.m_Resource = (CraftResource)reader.ReadEncodedInt();
goto case 3;
}
case 3:
Yeah I changed it around before work and the createworld worked fine this time. I'm going to play with it more tonight. But thanks again. I was thinking something else when it mentioned the Moonglow donation box. Now on to a imbue add
It's there, but I could have sworn I ran across a ServUO version. I'll give the 2.5 on runuo a try to see if it explodes.Runuo may still have it.
public static void AddWoodResources(CraftSystem system)
{
bool first = true;
foreach ( ResourceData data in Resources )
{
if ( data.ResourceType == CraftResourceType.Wood )
{
if ( first )
{
system.SetSubRes( data.RawType, data.Name );
first = false;
}
system.AddSubRes( data.RawType, data.Name, data.MinSkill, data.CantCraftMessage );
}
}
}
data.RawType
data.ItemType
public static void AddWoodResources(CraftSystem system)
{
bool first = true;
foreach ( ResourceData data in Resources )
{
if ( data.ResourceType == CraftResourceType.Wood )
{
if ( first )
{
system.SetSubRes( data.ItemType, data.Name );
first = false;
}
system.AddSubRes( data.ItemType, data.Name, data.MinSkill, data.CantCraftMessage );
}
}
}
TIMERS /nowarn:0618 /debug /nologo /optimize /unsafe
Server\Network\Packets.cs(305,32): error CS0246: The type or namespace name
'BuyItemState' could not be found (are you missing a using directive or
an assembly reference?)
Server\Network\Packets.cs(334,36): error CS0246: The type or namespace name
'BuyItemState' could not be found (are you missing a using directive or
an assembly reference?)
Server\Network\Packets.cs(385,44): error CS0246: The type or namespace name
'BuyItemState' could not be found (are you missing a using directive or
an assembly reference?)
Server\Network\Packets.cs(416,56): error CS0246: The type or namespace name
'SellItemState' could not be found (are you missing a using directive or
an assembly reference?)
Server\Interfaces.cs(32,37): error CS0246: The type or namespace name
'BuyItemResponse' could not be found (are you missing a using directive
or an assembly reference?)
Server\Interfaces.cs(33,38): error CS0246: The type or namespace name
'SellItemResponse' could not be found (are you missing a using directive
or an assembly reference?)
Done!
Press any key to continue . .
Can you attach your files:
Server\Network\Packets.cs
and
Server\Interfaces.cs
So we can review them
I can't find any issues with the files included here
open the files:
Server\Network\Packets.cs
and
Server\Interfaces.cs
and make sure they both have this included in the top part:
using Server.Mobiles;
We use essential cookies to make this site work, and optional cookies to enhance your experience.