Log in

View Full Version : GetUpText not working?



Gillbz
06-02-2007, 08:33 AM
I was in the middle of my rune mystries quest compleater when i needed to talk to someone. I used get GetUpText and it didn't work. I then made this and ran it:
program New;
{.include SRL/SRL.scar}
begin
SetupSRL;
repeat
writeln(GetUpText)
until(false)
end.

All i got was:









Anyone else having problems?

Fearlesssss
06-03-2007, 09:32 AM
The funtion GetUpText is not something that you can put in a Writeln. First u need scar to search for it. Here I fixed it:

program New;
{.include SRL/SRL.scar}
var
ThaUpText: string;

begin
SetupSRL;
ThaUpText:= GetUpText;
writeln(ThaUpText)
end.

I think It's works you should try it out.