Search results

  1. SERENITY UO

    Here is a brand new invite link https://discord.gg/3zC9sN2aa
  2. Trying to reset properties counter

    changing the itemid probably would have worked but i solved it by doing this public override void GetProperties(ObjectPropertyList list) { base.GetProperties(list); if ( m_RegularKillCount <= 149 ) { list.Add( "Kills: {0}"...
  3. Trying to reset properties counter

    So i want this stone to list how many things have been killed in this dungeon public override void GetProperties(ObjectPropertyList list) { base.GetProperties(list); list.Add( "Kills: {0}", m_RegularKillCount.ToString()); } it shows the kills but doesnt...
  4. Cant mark item

    i have things set to be able to mark but it says cant mark this *I Figured it out and got it working*
  5. Unmovable Arrow

    How can i make the arrow and bolt in this quiver unmovable?
  6. Skill Set on DblCLick

    works perfectly thank you
  7. Skill Set on DblCLick

    How do i go about setting all skills to 100 on double click? ive been trying to get it to work but im lost
  8. RecipeBag

    yea I figured it out but did it a completely different way (note : numbers I got where based off the numbers in the recipe book so they are out of order) using System; using Reward = Server.Engines.Quests.BaseReward; namespace Server.Items { public class RecipeSatchel : Backpack {...
  9. RecipeBag

    Im trying to make a bag that drops a random recipe but everything ive tried I still get an error im using Servuo Errors: + Custom/RecipeBag.cs: CS0019: Line 15: Operator '>=' cannot be applied to operands of type 'Item' and 'int' CS0127: Line 174: Since...
  10. Knive's Town Houses 3.00

    how old is your basehouse.cs ? my basehouse.cs contains a definition for AtAccountHouseLimit which im not seeing in your script based on what im reading in your script AccountHouseLimit maybe either in another script or hidden somewhere in your script and the only thing im seeing is public...
  11. Backpack Of Reduction

    public override bool OnDragDropInto(Mobile from, Item dropped) { if (dropped is BackpackOfReduction) { from.SendMessage("That item is not allowed in this container"); return false; } return...
  12. Backpack Of Reduction

    ok so making it if (dropped is BackpackOfReduction) stops me from drag dropping onto another backpack of reduction. but this doesn't stop me from opening the backpack and just placing it in there
  13. Backpack Of Reduction

    Even though it did compile the code still allows me to place other containers in it
  14. Ultimate Dye Tub

    Using Servuo Server So dye tub is setup to take gold from the bank but with the new banking system the taking money from the bank part doesn't work when trying to dye the pet and not sure how to fix it ive tried different things but have gotten an error
  15. Backpack Of Reduction

    adding that returns an error Errors: + Custom/Bruiser/BackpackOfReduction.cs: CS0161: Line 63: 'BackpackOfReduction.OnDragDrop(Mobile, Item)': not all code paths return a value Scripts: One or more scripts failed to compile or no script files were found. - Press return to exit, or R to...
  16. Backpack Of Reduction

    Hello my server is ServUo I have this nice backpack script but it seems that there is a little bug with them which I would like to fix. Script works great but if you continue to place bags within bags eventually it can make you lose weight. So I would like to make it to where you cant place...
  17. Adding new pets to PetTrainingHelper causing server to crash

    Ok so I added 2 new dragons to our PetTrainingHelper.cs file and now when ever you pull out or get off a previously trained pet it crashes the server (note: Dragons are based off the greater dragon 100%) only difference is the type of damage dealt these 2 lines - new...
  18. Animal Trainer Lord Error

    trying to get this script to work but im getting a protection error Errors: + Custom/AnimalTrainerLord.cs: CS0122: Line 114: 'BaseCreature.m_dMinTameSkill' is inaccessible due to its protection level Scripts: One or more scripts failed to compile or no script files were found. 1563554129...
Back