ITLongwell / mondains-legacy

Automatically exported from code.google.com/p/mondains-legacy
0 stars 0 forks source link

Bravehorn Bug Quest #13

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I set my max followers to 244 and still cannot escort him. Says I have too
many followers.

He also don't give his Defending The Herd Quest gump for me either.

Original issue reported on code.google.com by uorevolu...@gmail.com on 6 Aug 2008 at 7:57

GoogleCodeExporter commented 8 years ago
And Regular players cant do the quest cause of that bug.

Original comment by uorevolu...@gmail.com on 6 Aug 2008 at 7:58

GoogleCodeExporter commented 8 years ago
the problem is here in BasEscort script.

BaseEscort escortable = (BaseEscort) m_EscortTable[ m ];

            if (escortable != null && !escortable.Deleted && escortable.GetEscorter()
== m)
            {
                Say(500896); // I see you already have an escort.

                return false;
            }
            else if ( m.FollowersMax - m.Followers > ControlSlots )
            {
                Say("You have too many followers to escort." );

                return false;

Original comment by uorevolu...@gmail.com on 7 Aug 2008 at 11:19

GoogleCodeExporter commented 8 years ago
Ok some got a fix on RunUO change the top code above posted to this.

    else if (m.Followers + ControlSlots > m.FollowersMax)
            {
                Say("You have too many followers to escort.");
                return false;
            }

Original comment by uorevolu...@gmail.com on 8 Aug 2008 at 9:57

GoogleCodeExporter commented 8 years ago
Fixed in SVN 16.

Original comment by gje...@gmail.com on 8 Aug 2008 at 9:47

GoogleCodeExporter commented 8 years ago

Original comment by gje...@gmail.com on 8 Aug 2008 at 9:48