Recent content by Burner

  1. Burner

    OWLTR 4.0 for ServUO Pub 54

    I'm sure a lot of people would love to see the full system working flawlessly on the the current svn version, so thanks for your hard work towards that end.
  2. Burner

    OWLTR 4.0 for ServUO Pub 54

    Some things have changed, you will need to reference the new stuff to see how it changed. Unfortunately, I mostly just added custom materials and left the rest of it out.
  3. Burner

    OWLTR 4.0 for ServUO Pub 54

    I personally went the route of adapting it to fit into what exists. int oreType = 0; string rname = "0"; string aname = this.GetNameString(); switch ( m_Resource ) { case CraftResource.DullCopper: oreType = 1053108; break; // dull copper...
  4. Burner

    Forgot command/See item id in-game?

    you can also use [get itemid if you just need the number quickly instead of looking for it through the [props command or [m get itemid if you want to look for multiple in a row quickly
  5. Burner

    Dynamic Type?

    Thanks Voxpire. That worked. Wonder why that isn't in the git...
  6. Burner

    Dynamic Type?

    Edit: Just to clarify, I am referring to ServUO specifically. Is anyone else able to make use of the Dynamic type in their ServUO scripts? p.s. If this is the wrong place for this question, please direct me to the correct place.
  7. Burner

    Dynamic Type?

    Missing compiler required member 'microsoft.csharp.runtimebinder.binder.convert' I get the above error when trying to compile with dynamic being used as a type. Dynamic has been in C# for years, and I thought maybe I messed up something with my core mods, so I tested it on a Fresh install as...
  8. Burner

    System.Reflexion errors

    Ok, so - I did find that my last merge was done on Feb 15, before todays. So the change is likely something between then and now
  9. Burner

    System.Reflexion errors

    I've just gotten this same thing after merging with the newest changes in servuo. Prior to the merge, there was no issue - Last update would have been a few months ago though - so something in hte last 3 months I think.
  10. Burner

    PVP Options

    So I'm looking into some options for how best to implement pvp on a shard, and I am aware there is a large distribution of players You can find a poll here on the UO Reddit page: Essentially boils down to: Vote PVP everywhere all the time. 1 Votes Vote PvP Everywhere EXCEPT Trammel 0...
  11. Burner

    New ServUO Rebuild w/OWLTR & FS-ATS

    If i recall correctly, you need to level them up a bit before they can mate
  12. Burner

    UltimaLive

    At the very least, I know that it was still working with client: 7.0.55.4 I tried using that client version with data files from a much more recent one and that failed though
  13. Burner

    Wipe command by coordinates

    You can use a slightly more complicated command to do that: [global remove where item x >= 5123 x <= 6143 y >= 2303 y <= 4095 map = 0 [global remove where mobile x >= 5123 x <= 6143 y >= 2303 y <= 4095 map = 0 for your specific scenario You can also use the map name instead of the facet...
  14. Burner

    How can i do do make mobs despawn when released?

    Now, it has been a while for me, but I think that it used to be at least, that you could tame a mob 3 times for skill gains, so you wouldn't necessarily want it to vanish immediately, As for making them Kill each other, you could probably do something like set the team to change on release, that...
  15. Burner

    New ServUO Rebuild w/OWLTR & FS-ATS

    Are you deleting the old bag of resources? located at Scripts\Services\XmlSpawner\XMLSpawner Extras\XmlSockets\XmlSocketItems ?
Back