Search results

  1. ServUO - Ring Of Gargish Kind

    using Server.Mobiles; in the top of the script maybe
  2. Pet Evolution

    I am trying to run it with an older version of ServUO, anyone has the fixes for those errors? + Custom/EVO System/AI/EvoArcherAI.cs: CS0115: Line 24: 'EvoArcherAI.EndPickTarget(Mobile, Mobile, OrderType)': no suitable method found to override + Custom/EVO System/BaseEvo.cs: CS0508...
  3. Moongate with charges

    Is there such a thing? 1605196489 using System; using System; using System.Collections.Generic; using Server.Items; using Server.Mobiles; using Server.Network; using Server.Factions; using Server.Engines.Quests; namespace Server.Items { public class ChampionFlag : BaseDecayingItem {...
  4. Insta Hit

    Post UOr? Has it been released somewhere? Thanks!
  5. Need help with cases :(

    For some reason its only giving me spears, like 100% of the time public override void OnDoubleClick(Mobile from) { if (!IsChildOf(from.Backpack)) { from.SendLocalizedMessage(1042001); } else {...
  6. Need help with cases :(

    Trying to make it so you have more chance of getting a spear than either a vikingsword or a katana.. Looks like a big mess :p public override void OnDoubleClick(Mobile from) { if (!IsChildOf(from.Backpack)) { from.SendLocalizedMessage(1042001)...
  7. Simple stone/gump

    Id like to make a stone to leave factions This doesnt work :( public override void OnDoubleClick( Mobile from ) { if ( from.InRange( this.GetWorldLocation(), 1 ) ) { from.CloseGump( typeof( LeaveFactionGump ) ); from.SendGump(...
  8. ServUO - Question about adding to loot

    public override void OnDeath( Container c ) { base.OnDeath( c ); if ( Utility.RandomDouble() < 0.95 ) c.DropItem( new EmberStaff() ); if ( Utility.RandomDouble() < 0.55 ) c.DropItem( new DeathsHead() ); }...
  9. Wands

    For some reason I cannot run while using wands even if this is changed in basewand public void Cast(Spell spell) { bool m = this.Movable; this.Movable = true; spell.Cast(); this.Movable = m; } Not sure whats wrong
  10. CompletelyCustomizableVendor overhaul and update

    Anyone knows why my gump looks like this? (no background)
  11. ConPVP

    Thanks a lot I'll try that EDIT : I forgot to mention, I am using ServUO, will it work? 1604254412 Errors: + Mobiles/PlayerMobile.cs: CS0234: Line 19: The type or namespace name 'MyRunUO' does not exist in the namespace 'Server.Engines' (are you missing an assembly reference?) CS0246...
  12. ConPVP

    Anyone managed to make ConPVP work with the newer versions of SerVUO? I am getting those errors and I am unsure of what to add in playermobile.cs Errors: + Custom/ConPVP/Tournament.cs: CS1061: Line 3182: 'PlayerMobile' does not contain a definition for 'DuelPlayer' and no accessible...
  13. elves only?

    Just launched server and I got this weird issue, everything is now created as elves only but humans can wear them as well. anythingthat could cause this? EDIT : Something was wrong in /Misc/Racedefinitions
  14. Default Character on account creation

    Server crashes when I try to create a new account, did anyone have this issue
  15. Effect minutes after death

    Thanks alot! looks fun and ill look at the ele :) If you have a minute to check out my other issue it would be appreciated! https://www.servuo.com/threads/orange-region.13122/
  16. Orange region

    Is there an easy way to make everyone orange in a region? I heard Khaldun was all grey but I couldnt find anything about it Sadly, its like the only option regioncontroller doesnt have :( Thanks for your help! I had this.. public override bool OnMoveOver( Mobile m ) { if (...
  17. Effect minutes after death

    I'm trying to make it so a monster explodes minutes after its death public override bool OnBeforeDeath() { Timer.DelayCall( TimeSpan.FromMinutes(5.0), () => { new...
  18. Multiple spawns

    Hello, Ive been trying to figure out something lately and its been giving me headaches What if 4 monsters were needed to be killed before the 5th spawned? I figured out how to do it with 1 (On death, spawn another etc.. a bit like the harrower method) but what if it was 4? Also, is there a...
  19. Random Loot question

    Exactly what I was looking for, thanks alot (again lol) I was trying to do something similar in the loot codes but couldnt find exactly how :)
  20. Random Loot question

    Yes

Active Shards

Donations

Total amount
$0.00
Goal
$500.00
Back