Search results

  1. Xeno

    Fighting Effects

    Thank you, especially for the color coding to make it easier to understand what is what. I used the graphic to find it in fiddler and hopefully can expand on this. Thank you!
  2. Xeno

    Fighting Effects

    Let me ask this, suppose I want an ice elemental to launch snowballs or some kind of ice particles. Would that be an art animation I would load into the game or is it something I would just code? I am thinking it would have to be an animation added.
  3. Xeno

    Fighting Effects

    Many shards have amazing spell and specials effects. Outlands is one that comes to mind almost immediately.
  4. Xeno

    General Opinion?

    I use AI to help me when I am stuck. If it works, I compare my original with the changes AI gave me and use it to try and learn from. I think it is helpful in that aspect but I don't use it to try and script something from scratch.
  5. 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!
  6. 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...
  7. Xeno

    WIki Page for VitaNex?

    No, the couple of things that I have tried did not work. I got a basic explosion to work from looking an old script I got from here but nothing else. I know I am missing out on something really cool.
  8. Xeno

    Tameable Undead Pets

    I appreciate that you are offering things to the community. With that being said, you may want to invest a little more time in them before posting them. I am aware that most people will modify them to fit their needs but these seem to be nothing more than a random undead mob with 3 lines for...
  9. 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.
  10. Xeno

    classicuo crashes when I double click a item

    I would try another client and see if it crashes that client as well.
  11. Xeno

    trying to check if buff icon is present

    Is this the part that you are referring to? if (!BuffInfo.Enabled || m_BuffTable == null) { return; } or is it if (!BuffInfo.Enabled || b == null) { return; } I am trying to learn from this as I go. I got errors again. + CUSTOM SCRIPTS PnP/Witchery/Drink/CerebralBeer2.cs: CS1061...
  12. Xeno

    trying to check if buff icon is present

    Thank you, I had checked BuffIcons.cs but did not find anything that looked helpful in it. I never thought to look into playermobile.cs It came back with this error: + CUSTOM SCRIPTS PnP/Witchery/Drink/CerebralBeer2.cs: CS0122: Line 26: 'PlayerMobile.m_BuffTable' is inaccessible due to its...
  13. 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...
  14. Xeno

    Is ServUO C+ or C++?

    I am going through a basic tutorial video now, its like 4 hours long but so far has been quite helpful. All the help here has been great and really makes me want to learn more about the coding language so I am not guessing at meaning as much. If nothing else, it means I am more confident in it lol
  15. Xeno

    Is ServUO C+ or C++?

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

    WIki Page for VitaNex?

    Are there any guides or videos on how to get started with adding things in and what to do?
  17. Xeno

    The ServUO Script Weaver (GPT4 Access Only.... for now)

    I agree, would love to be a part of this but currently don't have extra to subscribe to ChatGPT+
  18. Xeno

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

    Thank you, worked great! I used the cliloc for activated for the primary then used the one for ~1_NOTHING~ and added in the "+20 Intelligence" and perfecto. It also show me some fun ways to play with some of these clilocs they have that crack me up.
  19. Xeno

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

    How about this string to int error Is there an easy way to replace the cliloc info with something custom for buff icons? This is how they are used BuffInfo.AddBuff(from, new BuffInfo(BuffIcon.Bless, 1158798, 1158797, TimeSpan.FromMinutes(1.0), from)); and I want to try something like...
  20. 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?
Back