Hey, i just used the Plugin SDK to get the VIRTUALSERVER_UNIQUE_IDENTIFIER by using:
I noticed, that two of my bookmarked servers have the same Unique Identifier... how is that possible? As i own one of these Servers, i even reinstalled it. Still the same identifier. Whats going on here? How can i distinguish two servers using the plugin sdk?Code:char* ts3server_identifier; void ts3plugin_onServerUpdatedEvent(uint64 serverConnectionHandlerID) { char* ident; if (ts3Functions.getServerVariableAsString(serverConnectionHandlerID, VIRTUALSERVER_UNIQUE_IDENTIFIER, &ident) == ERROR_ok) ts3server_identifier = ident; }