
Originally Posted by
YoHoJo
@TomTuff
No idea :/ very odd. Maybe screwed up if you were minimizing/umminimizingSMART too much.
Anyways, I haven't posted here in ages and I've heard some talk of the gem DTM being outdated (The script is no longer dropping gems) can anyone confirm this?
Also are there any other QUICK fixes or tweaks that need to be made?
Still works as great as ever.
Simba Code:
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| --> YoHoJos PMS 1.04 <-- |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
| Worked for 1 Hours, 4 Minutes and 23 Seconds
| Mined 745 ores at a rate of 694 per hour
| Mined 30 loads at a rate of 27 per hour
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
# : Nick = A : Level Worked Mined Loads XP Location
0 : pnk = T 73 00:00:00 745 30 26075 L:Mining
<~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~>
@Yohojo the gems are broken I have confirmed this suggest using blacklist for it instead. The outline count should be the same for all of the gems.
~BraK
E: Changing this function here
Simba Code:
{*******************************************************************************
Function GemThere(x1,y1,x2,y2:Integer):Boolean;
By: YoHoJo
Description: Checks for GemDTM in a box
*******************************************************************************}
Function GemThere(x1,y1,x2,y2:Integer):Boolean;
var x,y:Integer;
Begin
If FindDTM(Gemdtm,x,y,x1,y1,x2,y2) Then
Result:=True;
End;
to this right here fixes the Gem Dropping.
Simba Code:
Function GemThere(x1,y1,x2,y2:Integer):Boolean;
var x,y:Integer;
Begin
Result := (CountColor(131072,x1,y1,x2,y2) = 66)
End;
~BraK