This commit is contained in:
unexp 2023-01-20 00:11:38 -03:00
parent 947a139790
commit 891d115276
No known key found for this signature in database
GPG Key ID: BF66F09641C584C8
2 changed files with 3 additions and 3 deletions

0
src/lua/texture.lua Normal file
View File

View File

@ -7,7 +7,7 @@ const app = express.Router()
app.get("/", async (request, response) => {
let jobId = randomUUID()
const client = await soap.createClientAsync(__dirname + "/../../lib/RCCService.wsdl", {}, "http://144.126.135.224:64989/")
const client = await soap.createClientAsync(__dirname + "/../../lib/RCCService.wsdl", {}, "http://127.0.0.1:64989/")
const result = await client.OpenJobExAsync({
job: {
id: jobId,
@ -17,7 +17,7 @@ app.get("/", async (request, response) => {
},
script: {
name: jobId,
script: readFileSync(__dirname + "/../../lua/user.lua", { encoding: "utf-8" }),
script: readFileSync(__dirname + "/../../lua/user_headshot.lua", { encoding: "utf-8" }),
arguments: {
LuaValue: [
{
@ -26,7 +26,7 @@ app.get("/", async (request, response) => {
},
{
type: "LUA_TSTRING",
value: "Avatar",
value: "Headshot",
},
{
type: "LUA_TSTRING",