Search results

  1. Mikthebug

    [ServUO] Unique vendor prices

    So i have a vendor that buys a lot of the custom stuff i have made, and i want him to sell it back but at a set price. He only sells the stuff that someone has already sold to him but it has the normal 1.9 increse in price from GenericSell.cs. And i don't want to change that for everything but...
  2. Mikthebug

    BaseCreature Vendor

    So since the cendors are just standing around and being boring, i wanted to just make npcs as shop keepers insted to get a more "alive" feel to the citys. But i get a few errors and i'm not sure why. This is the first script im trying this with. using System; using Server; using Server.Items...
  3. Mikthebug

    ServUo 57 - Fillablecontainers

    I'm adding some custom items to the fillablecontainers and most of the works but some don't. I don't get any errors or so but i cant see anything wrong in the code. And the items that are added insted are the once in the next part. So insted of jeweler it adds librarian items. And i made a...
  4. Mikthebug

    Item that gives weapon abilitys to pets. ServUo

    So im trying to make a scroll that gives pets weapon abilitys. And when i try this it says that BaseVreature dosen't contain weaponability. Thankful for any help :)
  5. Mikthebug

    Random Scroll of Transcendence

    When im trying to get a random skill i only get error on the script. So this is the only way i got it to work but thats not really what i want. Most of all i would like to have it in BaseCreature.cs if ( 0.01 > Utility.RandomDouble() ) { switch (...
  6. Mikthebug

    Adding skill requierment

    So i want to make another skill check for taming creatures. Tamable = true; ControlSlots = 2; MinTameSkill = 84.3; But im not really sure how to do that? Insted of just taming skill i want some monsters to require magery or necromancy as well. Any help or...
  7. Mikthebug

    Help with some ideas RUNUO 2.6

    So i have some ideas I want to try to make but before that some questions and possible some hints on where to begin since I’m not that good at this. First of I want to make some items that drop from monsters that you can use to add stats to armor/weapons like +str, hit chanse etc. Second I...
  8. Mikthebug

    Custom resource not shown on craft. [RUNUO 2.6]

    So im making some custom crafting resources and everything works up untill i craft them and i dont get the "valorite plate arms" thing i only get "plate arms". BaseArmor.cs switch ( m_Resource ) { case CraftResource.DullCopper: oreType = 1053108...
  9. Mikthebug

    Stealing from monsters

    So i'm new to this forum. Used to be on the runuo form back in the day. I have looked around but i can't find any similar posts so i'll try here. I'm trying to make it so you can steal from monsters with stealing. I have no problem spawning the items on the monsters but when i use stealing on...
Back