This is the command your looking for:
[XmlNewLoadHere <SpawnFile or directory> [SpawnerPrefixFilter][-maxrange range] - Loads XmlSpawners with new GUIDs (no replacement) to the current map and location of the player. Spawners beyond maxrange (default=48 tiles) are not moved relative to the...
very few creatures use:
public void PackGold(int amount)
Most use:
public int Roll()
{
int v = m_Bonus;
for (int i = 0; i < m_Count; ++i)
{
v += Utility.Random(1, m_Sides);
}
return v;
}
The issue your having is caused by quick edit mode in the console. It's what lets you select text in the console window but it also has the effect of pausing the server if it's clicked on. It can also oddly enough register clicks on an application that's above the console window pausing the...
Stealing is mainly based on the weight of the items, a few other factors can also affect it.
see:
https://uo.com/wiki/ultima-online-wiki/skills/stealing/
I've never had any issues with it so I'm not really sure what's going on.
Your not using a staff character to try to play it with correct?
I'd probably try deleting the dealer and adding a new one follow the steps exactly using an admin character. Then test with a player character
If you can add other mobiles you should be able to add the poker dealer but in the script the access level for adding seats etc... is specifically set to Administrator
The script would need to be changed to whatever access level you have to do that in PokerDealer.cs near the top...
This is what I did. (edits are marked with //Visam I do that so I can easily find things I've changed.)
This lets a single caster cast the spell instead of the 2 player min.
public override bool CheckCast()
{
if (!IsValidLocation(Caster.Location, Caster.Map))...
I'd have to assume because broadsword doesn't use it anymore, and they are removing everything from servuo that isn't required to be like broadsword.
It was removed then re-added then removed again...
The section you posted is for after you've gone out of wraith form and really shouldn't change anything when your in wraith form, while in wraith form the following is in effect:
public override void DoEffect(Mobile m)
{
if (m is PlayerMobile)...
Yeah, if a non player kills them the extra loot vanishes, didn't try that the first time, doesn't if a player kills it though. I've had this script for a long time but I didn't have the BaseUndead file to go with it so it's always just been setup as a BaseCreature. It is a fun script for event...
Not sure if this helps or not but it might give you something to look at. I just tested it on my server which is servuo pub 57 with lots of extras added in and the loot gets transfered and I can loot it etc... with a non staff character. So you might look at some of the servuo files to find the...