Skip to content

Instantly share code, notes, and snippets.

@Davnit
Last active May 5, 2018 23:54
Show Gist options
  • Save Davnit/c138fb2b363e95287727f27095c409e4 to your computer and use it in GitHub Desktop.
Save Davnit/c138fb2b363e95287727f27095c409e4 to your computer and use it in GitHub Desktop.
Hotfix for StealthBot clan support after the update on May 1, 2018
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