Search results

  1. Xeno

    Fighting Effects

    Are there any guides on how to code different fighting effects (spellcasting and melee) to mobs? I have tried VitaNex but it seems that it mostly does big area explosions and stuff and I am looking to add other types as well. Thank you in advance!
  2. Xeno

    Energywave not showing up on death

    I am trying to learn how to integrate VitaNex into my scripts. I added this to the constructible area of a random mobile public override void OnDeath(Container c) { base.OnDeath(c); new EnergyWaveEffect(this.Location, this.Map, Direction.Up).Send(); } and then this to the serial area...
  3. Xeno

    Ethereal Hue

    The ethereal mounts have always had the transparency with the black outline. Is there a way to make it a different outline while maintaining its transparency? I have been experimenting without luck, anything I have tried has just adjusted the hue and removed the transparency.
  4. Xeno

    trying to check if buff icon is present

    if (from.FindBuffIndex(BuffIcon.Cunning) != -1) { from.SendMessage("Cannot drnk more Cerebral Beer, you are already under it's effects."); } The arror I am getting is + CUSTOM SCRIPTS PnP/Witchery/Drink/CerebralBeer2.cs: CS1061: Line 26: 'Mobile' does not contain a definition for...
  5. Xeno

    Is ServUO C+ or C++?

    Is it better to study one over the other fpr ServUO and what is the difference?
  6. Xeno

    WIki Page for VitaNex?

    The read me file says to check the wiki. Is there still a wiki or something that walks you through how to use the different things available in VitaNex?
  7. Xeno

    Experimenting with Drinks and what can be done with them

    I am trying to make a drink to see what kind of uses it may be able to have aside from just getting drunk. I am getting this error. Errors: + CUSTOM SCRIPTS PnP/Witchery/Drink/IntelDrink.cs: CS0115: Line 20: 'IntelDrink.Drink(Mobile)': no suitable method found to override Scripts: One or...
  8. Xeno

    Cure/Heal Potion consumed when not poisoned or hurt

    EDIT: I ended up using ChatGTP 4.0 and was given better results. I got this to work. The only issue is that I can double click and use the potion even if not poisoned or low health. I know it is in this section that I need to fix it but not quite sure how. public override void Drink(Mobile...
  9. Xeno

    Sign and door generation questions

    1. If you edit the signs.cfg, do you have to generate signs to make it change? 2. Does anyone have the signs.cfg for the Darkshards Sosaria map by chance? 3. Where are doors saved so the can be generated and deleted without doing it manually every time? I see a .txt file but it looks like it...
  10. Xeno

    Trying to read and understand

    I am using a custom map and want to redo where the teleporters are and want to make sure that I am reading this correctly. public class GenTeleporter { private static string m_Path = Path.Combine("Data", "teleporters.csv"); private static char[] m_Sep = { ',' }; I will find the...
  11. Xeno

    cannot convert from 'string' to 'int' trying to replace a cliloc

    I am trying to learn how to bypass clilocs without making any changes to distro. Lets say I want to change this from: from.LocalOverheadMessage(MessageType.Regular, 0x3B2, 1061905); // * You eat the orange petal. You feel more resilient! * to from.LocalOverheadMessage(MessageType.Regular...
  12. Xeno

    I have some questions and could use some explanations please

    As I dive deeper into ServUO and C#, I am trying to understand some of the flows. A lot makes sense but as I look to make some custom things, I need to better understand how certain systems work. BasePotionCS It calls for greater and regular in the different potion effects and the potions...
  13. Xeno

    'system.DateTime' to 'long' error

    I got everything in the mercenary system to compile except for this error I am not sure what this means. I will attach the script. Any suggestions?
  14. Xeno

    Error with GenTeleporter

    I am experimenting with Darkshard Maps to see how custom maps work before I get into trying to make one. Anyways, I have been using the Enhanced Sosaria Map and I found them from this ServUO thread Custom Maps I am getting this error and not sure how to fix it. Any suggestions? I am attaching...
  15. Xeno

    IsParagon = False

    Ok, I made some custom things and the perfect place is in Ilshenar but I do not want the main guy to be able to become a paragon. Obviously public override bool IsParagon => false; does not work because I would not be here if it did. I also tried public override bool Paragon => false; which gave...
  16. Xeno

    Me again :) Loot Drop Percentage Questions

    I am trying to adjust this so there is a 30% chance that one of these items will drop. I am using this: public override bool OnBeforeDeath() { if (Utility.Random() < 30) // 30% chance to drop switch (Utility.Random(4)) {...
  17. Xeno

    Mount disappears when you kill the rider and change max control slots on tamable

    I am having issues with a rider. When you kill the rider, the mount disappears and I want the mounts to be able to be tamed or killed after the rider dies. I found the ChaosDragoonElite script and think I found the correct part but it isn't working with mine because it also calls for...
  18. Xeno

    Mobs drop worn items

    Is there a way to keep mobs from dropping their armor that they wear? Nothing worse than having to dig through the worthless worn armor to see the loot drops.
  19. Xeno

    Player Mobile Issue

    I started this a while back with an older version of ServUO. I am redoing it because there have been a lot of changes to ServUO since then. I am adding something called Lava Berries to make Lava Paint with. The Lava paint acts like Tribal Paint only a different hue. Here is a link to the...
  20. Xeno

    Create World

    I just downloaded ServUO yesterday so it would be the newest version but does not say when I run it. I am using a custom map in place of Felucca. I would like to generate the world for all but Map 0. Is there a way to do that?
Back