View Full Version : ore pics
JPHamlett
06-26-2009, 11:25 AM
can someone post a screeny of all the ores in the inventory for me
for dtms for my new smelter
EG : Copper, Tin, Iron, Coal etc
i really only need the high level ones mithril above but all would be very helpful
will REP++
senrath
06-26-2009, 11:41 AM
http://img44.imageshack.us/img44/3373/orepic.png
All except coal. However, you just need a single DTM. Use a point in the center with max tolerance for the mainpoint, then pick points on the black outline.
JPHamlett
06-26-2009, 11:50 AM
http://img44.imageshack.us/img44/3373/orepic.png
All except coal. However, you just need a single DTM. Use a point in the center with max tolerance for the mainpoint, then pick points on the black outline.
its for specific ones though
image blocked
can you email it to me
hamlett.jp89@gmail.com
http://itemdb-rs.runescape.com/results.ws?query=ore&price=all&members=
http://itemdb-rs.runescape.com/results.ws?query=coal&price=all&members=
Both of those for all of them.
senrath
06-26-2009, 12:09 PM
http://itemdb-rs.runescape.com/results.ws?query=ore&price=all&members=
http://itemdb-rs.runescape.com/results.ws?query=coal&price=all&members=
Both of those for all of them.
And that's where I got my picture :P
Floor66
06-26-2009, 01:51 PM
Just make 1 DDTM with a max tol main point and change the colour.
This is how I did it with hatchets:
Function AxeDTM(WhatAxe : String): Integer;
Var
dtmMainPoint: TDTMPointDef;
dtmSubPoints: Array [0..6] Of TDTMPointDef;
TempTDTM: TDTM;
HeadColor : Integer;
Begin
Case WhatAxe Of
'Bronze': HeadColor := 2308940;
'Iron': HeadColor := 5131860;
'Steel': HeadColor := 7434617;
'Mith': HeadColor := 6045502;
'Addy': HeadColor := 4412483;
'Rune': HeadColor := 6642501;
'Dragon': HeadColor := 791648;
'Omni': HeadColor := 2308940;
End;
If WhatAxe = 'Dragon' Then
Begin
dtmMainPoint.x := 1233;
dtmMainPoint.y := 373;
dtmMainPoint.AreaSize := 0;
dtmMainPoint.AreaShape := 0;
dtmMainPoint.Color := HeadColor;
dtmMainPoint.Tolerance := 8;
dtmSubPoints[0].x := 1239;
dtmSubPoints[0].y := 370;
dtmSubPoints[0].AreaSize := 0;
dtmSubPoints[0].AreaShape := 0;
dtmSubPoints[0].Color := 65536;
dtmSubPoints[0].Tolerance := 0;
dtmSubPoints[1].x := 1240;
dtmSubPoints[1].y := 373;
dtmSubPoints[1].AreaSize := 0;
dtmSubPoints[1].AreaShape := 0;
dtmSubPoints[1].Color := 65536;
dtmSubPoints[1].Tolerance := 0;
dtmSubPoints[2].x := 1236;
dtmSubPoints[2].y := 382;
dtmSubPoints[2].AreaSize := 0;
dtmSubPoints[2].AreaShape := 0;
dtmSubPoints[2].Color := 65536;
dtmSubPoints[2].Tolerance := 0;
dtmSubPoints[3].x := 1241;
dtmSubPoints[3].y := 381;
dtmSubPoints[3].AreaSize := 0;
dtmSubPoints[3].AreaShape := 0;
dtmSubPoints[3].Color := 65536;
dtmSubPoints[3].Tolerance := 0;
dtmSubPoints[4].x := 1230;
dtmSubPoints[4].y := 376;
dtmSubPoints[4].AreaSize := 0;
dtmSubPoints[4].AreaShape := 0;
dtmSubPoints[4].Color := 65536;
dtmSubPoints[4].Tolerance := 0;
dtmSubPoints[5].x := 1223;
dtmSubPoints[5].y := 373;
dtmSubPoints[5].AreaSize := 0;
dtmSubPoints[5].AreaShape := 0;
dtmSubPoints[5].Color := 65536;
dtmSubPoints[5].Tolerance := 0;
dtmSubPoints[6].x := 1223;
dtmSubPoints[6].y := 376;
dtmSubPoints[6].AreaSize := 0;
dtmSubPoints[6].AreaShape := 0;
dtmSubPoints[6].Color := 65536;
dtmSubPoints[6].Tolerance := 0;
TempTDTM.MainPoint := dtmMainPoint;
TempTDTM.SubPoints := dtmSubPoints;
Result := AddDTM(TempTDTM);
End Else
Begin
dtmMainPoint.x := 1242;
dtmMainPoint.y := 447;
dtmMainPoint.AreaSize := 0;
dtmMainPoint.AreaShape := 0;
dtmMainPoint.Color := HeadColor;
If WhatAxe = 'Omni' Then
dtmMainPoint.Tolerance := 25000
Else
dtmMainPoint.Tolerance := 8;
dtmSubPoints[0].x := 1231;
dtmSubPoints[0].y := 463;
dtmSubPoints[0].AreaSize := 0;
dtmSubPoints[0].AreaShape := 0;
dtmSubPoints[0].Color := 65536;
dtmSubPoints[0].Tolerance := 0;
dtmSubPoints[1].x := 1228;
dtmSubPoints[1].y := 461;
dtmSubPoints[1].AreaSize := 0;
dtmSubPoints[1].AreaShape := 0;
dtmSubPoints[1].Color := 65536;
dtmSubPoints[1].Tolerance := 0;
dtmSubPoints[2].x := 1226;
dtmSubPoints[2].y := 467;
dtmSubPoints[2].AreaSize := 0;
dtmSubPoints[2].AreaShape := 0;
dtmSubPoints[2].Color := 65536;
dtmSubPoints[2].Tolerance := 0;
dtmSubPoints[3].x := 1230;
dtmSubPoints[3].y := 466;
dtmSubPoints[3].AreaSize := 0;
dtmSubPoints[3].AreaShape := 0;
dtmSubPoints[3].Color := 65536;
dtmSubPoints[3].Tolerance := 0;
dtmSubPoints[4].x := 1232;
dtmSubPoints[4].y := 448;
dtmSubPoints[4].AreaSize := 0;
dtmSubPoints[4].AreaShape := 0;
dtmSubPoints[4].Color := 65536;
dtmSubPoints[4].Tolerance := 0;
dtmSubPoints[5].x := 1246;
dtmSubPoints[5].y := 446;
dtmSubPoints[5].AreaSize := 0;
dtmSubPoints[5].AreaShape := 0;
dtmSubPoints[5].Color := 65536;
dtmSubPoints[5].Tolerance := 0;
dtmSubPoints[6].x := 1245;
dtmSubPoints[6].y := 452;
dtmSubPoints[6].AreaSize := 0;
dtmSubPoints[6].AreaShape := 0;
dtmSubPoints[6].Color := 65536;
dtmSubPoints[6].Tolerance := 0;
TempTDTM.MainPoint := dtmMainPoint;
TempTDTM.SubPoints := dtmSubPoints;
Result := AddDTM(TempTDTM);
End;
End;
XcanadamanX
07-04-2009, 05:37 AM
check out my script in jr mems. if you want the dtm part from it go ahead.
Da 0wner
07-04-2009, 05:42 AM
Can't you just use SRL bitmaps?
Zyt3x
07-04-2009, 05:46 AM
All of them: http://itemdb-rs.runescape.com/results.ws?query=coal+ore&price=all&members=no
Tickyy
07-04-2009, 07:25 AM
Can't you just use SRL bitmaps?
1+... use a mask.
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.