Столкнулся с такой же проблемой вот только что. Рабочего решения еще нет?
Compiling releases fails, after PASSWORD RESET
-
@outsider said in Compiling releases fails, after PASSWORD RESET:
Recently i changed my password on bablosoft, from then i cannot get my scripts compiled
Any quick solution to this?
Is the problem repeated on all scripts or only on one?
-
@outsider said in Compiling releases fails, after PASSWORD RESET:
The problem is indeed only on 1 script, i can compile my other scripts.
Any future solution?Check the names, standard values, or resource descriptions for emoticons or other unicode characters
-
@outsider said in Compiling releases fails, after PASSWORD RESET:
If you have any other solutions please let me know, thank you @Fox
there is no unicodes in my code i have checked everywhere
Send me the script in private messages, I'll take a look. But I am 99% sure that the problem is in the names, descriptions or standard values of resources.
By the way! Which version of BAS are you using?
-
@outsider said in Compiling releases fails, after PASSWORD RESET:
@Fox most surely the latest 26.3.0, sending you xml script
The problem was the smilies in the nodejs action. They need to be escaped to base64. Replace the string in node js:
.setDescription(`🪙 | Token: ${token}\n 👾 | Username ${user}\n ✔️ | Verified Email`)on:
.setDescription(Buffer.from("8J+qmSB8IFRva2VuOiAke3Rva2VufVxcbiAgICAgIPCfkb4gfCBVc2VybmFtZSAke3VzZXJ9XFxuICAgICDinJTvuI8gfCBWZXJpZmllZCBFbWFpbA==", "base64").toString('utf-8'))