Wishy Posted August 23, 2021 Posted August 23, 2021 Has anyone got an idea how to differentiate between types of accounts? E.g. HCIM -> Reg Iron -> UIM -> Normie Ive tried Widgets and Configs and cant find any difference?
Larsen Posted August 23, 2021 Posted August 23, 2021 When they type in chat, they got diffent icons infront of their names. Thats the difference
Wishy Posted August 23, 2021 Author Posted August 23, 2021 4 minutes ago, Larsen said: When they type in chat, they got diffent icons infront of their names. Thats the difference If only it was that easy
Gunman Posted August 24, 2021 Posted August 24, 2021 On 8/23/2021 at 11:21 AM, Wishy said: Has anyone got an idea how to differentiate between types of accounts? E.g. HCIM -> Reg Iron -> UIM -> Normie Ive tried Widgets and Configs and cant find any difference? Did you try the API method for it? https://osbot.org/api/org/osbot/rs07/api/Client.AccountType.html AccountType currentAccountType = getClient().getAccountType(); if (currentAccountType.equals(AccountType.NORMAL)) { log("Account type is NORMAL"); } //etc Don't remember which equals is most conventional here, but either one should work I think