which is better and really whats the difference?
which is better and really whats the difference?
It depends on a few things. How dynamic is it? How big or small is it? Where are you searching for it? DTMs look mostly at the outline of an object, while bitmaps look for a small (or large, yet small is more accurate and faster) snippet of something. Apparently bitmaps are faster, but it's no noticeable difference. All in all, it comes down to personal preference (except for some things, where DTMs would be better, but for the most part, it's up to the scripter).
not what im trying to find cause iv'e made the dtms of what i want =] but i need to figure out how to withdraw x amount, and you know when i lets say x=100 then i have the option to take of 100 at a time right? how would i click withdraw 100 rather then keep using with draw x amount?
SCAR Code:if(ChooseOption('X'))then
TypeSend('100')
else
ChooseOption('100');
so that would choose x and then take 100 IF it didn't have the option to take 100 already?
frement's one makes sense i think its taht one
What I posted would still work, I think. If it doesn't ChooseOption('100'), it will ChooseOption('X') and then TypeSend('100'), so then next time ChooseOption('100') will work. I'll try it.
SCAR Code:{.include SRL/SRL.scar}
begin
SetupSRL;
repeat
MouseBox(440, 97, 458, 121, 2);
Wait(Random(500));
if(ChooseOption('100'))then
Break
else begin
MouseBox(440, 97, 458, 121, 2);
ChooseOption('X');
Wait(500 + Random(500));
TypeSend('100');
end;
MMouse(MMCX, MMCY, 100, 100);
until(False);
end.
Fixed, sorry.
Or just use Frement's. What I posted just now was just an example that I think would work.
Last edited by i luffs yeww; 05-02-2010 at 11:22 PM.
DTM all way, smaller, faster, more dynamic.
bitmaps are better then dtms. They are much faster. If you need help with them check out my tutorial in my signiture. Dont worry about people saying they are more memory intensive i am sure you have 30kb of ram to spare.
Click here to find out how to get full screen without members! | Click here to check out my Ultimate Bitmap Tutorial! Edited to work with Simba! |
Depends on what you are trying to search for...if you search for a road in minimap, a bitmap is the worst way to do it, am i right? If you search for a item in inv/bank then bitmap would do fine, thought i still prefer using dtm's for those too. As for the speed, you wont even notice it. (or atleast on my comp).
There used to be something meaningful here.
if you search for a road in minimap you should be using autocolours not bitmaps.
Click here to find out how to get full screen without members! | Click here to check out my Ultimate Bitmap Tutorial! Edited to work with Simba! |
I've used both DTMs and Bitmaps a lot, and I've had in my experience, DTMs are more reliable. Just saying. Oh and DTMs are a good failsafe for walking (in certain situations).![]()
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
There are currently 1 users browsing this thread. (0 members and 1 guests)