Search results

  1. zerodowned

    How to turn items into deeds? I used to do this many moons ago

    It's not clear what you mean by "turning items into deeds", a use case example would also be helpful
  2. zerodowned

    What script adjustment is needed in your opinions? Thanks in advance

    Spell.cs Look for areas the check for reagent count and comment them out BaseRanged.cs Same as above, find the area that looks for AmmoType in backpack and comment those sections out
  3. zerodowned

    General Opinion?

    It should also be noted that big companies looking to take on AI for chatbot, etc, are also behind trying to give AI "personhood". Meaning that when it makes a mistake/hallucinates an answer, then the company isn't liable because it's a "employee error" instead of a "system error"
  4. zerodowned

    General Opinion?

    It's helpful but not always right. It spits out info but (obviously) has no self awareness or self correction and will tell you 2 + 2 = 5 until you point out that's wrong Maybe the paid versions are better since checking itself requires more compute cycles? However, there are legitimate books...
  5. zerodowned

    FS -ATS and pub57

    Haven't heard from him in quite a while. Not sure what's going on but I hope he's doing okay
  6. zerodowned

    Looking to start my own shard and seeking someone to help make it happen

    Sounds like a lot of work, I've got a bit much on my plate atm but highly recommend reaching out to @Vharaun if you don't already have someone in mind
  7. zerodowned

    Character stop moving and are under the map?

    Are you using a custom map? Generally only see this if there's a difference in map files being used by client and server
  8. zerodowned

    adding a gump to ethereal mobile item in pack

    @bryant Tack this on my todo list
  9. zerodowned

    How to connect ServUO to MySQL database

    Correct, they can also hack your checking account if they know the serial number of a bill you deposit.
  10. zerodowned

    How to connect ServUO to MySQL database

    First off, mysql isn't needed. It stores saves in bin files on the host pc. Second, I've never seen a walk through for it but you could use this as a point of reference https://github.com/brodock/genova-project
  11. zerodowned

    Services' Requested

    I'm not very familiar with 2 & 3 but invasion system should be easy to convert. I'll pm you
  12. zerodowned

    How do I fix warnings?

    Posting the file or code would help a lot
  13. zerodowned

    trying to check if buff icon is present

    Add the public method HasIcon to player mobile Then in CerebralBeer2 change the code from if (from.FindBuffIndex(BuffIcon.Cunning) != -1) { from.SendMessage("Cannot drnk more Cerebral Beer, you are already under it's effects."); } To //Code for your drink if (from is PlayerMobile pm &&...
  14. zerodowned

    Runic Hammer with Skill Bonuses

    AncientSmithyHammer is a good base to learn from. Just note that it's setup to provide a variable skill bonus. If you want just one item that provides an unchanging/set skill bonus, then a lot of the code isn't needed...
  15. zerodowned

    UORespawn

    This looks interesting and a lot like something I've been wanting to do. Will be looking into this system very soon
  16. zerodowned

    A couple of scripts I got claude3 to make

    looks cool, but if you're in the process of zipping a save file when it tries to save the world then the save process will stop and it won't be able to save again until you restart the server effectively leaving your with hours/days/more of lost play that can't be saved this process might work...
  17. zerodowned

    Looking for Auto-loot familiar/Pet script or make one or get help making one?

    HordeMinionFamiliar https://github.com/ServUO/ServUO/blob/c11047d380248e014a63c54648171cc2890423cf/Scripts/Mobiles/Summons/HordeMinion.cs#L92
  18. zerodowned

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

    Anytime it has "local" in it, it's going to use a cliloc
  19. zerodowned

    Xanthos Shrink System errors

    Not sure why that's in there, but as long as it's set so you can't shrink something unless it's tamed, then that section of code isn't needed not sure why that's in there, but just edit it to whatever expansion you're using AddLabel( 205, 180, NewsGump.kDataColor, "Samurai Empire");
  20. zerodowned

    I have some questions and could use some explanations please

    Scripts/Items/Consumables/EodonPotions.cs I'm not sure why it isn't showing up in your search but seems like it might be fully indexed yet. Might want to try googling "windows 10 search for file not found" or whatever is relevant to your OS. If you have an HDD those always seemed to index...
Back