Should Home owners be able to be co-owners of other houses?

Discussion in 'Renaissance Discussion' started by LaggMaster, Jul 17, 2017.

Should Home owners be able to be co-owners of other houses?

  1. Homeowners should be able to become co-owners on other houses

    29 vote(s)
    67.4%
  2. Homeowners should not be able to become co-owners on other houses

    9 vote(s)
    20.9%
  3. I don't care

    5 vote(s)
    11.6%
  1. LaggMaster

    LaggMaster Active Member

    Joined:
    May 13, 2017
    Messages:
    122
    Likes Received:
    52
    Should Home owners be able to be co-owners of other houses?
  2. PaddyOBrien

    PaddyOBrien Well-Known Member

    Joined:
    Aug 12, 2014
    Messages:
    3,252
    Likes Received:
    4,472
    Yes, but it's wishful thinking :(
  3. LaggMaster

    LaggMaster Active Member

    Joined:
    May 13, 2017
    Messages:
    122
    Likes Received:
    52
    If we hit 20 yes votes, I will post the server code mod and Chris can use it if he wants to.
    One and PaddyOBrien like this.
  4. FireDog

    FireDog New Member

    Joined:
    Jun 14, 2017
    Messages:
    9
    Likes Received:
    4
    yes. I dont see why not.
    PaddyOBrien likes this.
  5. PaddyOBrien

    PaddyOBrien Well-Known Member

    Joined:
    Aug 12, 2014
    Messages:
    3,252
    Likes Received:
    4,472
    Would be excellent if he'd take you up on that. I don't really see why it would be an issue, its more just an annoyance to not allow house owners to be co owners than anything. I don' tknow if there is any legit reason to have it in the current way, where house owners can't be co owners?
  6. Milky Milkerson

    Milky Milkerson Active Member

    Joined:
    Dec 3, 2016
    Messages:
    333
    Likes Received:
    179
    The thing is, they already can be. They just have to co-own the house before becoming the owner. It just means a lot of transferring houses back and forth to get a new one set up. Seems like a lot of tedious crap for nothing.
    PaddyOBrien likes this.
  7. LaggMaster

    LaggMaster Active Member

    Joined:
    May 13, 2017
    Messages:
    122
    Likes Received:
    52
    BaseHouse.cs
    Code:
    public void AddCoOwner( Mobile from, Mobile targ )
            {
                if ( !IsOwner( from ) || m_CoOwners == null || m_Friends == null )
                    return;
    
                if ( IsOwner( targ ) )
                {
                    from.SendLocalizedMessage( 501360 ); // This person is already the house owner!
                }
                else if ( m_Friends.Contains( targ ) )
                {
                    from.SendLocalizedMessage( 501361 ); // This person is a friend of the house. Remove them first.
                }
                else if ( !targ.Player )
                {
                    from.SendLocalizedMessage( 501362 ); // That can't be a co-owner of the house.
                }
                else if ( HasAccountHouse( targ ) )
                {
                    from.SendLocalizedMessage( 501364 ); // That person is already a house owner.
                }
                else if ( IsBanned( targ ) )
                {
                    from.SendLocalizedMessage( 501367 ); // This person is banned!  Unban them first.
                }
                else if ( m_CoOwners.Count >= MaxCoOwners )
                {
                    from.SendLocalizedMessage( 501368 ); // Your co-owner list is full!
                }
                else if ( m_CoOwners.Contains( targ ) )
                {
                    from.SendLocalizedMessage( 501369 ); // This person is already on your co-owner list!
                }
                else
                {
                    m_CoOwners.Add( targ );
    
                    targ.Delta( MobileDelta.Noto );
                    targ.SendLocalizedMessage( 501343 ); // You have been made a co-owner of this house.
                }
            }
    
    remove this

    Code:
                else if ( HasAccountHouse( targ ) )
                {
                    from.SendLocalizedMessage( 501364 ); // That person is already a house owner.
                }
    
    Last edited: Jul 17, 2017
    Pekka, PaddyOBrien and One like this.
  8. LaggMaster

    LaggMaster Active Member

    Joined:
    May 13, 2017
    Messages:
    122
    Likes Received:
    52
  9. Larloch

    Larloch Well-Known Member

    Joined:
    Apr 6, 2016
    Messages:
    3,449
    Likes Received:
    2,482

    Do you really think he needs your code? I am not tryin to be a total prick, but jeez give the dude some credit. You make it out like @Chris leaves these issues here because he cannot fix them. Dude is a super coder, dont insult him with that.


    Side note, I voted yes. If house security requires you to unlock and move blocking items, tables and boxes, then all who need those powers should be able to get them.
    Deacon and snap dragon like this.
  10. PaddyOBrien

    PaddyOBrien Well-Known Member

    Joined:
    Aug 12, 2014
    Messages:
    3,252
    Likes Received:
    4,472
    Putting the code there is actually a good idea, so the idea can't be overlooked just because it would require new code and time. There's the code, if it works, no time required?
    Pekka likes this.
  11. One

    One Well-Known Member
    UO:R Donor

    Joined:
    Jun 22, 2015
    Messages:
    5,818
    Likes Received:
    5,097
    .
    Last edited: Feb 5, 2023
    Pekka and PaddyOBrien like this.
  12. LaggMaster

    LaggMaster Active Member

    Joined:
    May 13, 2017
    Messages:
    122
    Likes Received:
    52
    Not sure where you get that I make it out that he leaves the issues here because he cannot fix them. He is currently working on a massive patch and some of these items are low on the priority list. All I am trying to do is find out if other players would like something to be changed, if they do, I will mod it out and Chris can decide if it's something he wants to push to the test server.

    If you have anything you want to be fixed, and you show that it's something the server wants, PM me with a link to the thread the server voted in.
    PaddyOBrien, Jill Stihl, One and 2 others like this.
  13. Pekka

    Pekka Well-Known Member

    Joined:
    Mar 31, 2017
    Messages:
    754
    Likes Received:
    503
    I really like the initiative that you @LaggMaster is doing. :)

    It is very annoying to have a house owner that is not co-owner of my other houses and that they cant even place a bloody Trash Barrel... ;)
    One likes this.
  14. Pirul

    Pirul Well-Known Member
    UO:R Subscriber

    Joined:
    May 16, 2013
    Messages:
    3,219
    Likes Received:
    2,468
    I'm sure he can code it in 5minutes...in his sleep.

    The issue is mostly testing to be sure of its correct application, that it cannot be exploited and that it does not break any other part of the system. I am not a coder, so I do not know how @Chris feels about someone "helping" him expedite his job, but what I do know is that the actual coding is a miniscule part of what needs to happen to apply a change to the live server.
    One likes this.

Share This Page