ex:(player 1 see x:0 y:0 z:0, player 2 see x:200 y:400 z:0, player 3 se,...)
I would need something similar
Code: Select all
script 1 open clientside{
while(true){
print(s:"X:",f:getactorx(0), s:"\nY:", f:getactory(0), s:"\nZ:", f:getactorz(0));
delay(1);
}
}
I thinked doing getactorx(ConsolePlayerNumber()) but it returned a 0 value or the server position '-'
Any Idea how to do it work? (That code is just an example, because the original code is too big, and that´s the only part that I don´t know how to solve it)