Search results

  1. How initially lock all skills for gain?

    'Server.SkillLock' does not contain a definition for 'Lock' I had this error when tried something like foreach (var toLock in skills) { skill.Lock == SkillLock.Lock } in SkillCheck.cs I want that all character skills woudnot gain after character has been created Without player actually chose...
  2. How i can get "Caster" var and "Caster.Location" "Caster.Map" arg.?

    Hi pls help I tried to use "using Server.Spells" and "using Server.Spell" i guess "Caster" var is there But one doesn't helps another doesn't exist Im modifying a wand script using System; using Server.Spells.First; using Server.Spells.Eighth; using System.Collections.Generic; using...
  3. Hiw can i change spell cast radius?

    Hi would like to reduce length of a spell of mysticism
  4. you don't have that spell inscription

    Its doesn't work... First in the gump there aren't all scrolls in list second even those that exist when i'm trying to craft (copy) a scroll (there is that spell in the spellbook in my backpack) in creation gump a message "you don't have that spell!" what wrong with my inscription? does it...
  5. where is script that handle scrolls inscribing?

    Hi in Inscribe.cs there is only book copy code
  6. setting spells at initial player's interface Is there a method ?

    Hi i mean is there some kind a script or macros to grab spells from Spell book So the noob player would see them right in begining at first enter in the game And not only spells Would like that map, skills, abilities gumps all shoud be auto opened
  7. deleting gump icons

    Hello guys is there a method to delete a gump icon from character creation or from a spell book? So user coudn't (click) use them. For example "advanced" option on character creation interface or a spell icon from Bushido magic book. If its possible Could you pls direct me to the scripts where...
  8. I don't know how to initialize an event with "hits" Help pls

    I would like to create an "event" that listens ( checks ) the character's health (hits) when "Hits" below 33 call BleedAttack.method Using Server.Mobiles 1613735342 any suggestion of the code Would be helpful
  9. Could you make to compile Server instantly Without pressing a key on keyboard?

    When you run WinDebug.bat On start its asking to push a button to continue I would like to avoid this unecessary action
  10. The changes in server scripts Are not applying

    How it could be I change scripts then run Servuo exe and the changes have not effect I even wrote something like "zxczxc" it still run Server normally without exception Whats the deal? I checked The scripts Im changing In the same folder with .exe
  11. Server version info

    It would be nice to include also server publish version info in ServUO folder
  12. Owner account infinite cycle

    Hello I'm trying to create Owner account" on fresh installed ServUO p57 server But When I set name and password windows something compile fast Then its going back to creation Owner account" point And So on in infinite cycle I have a quite old client version 7.0.5... Is that matter?
  13. strange mage" and blacksmith" "prof" are ignored

    switch (prof) { case 1: // Warrior { if (elf) EquipItem(new LeafChest()); else if (human) EquipItem(new LeatherChest()); else if (gargoyle)...
  14. Gargoyles only title issue

    All items on shard has "Gargoyles only" title It doesn't affect wearable ability I can wear all those items with other No gargoyles races Only title is annoying May be its my experiments has affect
  15. error MSB1003: Specify a project or solution file

    Hello Im trying to install server and after i launch COMPILE.win I get this error error MSB1003: Specify a project or solution file
  16. Loosing stamina When heal is low

    Hi again I would like to make character loose his stamina When hitpoints are less then 30% of his total hitpoints Like in WeightOverloading.cs Where I can scan currentHeal (hitpoints) of player mobile?
  17. Set stats depending which profession

    Hi I would like to set fix Stats depending which prof. player choose in CharacterCreation gump So it works with race like this private static void SetStats(Mobile m, NetState state, int str, int dex, int intel) { var max = state.NewCharacterCreation ? 225 : 250;//...
  18. How to separate cancelation of cast From spells and scrolls?

    I want that some spells would cast only by using SpellScrolls I know how to cancel a cast of a spell But the problem is that in public WaterElementalSpell(Mobile caster, Item scroll):base(caster, scroll, m_info) "Mobile caster" and "Item scroll" are in the same script
  19. Delete delay accounts

    Hello. I set delete accounts delay time to 0.0 in AccountHandler.cs but still get "7 days pass.." on gump in UO. I know that I can delete accounts in Saves/accounts xml. To delete in the gump is more comode...
Back