How to change the value of sliced data

Hello is it possible to change the value of data? like, sliced data is [email protected]:testpass and i wanna to change it to [email protected]:testpass with lolicode is it possible?

the value of the sliced data should change in jobs too

Yes it is possible, the whole data line is in data.Line.Data and can be changed as you wish from LoliCode like

data.Line.Data = "hello";
1 Like

yo ruri it worked well but when i tried this

data.Line.Data = $"<USSER>:<input.PASS>";

in jobs it returns
image

You cannot use LoliCode syntax because that is a C# statement so you have to use C# syntax, which uses curly braces

data.Line.Data = $"{USSER}:{input.PASS}";
1 Like

thanks ruri now it works :cowboy_hat_face: