Search results

  1. Anon the Felon

    How to replace buff icon cliloc string with string.

    You can apply the same blank cliloc logic to the title, you just need two differently numbered blank clilocs. The break method would also work, but has issues with certain UI elements I believe. There are corner cases where it would display the full name plus description (since it would be one...
  2. Anon the Felon

    Account Tag on Creation

    Above any statement that will give the method return. Something like: private static Mobile CreateMobile(Account a) { #region Iomega0318 - Charater Stats Display if (a.GetTag("displayStats") == null) { a.SetTag("displayStats", "0")...
  3. Anon the Felon

    Account Tag on Creation

    In literal creation, not the eventsink. There is a moment in the creation process that the player is created. moved into the world, that's a good moment. Edit: The CreateMobile(Account a) method, that's a nice clean moment to create/read/write an account tag.
  4. Anon the Felon

    Account Tag on Creation

    On character creation, as the player is put in the world and moved to the starting location.
  5. Anon the Felon

    Legality of RunUO

    Also, NFTs are about the stupidest thing. You don't need to try to infect everything with them.
  6. Anon the Felon

    Server

    Well, have you configured properly? Do you have your client data set up? Have you looked for any error logs? Did you ensure you have the dependencies?
  7. Anon the Felon

    Shard delete characters due no name

    Is it possible you don't have permissions to write the save file?
  8. Anon the Felon

    How to add custom animations to UO

    Various clients, Odyssey is a good source.
  9. Anon the Felon

    Edit saved crafted item properties

    [props then target the item.
  10. Anon the Felon

    Ironman with all animations.

    Well, I think if you compiled this into an H, it'd be highly usable.
  11. Anon the Felon

    Ironman with all animations.

    This is actually a pretty good animation, but there are two problems for my particular use case. It's scaled just a little too big, probably needs to come down just 5%-8% to look right. The crotch to knee ratio doesn't make sense against the player animation. It's not positioned properly...
  12. Anon the Felon

    Pet attacks Tamer

    I played on Sonoma! That shard had the best community.
  13. Anon the Felon

    Paperdoll modifications

    This can easily be done through ClassicUO.
  14. Anon the Felon

    StatScroll Drop on BaseCreature

    This is just creating a list of people to give the scrolls to, it's not creating and distributing the scrolls. Keep looking at the Harrower and BaseChampion, there are several methods called to create power/stat scrolls.
  15. Anon the Felon

    Create World

    The clearfacet command can be used after you create the world to purge the deco off a specific map.
  16. Anon the Felon

    Pre-AOS Magic Reflection

    ServUO doesn't really support old eras any more. It is doing the modern function, which is a resist buff. You will have to recode it to work as spell reflect.
  17. Anon the Felon

    Single player Core

    Having them spout the quest strings would be easy, mobile interacts with questor and just fetches all the info off of them right? Problem becomes them achieving objectives. Off the top of my head, you'd have to nest a location in the quest for your AI to read and then teleport to so they could...
  18. Anon the Felon

    Single player Core

    Serv, pulled years ago and updated a few necessities by hand. Closest would be the 57 branch of the current core, since I'm not looking for retail content. The AI is all built by me, and unfortunately I cannot. The system is deeply integrated into my shard, few things in a simulation are...
  19. Anon the Felon

    Single player Core

    Very doable. I do have a suggestion though: Don't think of the simulated players as "bots". Programming an AI to locate a housing plot and place house, then deco it, then place a vendor is a monumentally tedious task. Instead, think of them as clever NPCs. You could make a "pvm warrior"...
  20. Anon the Felon

    Healer Camps

    You can use [xmlfind to search for the camp, or use [wipe and box where the camp is to delete it.
Back