Last active
May 5, 2018 23:54
-
-
Save Davnit/c138fb2b363e95287727f27095c409e4 to your computer and use it in GitHub Desktop.
Hotfix for StealthBot clan support after the update on May 1, 2018
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Script("Name") = "Clan Hotfix" | |
Script("Author") = "Davnit" | |
Script("Major") = 1 | |
Script("Minor") = 0 | |
Sub Event_Load() | |
If IsOnline And Len(Clan.Tag) > 0 And Clan.Self.Name = vbNullString Then | |
Clan.RequestMemberList | |
End If | |
End Sub | |
Sub Event_LoggedOn(Username, Product) | |
If Len(Clan.Tag) > 0 Then | |
Clan.RequestMemberList | |
End If | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment