Search results

  1. bishou

    About Serialize/Deserialize

    My problem is here: public virtual void Serialize(GenericWriter writer) { writer.Write(0); //writer.Write(m_Account); // Error Here writer.Write(Points); } public virtual void Deserialize(GenericReader reader) { int...
  2. bishou

    About Serialize/Deserialize

    I'm working on an Account Values System similar to ServUO's Points System but I have a few questions. Is it possible serialize/deserialize an account? How? This is my first try: namespace Customs.Engines { public abstract class AccountValuesSystem { public static string...
  3. bishou

    About selling recipes

    Is it possible to add (and how) a RecipeScroll to SBInfo? For example, add RecipeScroll(453) (Scrappers Compendium recipe). Thanks!
  4. bishou

    Cannon Deeds not deleteing

    If you have GM Status the deed never be deleted.
  5. bishou

    1 quest per account

    I'm thinking in a different custom quest but I have a question. Is it possible to make the quest only once per account without using tags? some code similar to RestartDelay but for all the accounts.
  6. bishou

    Help with GiftGiving

    But if I set DateTime Start (2016, 12, 1) and loggin today (2016, 12, 14) why don't works? what datetime start i need if I wish to begin the event on (2016, 12 , 25)? I need restart the shard and kick all players?
  7. bishou

    Help with GiftGiving

    Using GiftGiver.cs of ServUO. Trying with a fresh ServUO (changing MinimumAge to TimeSpan.FromSeconds(5.0);) and have the same problem.
  8. bishou

    Help with GiftGiving

    With this code works in an owner account but no in an player account (last login a few minutes ago) If I change DateTime Start, for example (2016, 12, 1), then not works. I tried also with an old account (last login 1 year ago) and runs. Maybe the problem is with time? using System; using...
  9. bishou

    Help with GiftGiving

    Does anyone know how to run this service? I see Winter2004.cs and I have used it like example but I cannot make it work :(
  10. bishou

    Arrow PM (private message)

    Most people uses Knives System, maybe other systems are in Runuo's backups posted in the forum ;)
  11. bishou

    2 Questions For everyone

    I think that important pre-uopfiles are near 7.0.21 (check this with EasyUO and macro that read the titles for example mining/lumber). there's the limit if you are going to edit map files for example.
  12. bishou

    Item weight for imbuing

    https://github.com/ServUO/ServUO/blob/master/Scripts/Skills/Imbuing/Core/Imbuing.cs Line 687
  13. bishou

    About gumps

    Thanks for the info :)
  14. bishou

    About gumps

    Hi all, I'm working in a big gump with a lot of images, labels etc. It's all ok but when i open it console shows me this: http://imgur.com/QP3KOnM It can be a problem? thanks ;)
  15. bishou

    gargoyle clothing and armor

    Nope. Alter only changes human/elfs to gargoyle, but maybe you can make a custom system (called for example unalter) that make this change ;)
  16. bishou

    Secure Trade Scroll Removal

    If you have full ServUo updated review CurrentExpansion.cs Here you can configure: Core.Expansion = Expansion; AccountGold.Enabled = Core.TOL; AccountGold.ConvertOnBank = true; AccountGold.ConvertOnTrade = false; VirtualCheck.UseEditGump = true;
  17. bishou

    New US patch for new expansion

    Ok now... it runs! Someday all people use the same Decimal Separator -.-U https://en.wikipedia.org/wiki/Decimal_mark#/media/File:DecimalSeparator.svg Maybe it's a good option that all ServUO's code count for locale config to solve other future "bugs" ?
  18. bishou

    New US patch for new expansion

    Hello! I record a video with all steps starting with download ServUo zip file. https://mega.nz/#!tl9mFbYL!SXR1QoA9XjfR8NwISc_2pQxn4bOhyoONxmznYuNUruA I hope this video will be usefull
  19. bishou

    New US patch for new expansion

    My last test with all steps: * Download ServUO.zip from ServUO repo * Compile * Create owner account and login. * Add npc Banker * Bank and drop 1k -> Balance -> "Thy current bank balance is 0 platinum and 1.000 gold" * Restart -> Balance -> "Thy current bank balance is 0 platinum and 1.000...
  20. bishou

    New US patch for new expansion

    I use this changes and i think there is a little problem. If you have, for example, 100k gold (bank + gold that you deposit on it) system coverts it in 100k platinum EDIT: It's possible that's only happens when you have a previous save and update the shard with the new system EDIT2: Mmm...
Back