
Originally Posted by
psyno
Well that's a silly question, but here goes.
Code:
program EdgevilleCrafter;
{$DEFINE SMART}
{$i SRL/srl.simba}
{$i ObjectDTM/ObjDTMInclude.simba}
In case you're still wondering, I did try to add that line you posted before, and it still gave the same error. I've searched the forum and google but in vain, I just don't get it.
I was hoping to see some sort of issue wherein you were somhow lacking your {$DEFINE SMART} declaration, as that should be including most paint related actions. I really have no idea why this is happening for you either, noone else has had this issue, and I can't seem to find an answer from anyone else I know on your specific issue. Is there any chance your SIMBA isn't fully updated? Have you installed SMART8? Are you having any issues with other scripts that use
If this is entirely unique, while this isn't a true fix and it will remove drawing the debug options, try deleting lines 459-463:
Simba Code:
SMART_DrawTextEx(True, 0, 0, LoginChars, '', 13158600);//This will clear the debug screen.
for i:=0 to (numDebugMessages-1) do//Draw the list of debug order newest at top.
begin
SMART_DrawTextEx(False, 12, (120 + (15 * i)), LoginChars, DebugMessages[i], 13158600);
end;