loveslips

Member
ServUO Version
Publish 58
Ultima Expansion
None
Hello, Could you please tell me if there is a default function in ServUO to wipe only accounts and all their property (houses, items, etc.)?
But I’m more interested in a method to delete only personal items and houses while preserving all accounts and characters.
Please suggest the direction I should look into.
P.S. Preserve the world decor at the same time
 
This was how i searched the server for an item and removed it...

C#:
ArrayList SGADSYM1 = new ArrayList();
foreach (Item item in World.Items.Values)
{
    if (item is SGAddressSymbol1)
        SGADSYM1.Add(item);
}

foreach (Item item in SGADSYM1)
    item.Delete();

if (SGADSYM1.Count > 0)
    World.Broadcast(0x35, true, "{0} SG Address Symbol 1 Removed", SGADSYM1.Count);

I think homes vanish if the accounts are deleted ???, i might be wrong.
 
This was how i searched the server for an item and removed it...

C#:
ArrayList SGADSYM1 = new ArrayList();
foreach (Item item in World.Items.Values)
{
    if (item is SGAddressSymbol1)
        SGADSYM1.Add(item);
}

foreach (Item item in SGADSYM1)
    item.Delete();

if (SGADSYM1.Count > 0)
    World.Broadcast(0x35, true, "{0} SG Address Symbol 1 Removed", SGADSYM1.Count);

I think homes vanish if the accounts are deleted ???, i might be wrong.
thank you
I will try this method on the backup server
@Voxpire, please advise on this topic.
 
Last edited:

Active Shards

Donations

Total amount
$0.00
Goal
$500.00
Back