FoundBar/LoggedIn false positive when 'loading'
http://i.imgur.com/nyqyt.png
FoundBar checks the existence of bitmap 'H' (shown above) of the 'Home' shown by the nav bar. However, it's common to frequently receive the message 'Loading - please wait.' in RS, which coincidentally covers up the H completely, resulting in FoundBar returning false. As FoundBar is used in SRL_ResetNavBar, which is in turn used in LoggedIn, this results in LoggedIn returning false if the function is called while the 'Loading' is displayed, and y offset will be set to -22 instead of -50, resulting in no chance of the script recovering (even multiplayer will fail since it can't log in).
Fix:
I created a bitmap of the 'S' of the 'Support' instead which is not covered up.
Simba Code:
SRL_NAVBAR_BITMAP:= BitmapFromString(8, 13, 'meJzj4pfi4FcS1fFMOnu78sefsF1' +
'nRbXcOPmkOPjkZGwi8198Dd99HkgCpZLP32Xnk2PjU0m/81k+oJJV' +
'3JNLITD5wj31qAp2fmWg4oLXP6x6trJIBrJKBoqaZLAKW7IJaIrpe' +
'mfc+wZE7stPyjhVAaVYxZzZRCzZBXWsWlfEXPkGQe7LToqaZrFKeH' +
'EIarEI26ilzQk5+QmOgBrZBbXFDKOACrgMcgzrN/od/gxEjvPPyPu' +
'Xy4b2AsVZpYKACMh22fYRiCyWv9ea8oJLMYhVwhsipZK7Xqf1uGLZ' +
'YcP5b3RbTwDNAemS8FLJW89lkMsu7qjQ8UJr+hsgUqw4BkTSkXPZR' +
'G24hdXYxZ1EotcodL2SqHvK69jNIaTLJawDAP1wcSY=');
Search area is also changed to 278, 11, 293, 32. Other than that no other changes should be required.
Let me know if i've overlooked anything before i send a pull request.