I did have to change the number to 0x80000000 instead of 0x40000000--------------------------------------------------------------------------------
ServUO - [http://www.servuo.com] Version 0.5, Build 6217.15950
Publish 54
Core: Optimizing for 4 64-bit processors
RandomImpl: CSPRandom (Software)
Core: Loading config...
Scripts: Compiling C# scripts...Failed with: 1 errors, 0 warnings
Errors:
+ Mobiles/PlayerMobile.cs:
CS0266: Line 88: Cannot implicitly convert type 'uint' to 'int'. An explicit
conversion exists (are you missing a cast?)
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
But that is it, the other part for refuse trade is properly merged in, so any ideas>?????
Code:
#region Enums
[Flags]
public enum PlayerFlag // First 16 bits are reserved for default-distro use, start custom flags at 0x00010000
{
None = 0x00000000,
Glassblowing = 0x00000001,
Masonry = 0x00000002,
SandMining = 0x00000004,
StoneMining = 0x00000008,
ToggleMiningStone = 0x00000010,
KarmaLocked = 0x00000020,
AutoRenewInsurance = 0x00000040,
UseOwnFilter = 0x00000080,
PublicMyRunUO = 0x00000100,
PagingSquelched = 0x00000200,
Young = 0x00000400,
AcceptGuildInvites = 0x00000800,
DisplayChampionTitle = 0x00001000,
HasStatReward = 0x00002000,
Bedlam = 0x00010000,
LibraryFriend = 0x00020000,
Spellweaving = 0x00040000,
GemMining = 0x00080000,
ToggleMiningGem = 0x00100000,
BasketWeaving = 0x00200000,
AbyssEntry = 0x00400000,
ToggleClippings = 0x00800000,
ToggleCutClippings = 0x01000000,
ToggleCutReeds = 0x02000000,
MechanicalLife = 0x04000000,
HumilityHunt = 0x08000000,
ToggleCutTopiaries = 0x10000000,
HasValiantStatReward = 0x20000000,
FireRockMining = 0x40000000,
RefuseTrades = 0x80000000,
}
Shazzy