Go to Simba/Includes/SRL, is there an SRL.simba file?
Printable View
there is an srl.scar, but no srl.simba
Yes grats i got those errors
I just copy and pasted that code and now it says
Exception in Script: Plugin(irokiplugin32) has not been found
On the top click the SRL tab -> settings "override update"
then click the update button, that should fix it... if not something is broken!
oh ok, yea I installed it last night on a different machine, not sure why irokiplugin isn't there
go to your 'plugins' folder in /simba/plugins
put the attached in there
I already did that Coh3n told me to do that
and so i did it again and got the same error above
yea I'll message wizzup and tell him the irokiplugin is missing
nvm he is on the bottom of the thread lol
you can grab it here,
What is in the Plugins/ folder?
In the plugins folder there is:
LibReflection.dll
libsmart.dll
RefCalculationsLib.dll
Mine (last night) had only these circled ones:
http://i.imgur.com/01b62.jpg
Kudos to you grats. ILY Man It worked. ILY MAN
when i try to run scripts it pops up with smart but then smart just remains black... anyone know how to fix?
Added irokuplugin to updaters.
Okay Danny. Follow my tutorial located in the MSI>Tutorial section from start to finish. Post there for anymore questions, if it doesn't work will talk over MSN and figure it out.
I don't have/use msn, I have took screen shots below of the folders
Plugins Folder:
http://img64.imageshack.us/img64/3189/pluginsfolder.png
SRL\Core Folder:
http://img94.imageshack.us/img94/605/srlincludes.png
MSI\Core Folder:
http://img841.imageshack.us/img841/827/msifolder.png
Your plugin folder is wrong sir. I have to go now as I have a class.
http://villavu.com/forum/showthread....031#post838031
Follow that tutorial from start to finish. (delete everything etc)
That's not right... SPS needs to be in Simba/Includes/ not Includes/MSI/MSI/Core/.
His plugins folder is fine, the Reflection plugins don't matter.
Hmm i'm sure the it said place it inside /Core folder
edit
I remove it from /Core to SRL and
Code:Exception in Script: Unable to find file 'sps/sps.simba' used from 'C:\Simba\Includes\MSI/MSI/Core/Setup.simba'
Ok there is no file named sps.simba in the zip archive downloaded from
Edit:Code:http://villavu.com/forum/showthread.php?t=66266&highlight=setup
I have tried both of these guide to install SPS same error: sps\sps.simba missing
This guide: http://villavu.com/forum/showthread.php?t=67354 this one told me to put it in /SRL/Core
and this guide: http://villavu.com/forum/showthread.php?t=57723 This one doesn't work either
No sps.simba anywhere
What is this error:
Exception in Script: Unable to find file 'reflection2\reflection.simba' used from ''
When running script?
I don't think reflection works no more
you need to download reflection2
http://villavu.com/forum/showthread.php?t=65965
do you mind if i repost your tut on sythe?
EDIT: One problem solved, got SMART to work, yaay :)
If i drag crosshair to Rs client, trying to run a simple script to open bank, then everything compile fine, it opens bank in ~10 secouds, moves mouse around randomly, then when bank i open i should bank all, but it just ends script. using this:
Simba Code:program new;
//{$DEFINE SMART}
{$i srl/srl.scar}
begin
ClearDebug();
SetupSRL();
Wait(2000 + Random(300));
OpenBank('vwb', True, False);
Wait(3000 + Random(300));
if not (InvEmpty) then
DepositAll;
end.
What could be wrong?
Why not just link to this thread in a thread on Sythe? Will ensure that thread is always updated as well. ;)
OpenBank could be buggy, that may be why it took so long to open the bank. Some colours may need to be updated.
I know DepositAll works as MSI uses it for its banking. Try this:
Simba Code:OpenBank('vwb', True, False);
if (WaitFunc(@BankScreen, 50, 3000)) then
if (not(InvEmpty)) then
DepositAll;
Thanks Coh3n, btw nice work with MSI :cool:
Looks like bank is buggy yes, and it doesn't empty inv also.
It knows when bank is open, but doesn't deposite all:
I tried "InvEmpty" function, took like 6-7 seconds :(Simba Code:if BankScreen then
begin
WriteLn('yay bank open');
if (not(InvEmpty)) then
DepositAll;
end;
Simba Code:if InvEmpty then
WriteLn('yay bank open');
So reason why it won't bank is something wrong with depositAll? Ok, tried this:
Simba Code:program new;
//{$DEFINE SMART}
{$i srl/srl.scar}
begin
ClearDebug();
SetupSRL();
Wait(2000 + Random(300));
DepositAll;
end.
Result(i had 10 shripms in inv :p):
So any idea how long will it take to get SRL fixed? Sad, spent almost 2 days in scripting and then started to test and nothing works :(Quote:
SRL Compiled in 0 msec
** Warning in DepositAll: No items to deposit **
Successfully executed.
But nice to be back-good old Pascal scripting :spot:
It's working fine for me? :confused:
Try it in SMART. It shouldn't make a difference, but for some reason I think it may. Also make sure your graphics settings are set properly (lowest detail, highest brightness).