Hi,
There are several sources on licensing, including, but not limited to the following:
They somehow require a server or a license file. I don't want any of that. LOL
Is it possible to check for the first 11 digits of the license?
I was thinking of doing something like
approved_license_serial = []
if user_license in approved_license_serial:
# Register Plugin
else:
#Pass
The problem is I can't retrieve the 11 digits reliably.
For example, my true 11 digits is 14004030666
(Correct me if I'm wrong but there is no harm posting this since they would require the other values).
When I execute the c4d.GeGetSerialInfo()
, all I get is
{'city': '', 'street': '', 'name': 'Rebenrio Traje', 'country': '', 'licenseId': 'e5ae5e5a-2a77-4b89-a6d6-c16316856b1e', 'organization': ''}
I can't find the 14004030666
figure on the dictionary so I can't perform the check.
Is there a way around this?
Regards,
Ben