Housing

Package for house multis.

Method: House

All function into house's method.

// var house := mobile.mutli OR item.multi;

house.CanAccess( mobile );
house.CanCommand( mobile );
house.GetAccessInt( mobile );

// Owner
house.GetOwner();
house.IsOwner( mobile );

// Co-Owners
house.GetCoOwners();
house.IsCoOwner( mobile );

house.AddCoOwner( mobile );
house.SetCoOwnersList( array );

// Friends
house.GetFriends();
house.IsFriend( mobile);

house.AddFriend( mobile );
house.SetFriendsList( array );

// Banned
house.GetBanned();
house.IsBanned( mobile);

house.AddBan( mobile);
house.SetBanList( array);

Last updated

Was this helpful?