Wishy Posted August 23, 2021 Share 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? Quote Link to comment Share on other sites More sharing options...
Larsen Posted August 23, 2021 Share Posted August 23, 2021 When they type in chat, they got diffent icons infront of their names. Thats the difference Quote Link to comment Share on other sites More sharing options...
Wishy Posted August 23, 2021 Author Share 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 Quote Link to comment Share on other sites More sharing options...
Gunman Posted August 24, 2021 Share 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 Quote Link to comment Share on other sites More sharing options...