
Originally Posted by
mx1000
From 07 'beta' srl, get the corrosponding param's class.
Alright, thanks guy!
Managed to stumble upon another issue now
Code:
Compiled successfully in 750 ms.
SRL Compiled in 0 msec
** Smart Cannot Spawn Clients **
Successfully executed.
That's all it says, no errors or anything, it just outputs that message. I suspect something's wrong with this part;
Simba Code:
If (Result > 0) Then
begin
try
SetEIOSTarget('libsmartremote', ToStr(Result));
Writeln('Loading SMART: http://oldschool' + World + '.runescape.com');
except
WriteLn('** Fatal Error: Pairing Clients; Terminating Script **');
TerminateScript;
end;
end else
begin
Writeln('** Smart Cannot Spawn Clients **');
TerminateScript;
end;
It appears it skips the
Simba Code:
begin
try
SetEIOSTarget('libsmartremote', ToStr(Result));
Writeln('Loading SMART: http://oldschool' + World + '.runescape.com');
except
WriteLn('** Fatal Error: Pairing Clients; Terminating Script **');
TerminateScript;
end;
I got no clue as to why it would do that, trying different things right now.
[Edit]
If I remove
Code:
{$ELSE}
SetupSmart(Smart_ForceNew);
from srl the debug starts spamming number up to 201 and then lots of
Nothing found, moving compass around.
not sure why.