- ServUO Version
- Publish 58
- Ultima Expansion
- Endless Journey
How would I remove the need for spellweaving quest?
I found this in the PlayerMobile.cs
But it doesnt seem to allow me to comment those parts out. I just want everyone to be flagged for spellweaving at start.
I found this in the PlayerMobile.cs
C#:
Spellweaving = 0x00040000,
C#:
[CommandProperty(AccessLevel.GameMaster)]
public bool Spellweaving { get { return GetFlag(PlayerFlag.Spellweaving); } set { SetFlag(PlayerFlag.Spellweaving, value); } }
#endregion
But it doesnt seem to allow me to comment those parts out. I just want everyone to be flagged for spellweaving at start.