View Full Version : compiling errors
Master BAW
09-05-2012, 04:23 PM
I haven't used simba for almost 2 months, and today I updated simba to v0.99 and updated the extensions, and copied SMART 8.0 to the plugins folder, but when I try to run my script that I used, I get compiling errors in the SRL includes.... Is there something I forgot?
Grtz, me
Ashaman88
09-05-2012, 04:37 PM
Some of the scripts aren't updated for it yet. What scripts are you trying to use and what is the error?
Master BAW
09-05-2012, 07:00 PM
Some of the scripts aren't updated for it yet. What scripts are you trying to use and what is the error?
It isn't about my script, it is about the SRL scripts... I get a compiling error in SmartParams.simba
Solar
09-05-2012, 07:12 PM
Chances are it's because you haven't edited as instructed in the SMART v8.0 thread and saved. Delete the " , '-1' " and save.
Master BAW
09-08-2012, 04:21 PM
Thanks Solar, but now I get another error:
[Error] C:\Simba\Includes\SRL/SRL/misc/paintsmart.simba(42:33): Unknown identifier 'SmartGetDebugDC' at line 41
Compiling failed.
I am using smart 8.0
What should I change?
Edit:
Sorry, I believe this change helped me to fix it :) It's working now:)
this:
SMART_SERVER := 10;
SMART_MEMBERS := TRUE;
SMART_SIGNED := TRUE;
SMART_SUPERDETAIL := FALSE;
to this
{$IFDEF SIMBAMAJOR980}
SMART_SERVER := 10;
SMART_MEMBERS := TRUE;
SMART_SIGNED := TRUE;
SMART_SUPERDETAIL := FALSE;
{$ELSE}
SRL_SIXHOURFIX := TRUE;
SMART_FIXSPEED := TRUE;
{$ENDIF}
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.