Recent content by Lena80

  1. Lena80

    UO OpenAI Project

    so there will never be an Runuo version right?, some of us still use Runuo hehe, great implementation!
  2. Lena80

    Night system help

    currently we have some kind of night system using LOS, but it lacks immersion since the light still there
  3. Lena80

    Night system help

    My friend wants to make a night system, but it would be useless since light is client sided, and players can have always light on is there a way or any idea for a night system wich cannot be bypassed by client? thanks!
  4. Lena80

    Shard delete characters due no name

    Very good info @GoldDraco13 , What about not saving the namemod on worldsaves? that require a core mod i guess
  5. Lena80

    Shard delete characters due no name

    maybe the only work around is to use some kind of persistance just like disguise kit? because namemod seems to end up bugged
  6. Lena80

    Shard delete characters due no name

    thanks for your help, it crash, null reference, line 36 if (pm.Name == null) , i had to modify few lines because it was giving me errors List<PlayerMobile> badPlayerList = new List<PlayerMobile>(); foreach (var mobile in World.Mobiles.Values) {...
  7. Lena80

    Shard delete characters due no name

    Seems like a glitch in the Core ? You are right characters have null name, ''Seee'' is the one i had to create, did the same thing you did, gave the name back and could log in again, very weird tried to add the next code onlogin method inside PlayerMobile.cs, it does nothing if (from.Name ==...
  8. Lena80

    Shard delete characters due no name

    thats what console shows up upon login
  9. Lena80

    Shard delete characters due no name

    Its the owner account wich gets deleted, after a world save + server restart whats the reason?
  10. Lena80

    Checking list, Xmlattachment count

    Hey im trying to check the attachment count on a player, im using old runuo 2.2, im getting some error, thanks ////CHECKING IF THE PLAYER HAS ALREADY 3 IDENTITIES IF SO, WE RETURN ArrayList a = XmlAttach.FindAttachments(from); if (a != null) {...
  11. Lena80

    Shard delete characters due no name

    HELLO, the character creation screen shows up, so they are deleted i think, im not on my computer right now, iw ill try what you said, later, thanks for your help
  12. Lena80

    Shard delete characters due no name

    Where is this handled? my friend and i were playing with Names and NameMod we end up with names such as "" (no name at all) both characters deleted on login and some error in console saying WriteAsciiFixed null or something like that we are using Runuo 2.2
  13. Lena80

    Checking day of the week?

    So lets say i want to check if its monday inside a script, is there any examples? thanks
  14. Lena80

    Missing a using directive or an assembly reference? error

    Hello thanks for your help, however im not sure if i can accomplish that I added using CharacterCloneAlias = Felladrin.Automations.CloneCharacterOnLogout.CharacterClone; to the top Then added this to mobilenotoriety: CharacterCloneAlias clone2; if (source is PlayerMobile &&...
  15. Lena80

    How to check for Treasuremaps around and check how Completed them?

    got it working, thank you ver much!!!
Back