Post 'em.![]()
Post 'em.![]()
Any?![]()
function that gets the time
SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
Programming Projects: NotePad | Tetris | Chess
Lol... =]
oh oops![]()
make a procedure that turns a sentence(like script title) into the big letters made of /.' and stuff
or a procedure that can let u change ur focus then change tabs then re focus
or a function that can tell if rs is opened
or a function that can tell u what part of the image on the minimap is visible on the mainscreen(then u can look for things on minimap and canclick around until ur sure its on mainscreen before trying to click it
SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
Programming Projects: NotePad | Tetris | Chess
#1. Lol would be extretely hard if not like impossible lol
#2. I'm a little confused on?
#3. You can just do 'if FindWindowTitlePart('Runescape', False) then'
#4. I'll defiantly keep in mind. Would be pretty hard as you would need to use a user defined bitmap for minimap search
1. not impossible just annoying
2. changes the focus from what it is to the whole screen then clicks a different tab then refocuses it to the first focus
3.lol i dont keep up on those type of functions
4. hard but really cool
5. when whole screen is selected, converts coords to rs coords (mm,ms,inv,chat)
SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
Programming Projects: NotePad | Tetris | Chess
If you can't make the thing with the mini map, may I try?
Why not I think I'm gonna try a different one first
but I'm definitely gonna try that one =]
@Dan - is this what you were looking for for the tab one?
SCAR Code:{========================================================================
Procedure ChangeTab(BrowserType: string; TabNum :integer); //by Derek-
DESCRIPTION:
Changes the tab in your internet browser and refocuses onto the your
previous client window handle.
BROWSER TYPES: 'FF'=FireFox 'IE'=Internet Explorer
TabNum: Which tab. 1=Tab 1, 2=Tab 2, or 3=Tab 3
(Assuming you are only using the toolbar 'Navigation Toolbar' in FireFox
and 'Menu Bar' in Internet Explorer)
EXAMPLE:
ChangeTab('IE', 2);
========================================================================}
Procedure ChangeTab(BrowserType: string; TabNum :integer);
var
TabFx, TabFy, TabEx, TabEy, Previous: Integer;
begin
Previous := GetClientWindowHandle;
case TabNum of
1 : begin
TabFx := 105;
TabFy := 108;
TabEx := 180;
TabEy := 115;
end;
2 : begin
TabFx := 350;
TabFy := 108;
TabEx := 370;
TabEy := 115;
end;
3 : begin
TabFx := 695;
TabFy := 108;
TabEx := 560;
TabEy := 115;
end;
end;
case BrowserType of
'FF' : begin
FindWindowTitlePart('Fire', False);
Mouse(TabFx, TabFy, 0, 0, True);
end;
'IE' : begin
FindWindowTitlePart('Net ex', False);
Mouse(TabEx, TabEy, 0, 0, True);
end;
end;
Wait(100);
SetClientWindowHandle(Previous);
end;
i dunno if this would be possible at all but ill post it anyway
something that checks the overall combat level of each charecter and if its below 10 combat level the script terminates and dont run. This will stop level 3's and you could "blend" it in the script meaning dont call it StopNoobs name it something they wont see/recognise so they cannot delete it out the script.
and also something that checks they are wearing at least 1 piece of armour and a weapon this will stop the noobs that auto with no clothes on or armour or weapon.
maybe a dumb idea prob not possible but still thought id post it
There are currently 1 users browsing this thread. (0 members and 1 guests)