Search results

  1. |Sutats|

    Problem with Custom Titles

    ServUO pub-57, VitaNex 5.2.0 Hi, I'm trying to rip out these cool Custom Title scripts from some public shard files but im having some trouble with these reader, writer lines. I've been looking around for a solution for a while but im coming up empty handed. Also I'm assuming this shard is...
  2. |Sutats|

    Looking for certain scripts.

    I appreciate the help, although i have no access to the pets or the gumps themselves to screenshot them. I was more interested in the added "relics" the meta pet system has to offer. Giving the pets new abilities and animations for those abilities.
  3. |Sutats|

    Looking for certain scripts.

    I apologize if this is not the proper area to post this but the script support section didn't seem right to ask for scripts. I've been looking around for a few months now on google and what not for a version of the new Meta pet system. https://www.uoforum.com/wiki/index.php/Meta_Pets I've seen...
  4. |Sutats|

    Adding more spawn count on spawn duration.

    I'm curious if someone can help me, I don't use smart spawning on my spawners because I want a constant flow of monsters but I have 8 frost spiders on 1 spawner but when you wipe the spawn it spawns only 1 frost spider with the 'NextSpawn' duration. Is there something I can change in the props...
  5. |Sutats|

    Question about updating old scripts.

    Thank you Milva for replying, I have been using that list off and on when I need but the CommandEventArgs part confuses me,(idk if i'm just dense) while updating these scripts i've ran into things like using System; using Server; namespace Server.Scripts.Commands and using System; using...
  6. |Sutats|

    Question about updating old scripts.

    I'm in the process of updating a mass amount of old RUO 1.1 scripts and when I get the error "namespace name 'CommandEventArgs' could not be found" I'm supposed to put 'using Server.Commands;' because namespace Server.Scripts.Commands is outdated. But should I be placing 'using Server.Commands;'...
  7. |Sutats|

    Adding attacks to pets via deed.

    I'm looking for a push in the right direction and possibly some help with getting this script to work, my end goal is to be able to have deeds that add the abilities to my pet. The script below gives me a error on line 239 saying "Server.Mobiles.BaseSpecialCreature.BreathStart(Server.Mobile)" No...
  8. |Sutats|

    Xanthos Evo mounts

    I believe the Hiryu evo that I copied from uses the BaseMountEvo.cs file which is categorized as BaseMount, I also have a dragon evo wouldn't changing BaseEvo from BaseCreature to BaseMount throw errors? Down below is my entire evo system folder which I downloaded a while back from ServUO, it...
  9. |Sutats|

    Xanthos Evo mounts

    Yes Xanthos evos goes by bodyvalues, but if it is a Hiryu clone there is a line for the MountedID of the creature in the 'Evo.cs', so I can have the mounted ID as a charger but a different bodyvalue. public EvoMutant( string name ) : base( name, 790, 0x3E92 ) { } Sorry, I...
  10. |Sutats|

    Xanthos Evo mounts

    BodyValue only refers to the unmounted state, im looking for the unmounted to be the same as the mounted for two different stages. public class MutantStageFive : BaseEvoStage { public MutantStageFive() { EvolutionMessage = "has evolved"...
  11. |Sutats|

    Xanthos Evo mounts

    I'm working on a custom Evo steed that has two different mounted ID's at two different stages. Stage 5 it would look like a horse and Stage 6 would look like a charger of the fallen, I've used MountedItemID = 0x3E92 MountID = ItemID = within each stage on the EvoSpec.cs but i get this error "...
  12. |Sutats|

    Adding clothing to custom mobs

    That worked, I wasn't too sure how to input the hue number. Thank you very much!
  13. |Sutats|

    Adding clothing to custom mobs

    I've attempted it like this also, it doesn't throw any errors but it spawns the trainer naked without clothing. I've also tried it with many different items seeing if it was just my selection that was bugged but that didn't work either.
  14. |Sutats|

    Adding clothing to custom mobs

    using System; using System.Collections; using Server; using Server.Items; using Server.Mobiles; namespace Server.Mobiles { [CorpseName( " corpse of Sutats The Trainer" )] public class SutatsTrainer : BaseCreature { public override bool NoHouseRestrictions { get { return true; } }...
  15. |Sutats|

    Adding clothing to custom mobs

    Sorry, I'm not too savvy on this type of thing. Is mob constructor a cs file or am I just extremely dense.
  16. |Sutats|

    Adding clothing to custom mobs

    I'm attempting to add clothing to a personal housebound pet trainer, this is what im using to add the trainers clothing " } public override void InitOutfit() { base.InitOutfit(); AddItem(new StaffRobe( 2500 )); AddItem(new Lantern( 2063 ))...
  17. |Sutats|

    ServUO launcher help

    Alright, so everything worked out fine and im able to tredge through TOL now fine when I ran it as administrator, have no idea why that thought slipped my mind. I'm all set though thanks to your suggestion!
  18. |Sutats|

    ServUO launcher help

    When I attempt to do this on my 7.0.63.2 client i get the same error message I posted above, It fixed the manual directory for my 7.0.45 client. But All of the TOL, Eodon facet is inaccessible i'm guessing due to the server running on a lower patch than my UOS. When I connect to the server with...
  19. |Sutats|

    ServUO launcher help

    When I open the ServUO.exe in the ServUO master folder It doesn't recognize my datapath directory forcing me to manually type in the directory each time I open the .exe. I have 2 clients i've been tinkering with on my computer, 1 with 7.0.45 and another at 7.0.63.2 regardless which one I use...
Back