I found a problem I think it was at a random at least 4 hours while I was sleeping and never logged out lol.. it just looks for trees
The only true authority stems from knowledge, not from position.
You can contact me via matrix protocol: @grats:grats.win or you can email me at the same domain, any user/email address.
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
Ive only been able to get small proggies about 2 hours each because it keeps looking to uptext and cannot find it. Most likely because there are no trees left. Maybe it could look for trees longer?
A common mistake that people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools.
http://www.stats.srl-forums.com/sigs/4360.png
player 6 only leveled twice. I like the slower banking proceedurePHP Code:[=================================================================]
[ Coh3n's Draynor Chop N' Bank! ]
[============================ Rev.27 =============================]
[ ]
[ Ran For: 8 Hours, 2 Minutes and 25 Seconds ]
[ ]
[ Nick T/F Loads Logs Lvls Exp. Brks ]
[ ¯¯¯¯ ¯¯¯ ¯¯¯¯¯ ¯¯¯¯ ¯¯¯¯ ¯¯¯¯ ¯¯¯¯ ]
[ wc01 T 20 560 2 37800 4 ]
[ wc02 T 20 559 1 37732 4 ]
[ wc03 T 20 560 2 37800 4 ]
[ wc04 T 20 560 2 37800 4 ]
[ wc05 T 5 140 2 9450 1 ]
[ wc06 T 20 560 18 37800 4 ]
[ wc07 T 16 448 1 30240 3 ]
[ ]
[=================================================================]
[=================================================================]
![]()
Last edited by twobac; 02-26-2010 at 02:22 PM. Reason: Question
ScarPreRelease 3.23 rev 80, Includes - Dev Rev 457
The banking keeps messing up for me, it relocates about 5 or 6 times on average until it opens the bank.
I seem to have messed up...
Line 14: [Error] (22423:1): Duplicate identifier 'SRLVersionNumber' in script C:\Users\twobac\Desktop\scarprerelease\includes\SR L\SRL\Core\Globals.scar
I have run the SVN update on ScarPreRelease and it is at revision 80
I have also downloaded the includes via scar?
What do i need to do next?
ScarPreRelease 3.23 rev 80, Includes - Dev Rev 457
I used your scripts to check the form support in Simba.. This is what I got after some editing
![]()
Verrekte Koekwous
I should probably add the logout failsafe back in then. Lol.
It doesn't stop looking for trees, if you're cutting Oaks and both the trees are gone, you'll get a lot of uptext errors, and it won't always find the Oak as soon as it grows back.
Nice! And yeah, I added a small wait in there.
Every time? I may have to repick my bank colors...
You can't download the includes via SCAR as they're way outdated. You need the latest version of the Dev SVN.
Wow dude I'm so pumped that it works. I was worried that I'd have done all that work for nothing when I transfer over to Simba.![]()
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
I'm actually surprised my self that it all works.
Here is a patch file to make it work with Simba:
E: You might want to put the "// <-- Remove the '{' to use multiple players!" text outside the { } brackets, since somehow I cannot disable Simba from using nested commentsCode:Index: DCnB_Form.scar =================================================================== --- DCnB_Form.scar (revision 27) +++ DCnB_Form.scar (working copy) @@ -251,7 +251,11 @@ bmp := frmBitmaps[TAB_ACTIVE]; GetBitmapSize(bmp, w, h); SetBounds({L} 50 + (i * 74), {T} 161, {W} w, {H} h); + {$ifdef Simba} + DrawBitmap(Bmp,canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(bmp), Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} isActiveTab[i] := True; if (isActiveImage[IMG_TAB_SCPT_NORM]) then @@ -325,8 +329,12 @@ if (not isActiveImage[intArr[0]]) then Exit; GetBitmapSize(intArr[1], w, h); + {$ifdef Simba} + DrawBitmap(intarr[1],tImages[intArr[0]].Canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(intArr[1]), tImages[intArr[0]].Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} isActiveImage[intArr[0]] := False; end; end; @@ -368,8 +376,12 @@ begin bmp := intArr[INACTIVE]; GetBitmapSize(bmp, w, h); + {$ifdef Simba} + DrawBitmap(bmp,tTabs[currTab].Canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(bmp), tTabs[currTab].Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} tTabLabels[currTab].Font.Color := 1068418; isActiveTab[currTab] := False; frm_PlayerInfo(currTab, True); @@ -382,7 +394,11 @@ } bmp := intArr[ACTIVE]; GetBitmapSize(bmp, w, h); + {$ifdef Simba} + DrawBitmap(bmp,tTabs[theSender].Canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(bmp), tTabs[theSender].Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} tTabLabels[theSender].Font.Color := 2070783; isActiveTab[theSender] := True; frm_PlayerInfo(theSender, True); @@ -476,8 +492,12 @@ bmp := frmBitmaps[TAB_INACTIVE]; GetBitmapSize(bmp, w, h); + {$ifdef Simba} + DrawBitmap(bmp,canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(bmp), Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} isActiveTab[i] := False; //frm_Debug('tab_Add', 'Tab ' + IntToStr(i + 1) + ' is now inactive.'); end; @@ -520,7 +540,11 @@ frm_PlayerInfo(hi - 1, False); bmp := frmBitmaps[TAB_ACTIVE]; GetBitmapSize(bmp, w, h); + {$ifdef Simba} + DrawBitmap(bmp,canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(bmp), Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} tTabLabels[hi - 1].Font.Color := 2070783; isActiveTab[hi - 1] := True; //frm_Debug('tab_Delete', 'Tab ' + IntToStr(hi - 1) + ' is now active.'); @@ -875,8 +899,12 @@ for i := 0 to hi do begin GetBitmapSize(bmpArr[i], w, h); + {$ifdef Simba} + DrawBitmap(bmpArr[i],tImages[imgArr[i]].Canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(bmpArr[i]), tImages[imgArr[i]].Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} end; hi := High(tTabs); @@ -1008,8 +1036,12 @@ bmp := frmBitmaps[bmpArr[i]]; GetBitmapSize(bmp, w, h); + {$ifdef Simba} + DrawBitmap(bmp,tImages[imgArr[i]].Canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(bmp), tImages[imgArr[i]].Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} isActiveImage[imgArr[i]] := False; end; @@ -1051,8 +1083,12 @@ if (not isActiveImage[intArr[0]]) then Exit; GetBitmapSize(intArr[1], w, h); + {$ifdef Simba} + DrawBitmap(intArr[1],tImages[intArr[0]].Canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(intArr[1]), tImages[intArr[0]].Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} isActiveImage[intArr[0]] := False; end; @@ -1099,8 +1135,12 @@ if (isActiveImage[intArr[0]]) then Exit; GetBitmapSize(intArr[1], w, h); + {$ifdef Simba} + DrawBitmap(intArr[1],tImages[intArr[0]].Canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(intArr[1]), tImages[intArr[0]].Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} isActiveImage[intArr[0]] := True; end; @@ -1133,11 +1173,16 @@ bmp := frmBitmaps[bmpArr[i]]; GetBitmapSize(bmp, w, h); + {$ifdef Simba} + DrawBitmap(bmp,tImages[imgArr[i]].Canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(bmp), tImages[imgArr[i]].Canvas, 0, 0, w, h, 0, 0, w, h); - + {$endif} if (Sender = tImages[IMG_TAB_LABELS]) then + begin isActiveImage[imgArr[i]] := False; + end; end; isActiveImage[imgArr[2]] := True; @@ -1196,7 +1241,7 @@ with frmMain do begin SetBounds({L} 100, {T} 100, {W} 555, {H} 433); - BorderStyle := nsNone; + BorderStyle := bsNone; end; useSmart := TCheckBox.Create(frmMain); @@ -1398,7 +1443,11 @@ end; GetBitmapSize(bmp, w, h); + {$ifdef Simba} + DrawBitmap(bmp,Canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(bmp), Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} end; end; @@ -1551,7 +1600,11 @@ isActiveImage[helpImage] := False; OnMouseMove := @frm_OnMouseMove; GetBitmapSize(bmp, w, h); + {$ifdef Simba} + DrawBitmap(bmp,Canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(bmp), Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} end; end; { @@ -1599,7 +1652,11 @@ isActiveImage[introImage] := False; OnMouseMove := @frm_OnMouseMove; GetBitmapSize(bmp, w, h); + {$ifdef Simba} + DrawBitmap(bmp,Canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(bmp), Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} end; end; @@ -1621,7 +1678,11 @@ isActiveImage[IMG_FRM_CREDITS] := False; OnMouseMove := @frm_OnMouseMove; GetBitmapSize(bmp, w, h); + {$ifdef Simba} + DrawBitmap(bmp,Canvas,0,0); + {$else} SafeCopyCanvas(GetBitmapCanvas(bmp), Canvas, 0, 0, w, h, 0, 0, w, h); + {$endif} end; { Everything to do with the intro form (frmIntro) ends here, and everything @@ -1772,4 +1833,4 @@ begin frm_SafeInitForm; frm_SafeShowFormModal; -end; \ No newline at end of file +end;.
Last edited by mastaraymond; 02-26-2010 at 04:56 PM.
Verrekte Koekwous
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
MMK remember what i was saying about the GUI? still happening D:
Load a playerlist and click on the first player in the list, notice its been replaced with the last one? D-=< but if you dont click it it wont replace it... wth?
Last edited by Coh3n; 02-26-2010 at 07:29 PM.
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
Hi Coh3n,
Sorry, can you point the right way here?
ThanksYou need the latest version of the Dev SVN
ScarPreRelease 3.23 rev 80, Includes - Dev Rev 457
http://villavu.com/forum/showthread.php?t=47714
Coh3n's tutorial is good. I installed everything with it.
There used to be something meaningful here.
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
I searched this thread but found nothing about the problem I seem to be having.. I try to start the script and I get this:
Line 270: [Error] (15594:1): Invalid number of parameters in script C:\Users\*\Desktop\scarprerelease\includes\SRL\SRL \Core\AntiRandoms\Sandwich.scar
If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly!- Put this in your sig!
There are currently 1 users browsing this thread. (0 members and 1 guests)