SkíllCāpped Archive/Pręmium Cødes

11/20/2024 13:13 dimonz10#106
@[Only registered and activated users can see links. Click Here To Register...] can you please add [Only registered and activated users can see links. Click Here To Register...]?
11/26/2024 20:40 Nikors#107
Thank you for your work once again. I believe that the key generator doesn't work anymore, or at least it doesnt on the beta for PVE.

EDIT: nvm, its working now, they f.. up their beta update lol.
11/28/2024 20:24 smooth69#108
Could you maybe upload the Subtlety Rogue PVP guide? That would be mint!
11/30/2024 00:14 utkutk#109
[Only registered and activated users can see links. Click Here To Register...] is it possible to get this add on and their settings ?
11/30/2024 10:34 Descentralizado#110
Quote:
Originally Posted by utkutk View Post
[Only registered and activated users can see links. Click Here To Register...] is it possible to get this add on and their settings ?
The addon is free and public for anyone to use

SkíllCāpped Archive/Pręmium Cødes is already the place to get your import string.
12/02/2024 05:15 Ponitya#111
Ret Paladin PvP Guides please!
12/03/2024 22:53 techlaw#112
Quote:
Originally Posted by Ponitya View Post
Ret Paladin PvP Guides please!
I've already replied to someone who wanted a PVP Paladin Guides . [Only registered and activated users can see links. Click Here To Register...]



Quote:
Originally Posted by smooth69 View Post
Could you maybe upload the Subtlety Rogue PVP guide? That would be mint!
Here you go [Only registered and activated users can see links. Click Here To Register...]

Quote:
Originally Posted by muwosc View Post
Thanks for doing this!
Could you add Survival Hunter for both PvP and PvE?
i did not see a PVE one . here is a PVP [Only registered and activated users can see links. Click Here To Register...]


Quote:
Originally Posted by dimonz10 View Post
@[Only registered and activated users can see links. Click Here To Register...] can you please add [Only registered and activated users can see links. Click Here To Register...]?

Here you go [Only registered and activated users can see links. Click Here To Register...]
12/07/2024 05:47 Wrck5tp#113
Looks like the new update broke the import string generator, does anyone have a new one?
12/08/2024 03:07 deadofhill#114
Hello is premium code generator still working?Mine says invalid import string
12/08/2024 11:13 Descentralizado#115
Quote:
Originally Posted by deadofhill View Post
Hello is premium code generator still working?Mine says invalid import string
Does using an older version of the addon, import and then update the addon work?
12/08/2024 12:39 deadofhill#116
Quote:
Originally Posted by 911sky View Post
Does using an older version of the addon, import and then update the addon work?

No sadly it doesn't work.New UI version asks new import code during setup
12/09/2024 01:11 idoa13#117
generator does not work anymore.
12/10/2024 20:17 tehotovisiza#118
Had a friend ask me to take a look a the new SC UI, it's a pretty simple validation method, here is a 'keygenerator' for it, basically the same logic as v1, just a different suffix string.

No support will be given

Code:
import base64

new_config_string = "vridtcetvrdice"
old_config_string = "onimmel"

def generate_import_string(battle_net_id, config_string):
    concatenated = battle_net_id + config_string
    return base64.b64encode(concatenated.encode("utf-8")).decode("utf-8")

battle_net_id = input("Enter your Battle.net ID (e.g., Name#1234): ")

valid_new_code = generate_import_string(battle_net_id, new_config_string)
valid_old_code = generate_import_string(battle_net_id, old_config_string)

print(f"Valid new code (retail) for {battle_net_id}: {valid_new_code}")
print(f"Valid old code (classic) for {battle_net_id}: {valid_old_code}")
12/10/2024 21:26 deadofhill#119
Quote:
Originally Posted by tehotovisiza View Post
Had a friend ask me to take a look a the new SC UI, it's a pretty simple validation method, here is a 'keygenerator' for it, basically the same logic as v1, just a different suffix string.

No support will be given

Code:
import base64

new_config_string = "vridtcetvrdice"
old_config_string = "onimmel"

def generate_import_string(battle_net_id, config_string):
    concatenated = battle_net_id + config_string
    return base64.b64encode(concatenated.encode("utf-8")).decode("utf-8")

battle_net_id = input("Enter your Battle.net ID (e.g., Name#1234): ")

valid_new_code = generate_import_string(battle_net_id, new_config_string)
valid_old_code = generate_import_string(battle_net_id, old_config_string)

print(f"Valid new code (retail) for {battle_net_id}: {valid_new_code}")
print(f"Valid old code (classic) for {battle_net_id}: {valid_old_code}")
Should we edit and change this for old site?
12/10/2024 22:31 Muhu2#120
Quote:
Originally Posted by tehotovisiza View Post
Had a friend ask me to take a look a the new SC UI, it's a pretty simple validation method, here is a 'keygenerator' for it, basically the same logic as v1, just a different suffix string.

No support will be given

Code:
import base64

new_config_string = "vridtcetvrdice"
old_config_string = "onimmel"

def generate_import_string(battle_net_id, config_string):
    concatenated = battle_net_id + config_string
    return base64.b64encode(concatenated.encode("utf-8")).decode("utf-8")

battle_net_id = input("Enter your Battle.net ID (e.g., Name#1234): ")

valid_new_code = generate_import_string(battle_net_id, new_config_string)
valid_old_code = generate_import_string(battle_net_id, old_config_string)

print(f"Valid new code (retail) for {battle_net_id}: {valid_new_code}")
print(f"Valid old code (classic) for {battle_net_id}: {valid_old_code}")
works like a charm - thanks

#edit for retail
For those who need help. Open a jupyter notebook online (google) and copy code

Code:
import base64

new_config_string = "vridtcetvrdice"

def generate_import_string(battle_net_id, config_string):
    concatenated = battle_net_id + config_string
    return base64.b64encode(concatenated.encode("utf-8")).decode("utf-8")

battle_net_id = "" # enter your battletag in this line between " "

valid_new_code = generate_import_string(battle_net_id, new_config_string)

print(f"Valid new code (retail) for {battle_net_id}: {valid_new_code}")
enter your battletag where it's written between " " and shift+enter