Search results

  1. Juzzver

    Pet Gaining Fame on Kill

    BasePet bp = ds.m_Mobile as BasePet; .... if (bp != null && bp.Controlled) expeirence.Add(totalExp); or even better: else { titles.Add( ds.m_Mobile ); levels.Add( ds.m_Mobile )...
  2. Juzzver

    Hot to get SpellCircle from magery scroll?

    You've tried to create just an Item which won't have any relation with SpellScroll, so your condition can never be performed. if you want to add all spells, you need just increase "circle" variable from 3 to 8. int circles = 3; for (int i = 0; i < circles * 8 &&...
  3. Juzzver

    Pub 54 question and renaissance

    haven't renaissance formulas and features been removed from ServUO 54+ publishes?
  4. Juzzver

    Next Broadsword Update - Titans from Ultima: Pagan

    All scripts should be placed in the Scripts folder, you can create there a Custom folder for it, where all your downloaded or custom scripts will be.
  5. Juzzver

    Delete item on Gump Response

    InstantBreedDeed deed = m_Deed as InstantBreedDeed; You've tried to inititialize variable for deed, but you don't have any reference on real deed. You need to add additional param for deed in method signature and send deed as reference: public BreedingAcceptGumpInstant(Mobile pet1, Mobile pet2...
  6. Juzzver

    Weird Visual Bug

    if I'm not mistaking you're using ClassicUO and I think this topic has common problem with your. https://www.servuo.com/threads/starting-eqip-for-profession-warrior-invisible.14657/
  7. Juzzver

    Players being trap under the map

    You need to take a memory dump from the server in order to find out at what stage of the code the hang occurs. Also If you are using mono, you can also try to install an older version or vice versa a more recent version, there is a possibility of a version conflict with the current code.
  8. Juzzver

    Attach XmlValue on Player via XmlSpawner

    The work of the XMLspawner system has been cut down in the SerVUO and this functionality no longer works. You need to reinstall this system to get all the functions working again.
  9. Juzzver

    After Spell.Cast(), Targeting

    Yes, you're right. It's like pseudo casts, just damage + effects. If you want to immediately apply casting for weapons, you will need to perform a number of manipulations with the definition of spell parameters. You can directly define a list of spells and then you will have the opportunity to...
  10. Juzzver

    Starting Eqip for Profession Warrior invisible

    I did not find any obvious problems in the code. Most likely there are some bugs in the ClassicUO code. You can contact the ClassicUO developers and report a problem. Or just use a hook: updating the state of things after putting on.
  11. Juzzver

    Starting Eqip for Profession Warrior invisible

    Try to test it on original client.
  12. Juzzver

    Starting Eqip for Profession Warrior invisible

    Are you using original UO client or ClassicUO ?
  13. Juzzver

    After Spell.Cast(), Targeting

    You can't invoke InternalTarget because it's private method, your namespace just can't see this method in list. You can just try to change this method to "public" to make it visible. But don't do that! It will incorrect from the point of view of the principles of programming and OOP, as well as...
  14. Juzzver

    Add delay to a simple command please?

    Try to use default action lockers: [Usage("Doom")] [Description("Display Doom points")] static void OnCommand(CommandEventArgs e) { PlayerMobile pm = e.Mobile as PlayerMobile; if (pm.CanBeginAction(pm)) {...
  15. Juzzver

    Any help

    I think you just forgot to change the DataPath on the remote machine :)
  16. Juzzver

    Learning General Programming And C#

    that should be enough today to start, just need to find a full course.
  17. Juzzver

    Tithe Deed?

    Do you mean deed to add TithingPoints for pets? It's simple, but how do you want to use it further?
  18. Juzzver

    How I can add resistence buff to an equippable item?

    mods[5] = null, coz you have array from 6 elements, from 0 to 5; You have added resist mod not from array list: from.AddResistanceMod(new ResistanceMod(ResistanceType.Physical, incremento); but you're trying to remove it from array (mod[5]), which element = null; So just try to change to...
  19. Juzzver

    Trying to get Apiculture working... few errors.

    Right. Method GetStaticTiles returns StaticTile Array type.
  20. Juzzver

    Private server

    The latest ServUO publications no longer support the T2A/UOR era. And also considering the number of modern content in this emulator, which is not inherent in Renaissance eras, it would be more correct to use the RunUO emulator. To set server T2A Expansion, you have to change next line in...

Active Shards

Donations

Total amount
$0.00
Goal
$500.00
Back