So i have noticed, on my own that GetUpText Fails in Scar 3,21. But in Scar 3,22 it works brilliantly.
Test:
Scar 3,22 :
PHP Code:
program New;
begin
repeat
if Length(rs_GetUpText) <> 0 then begin Writeln(rs_GetUpText);
Disguise(rs_GetUpText);
end;
until (False);
end.
Scar 3,21:
PHP Code:
program New;
begin
repeat
if Length(rs_GetUpTextAt(8, 8, 25)) <> 0 then begin Writeln(rs_GetUpTextAt(8, 8, 25));
Disguise(rs_GetUpTextAt(8, 8, 25));
end;
until (False);
end.
Why i use rs_GetUpTextAt in last Test? Because in Scar 3,21 Rs_GetUpText Fails Big time.
So please update 
EDIT: I know that Scar 3,23 is the newest one, but i don't use SVN 
At least update to Scar 3,22
~Home