Search results

  1. Lemke

    [Quickly, Efficiently, Inexpensively] Looking for work

    Juzzver is an excellent programmer. He has already completed several projects for me, and he undoubtedly does them perfectly. Don't pay attention to the absurd comments. If you are thinking about working with him, definitely do it and see it with your own eyes. If you can imagine it, Juzzver can...
  2. Lemke

    RandomEncounters updated for ServUO

    Someone getting this issue?Ive got the RandomEncounter.xml in Data directory,using p57.Thank you! Also the RandomEncounters folder under Custom folder.
  3. Lemke

    If you're running ML

    This is my old link using p56,now i see p57 im using. https://www.servuo.com/threads/servuo-generating-infinite-mobs-problem.12753/#post-76458
  4. Lemke

    Is there a way to return to the position where monsters are created when they are out of a certain area?

    Holy!!!So sorry,try add "!" in this line: if (!this.InRange(this.Home, 25))
  5. Lemke

    Is there a way to return to the position where monsters are created when they are out of a certain area?

    Ok,you can give a try with this: public override void OnThink() { base.OnThink(); if (this.InRange(this.Home, 25)) this.MoveToWorld(Home, this.Map); } Not tested,i think when the creature go 25 tiles ahead his home,creature auto-return to home location. You can test with 2-3 tiles,so...
  6. Lemke

    Is there a way to return to the position where monsters are created when they are out of a certain area?

    You can try a method like this (not tested): public override void OnCombatantChange() { if (Combatant == null && !Controlled && ControlMaster == null && this.Alive) { BaseCreature bc = this as BaseCreature; Point3D from = bc.Location...
  7. Lemke

    Slayer vulnerability...

    Maybe this? Look at zombie.cs public override TribeType Tribe { get { return TribeType.Undead; } } public override OppositionGroup OppositionGroup { get { return OppositionGroup.FeyAndUndead; } } Not tested,im not sure...
  8. Lemke

    Slayer vulnerability...

    Couldn't you create the monster file yourself and send it to the administrator for them to add it? It would be much easier. If the administrator doesn't grant you access to the server files, I recommend using your own ServUO to create content, such as monsters or items, test them yourself, and...
  9. Lemke

    Playsound command,play sounds in-game based in hexadecimal code.

    Lemke submitted a new resource: Playsound command,play sounds in-game based in hexadecimal code. - Custom command Read more about this resource...
  10. Lemke

    Playsound command,play sounds in-game based in hexadecimal code. 1.0

    Hello everyone, I would like to contribute to the community by sharing a small script that I use to play sounds using their hexadecimal codes within the game. I know that for many, it may not be of great use as they have already worked with ServUO for a long time, but it certainly is for me...
  11. Lemke

    Level System Extreme

    You can do as you want,these settings are just for the shard im working on.
  12. Lemke

    Level System Extreme

    Yes,im working on it,i just need to get working weapon,jewel,and clothing dynamic level. In picture we can see equip values (battle rating),but the level required is not working on weapon,trying to solve,any help will be apreciated.Thank you! private int m_armorrequiredlevel1 =...
  13. Lemke

    Level System Extreme

    Issue UPDATE ////////////// This is the updated code im using right now: private int m_equiprequiredlevel0 = 1; /* default for newbie items */ /* levels threshhold...
  14. Lemke

    Level System Extreme

    The unique issue getting the level system installed on 57.3 repo is i need to add next reference in SkillCheck.cs: using Server.Engines.XmlSpawnerExtMod; After this all is working as intended,perfectly! Anyone using this on expansion TOL+? I need a bit of help trying to update the level...
  15. Lemke

    Custom Abilities for your monsters

    Hello!These abilities looks amazing and customizables,just fix needed cause u forgot to add life drain and colossal blow in SpecialAbilitie,these attacks arent here.
  16. Lemke

    No skill-cap in standard server?

    Hello,just a question about your opinions,ive got a standard server,customized,ML,700/225. The question: What do you think about to convert it on no-skillcap server?Do you think gonna destroy pvp-pvm?Thanks in advance.
  17. Lemke

    Need help with evo system

    Maybe you need to add eggs/dust on any creature in game,take a look (if you have on your server) the Dragon guardian or any guardian,they are monsters to drop eggs.
  18. Lemke

    Update on Stat Change

    This code is from Mobile.cs : public virtual void UpdateTotal(Item sender, TotalType type, int delta) { if (delta == 0 || sender.IsVirtualItem) { return; } switch (type) { case TotalType.Gold...
  19. Lemke

    Update on Stat Change

    Try add one of these: A) m.InvalidateProperties(); B) m.Delta(MobileDelta.Weight); if (m != null && m.Player && m.Backpack == this) { if (GetMultipliert() > 1) return...
  20. Lemke

    Prevent Pet's Attacking Each Other

    Maybe you can try to check pet notoriety with if (c.Notoriety.Ally)and change c.Combatant,but somewhere plus CanBeHarmful.
Back