@[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...]?
The addon is free and public for anyone to useQuote:
[Only registered and activated users can see links. Click Here To Register...] is it possible to get this add on and their settings ?
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:
Ret Paladin PvP Guides please!
Here you go [Only registered and activated users can see links. Click Here To Register...]Quote:
Could you maybe upload the Subtlety Rogue PVP guide? That would be mint!
i did not see a PVE one . here is a PVP [Only registered and activated users can see links. Click Here To Register...]Quote:
Thanks for doing this!
Could you add Survival Hunter for both PvP and PvE?
Quote:
@[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...]?
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?Quote:
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 - thanksQuote:
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}")
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}")