Log in

View Full Version : Help Please!



lilmike
03-20-2008, 08:13 PM
Hi,

I'm using the script of ZephyrsFury; Zephyr's Draynor Yew Gatherer Link (http://www.villavu.com/forum/showthread.php?t=25775)

and every time i run it i get this error:


[Runtime Error] : Exception: Access violation at address 02CF10AB in module 'Embedded SMART.dll'. Read of address 00000054 in line 48 in script C:\Program Files\SCAR 3.14\includes\SRL/SRL/misc/SMART.scar

for people who wanna know the line:

result:= SmartGetColor(x, y);

I know you have to put {$DEFINE SMART} as first line in smart.scar i did that but i still get the error so what is wrong?

kelly slater pro surfer
03-20-2008, 08:23 PM
maby its the script?

KoKouKo
03-20-2008, 08:39 PM
complete guesses

1) move plugins

2) reinstall SRL

drizzt
03-20-2008, 11:51 PM
I know you have to put {$DEFINE SMART} as first line in smart.scar i did that but i still get the error so what is wrong?
wrong, it makes it easier if you follow the whole tut, if that is all you did, go re-read the tut, http://www.villavu.com/forum/showthread.php?t=21279
or read the smart release page, that gives enough info to modify the script

Cazax
03-20-2008, 11:55 PM
Just:
{.include srl/srl/misc/smart.scar}

and :
SmartSetupEx(SmartWorld, False, True);
SetTargetDC(SmartGetDC);

and delete all the other stuff.

KoKouKo
03-21-2008, 07:36 AM
try running this

program Test;
{.include SRL/SRL.scar}
{.include srl/srl/misc/smart.scar}

begin
SmartSetupEx(131, False, True);
SetTargetDC(SmartGetDC);
SetupSRL;
Wait(30000);
Writeln('KoKouKo is gangster'); // ??????????????????????
end.