Hi Papampi
Thanks for mention me in your WTM Script ;-)
If someone like to mine BEAM with wtm switcher you should change the WTM_SWITCHER script from
# filter WTM coins by user selection only
for i in data:
if data[i]["tag"] == "NICEHASH":
data[i]["tag"] = "NICE_" + data[i]["algorithm"].upper()
for i in filter(lambda x: data[x]["tag"] not in includedCoins, data):
data.pop(i)
to
# filter WTM coins by user selection only
for i in data:
if data[i]["algorithm"] == "Equihash (150,5)":
data[i]["algorithm"] = "BEAM"
if data[i]["tag"] == "NICEHASH":
data[i]["tag"] = "NICE_" + data[i]["algorithm"].upper()
for i in filter(lambda x: data[x]["tag"] not in includedCoins, data):
data.pop(i)
Hope this helps