Recent content by Talow

  1. Talow

    Individual skill limit change?

    yeah, that will break the limit and set it to 150, the skills.cs in the server folder shows the cap property, power scroll only modifies it for the said skill. The issue you're going to face then, skills may check for the 120, so you will need to look for where the skills are applied to make...
  2. Talow

    Individual skill limit change?

    yes, I don't remember the property you want to target directly, but it's the same property that the power scroll is working on so you can find it there, you can also set them below 100 if you like. Many shards have used this as a means to control classes too so you can take a look for those...
  3. Talow

    How can I Set Item Ownership to an Account?

    elseif( Owner.Account == from.Account || ... could try that.
  4. Talow

    Why are the .CS files dynamically loaded at run time?

    it is due to remnant from when the server was RunUo, and not open source.
  5. Talow

    What attribute is the location of equipment?

    https://github.com/ServUO/ServUO/blob/master/Server/Item.cs#L24 https://github.com/ServUO/ServUO/blob/master/Server/Item.cs#L757 https://github.com/ServUO/ServUO/blob/master/Server/Item.cs#L3916 https://github.com/ServUO/ServUO/blob/master/Scripts/Items/Equipment/Armor/BaseArmor.cs#L1256 There...
  6. Talow

    CS1729: Line 70: 'Server.Items.RunebookTownsTrammel' does not contain a constructor that takes 0 arg

    I updated this script a while back, might be what you want. https://www.servuo.com/archive/travel-book.845/
  7. Talow

    How to create a new backpack for the player and replace it with the old backpack after the end of th

    Mobile has a Backpack property that you can access to get reference to the backpack (if one exists, if not you'll get null so remember to check for that), you can then use that reference to remove(delete, move location ext) the old pack, once it's removed it should be easy to add the new pack...
  8. Talow

    CS1729: Line 70: 'Server.Items.RunebookTownsTrammel' does not contain a constructor that takes 0 arg

    when you are in the method that's packing the items, you should have access to the mobile you are going to be using, this is normally defined as Mobile m or Mobile from, but other names exist, you need to figure out which name you have, I'll assume the name of the mobile variable is "from" in...
  9. Talow

    Is it possible to Change the Hue of

    dito on that note.
  10. Talow

    I want to know what is the mechanism of item class save in servuo.

    if your goal is mapping you would most want to use the mapping tools, this lets you create the map files that are on the client (and on the server), there's a whole thing for that and I'm not a mapper to really give you the proper guidance.
  11. Talow

    Gump that refresh and doesnt blink?

    that could be using the vita nex thing Voxpire made.
  12. Talow

    Is it possible to Change the Hue of

    Check this out, it's how I did what you want at least. https://www.servuo.com/archive/mini-carousel.336/
Back