hey yeah, my progress report is just alittle to big so that it makes the debug scroll, is there anyway functions that will make the debug window bigger at the start of the script?
hey yeah, my progress report is just alittle to big so that it makes the debug scroll, is there anyway functions that will make the debug window bigger at the start of the script?
Lance. Da. Pants.
Yes there is....
Do I know them off the top of my head? No.
I will get them for you
T~M



Not possible unless you somehow find the handle of it during runtime and use leet API hax to change the size of it.
erm thanks The Man, and bullzeye im so sure i saw one of narcles scripts do it.. hmm maby ill have to become a leet API man
Lance. Da. Pants.
Well this doesnt help you really, but try this = fun;
SCAR Code:program New;
Var
Test :TDebugParams;
begin
cleardebug;
Test := GetDebugParams;
Test.color := 32768;
SetDebugParams(Test);
Writeln('{ HA HA HA I MAKE SYNTAX OF COMMENT!!}');
Test.color := 16726783;
SetDebugParams(Test);
writeln('''You suck This String''');
Test.color := 1750501;
SetDebugParams(Test);
end.
I do visit every 2-6 months
haha yeah ive used something like that for my EP Wild potential radar script to detect when theres players around who can attack you XD
Lance. Da. Pants.
ChangeReportWidth(300);
There you go![]()



He wants to change the height of the debug box, not the width of the report box :\
Report box is not the debug box....



No, but they are connected. Making the report box less wide makes the debug box wider.
@TRiLeZ, he said that his progress report makes the debug box scroll, meaning the debug box is too short. The only way for it to scroll is if something is too tall for it, not too wide.
He wants the height to increase though.
hey thanks trilezbut unfortanately bullzeye's right :S i need the height changed. but if it cant be done thats fine i suppose. thanks everyone :]
Lance. Da. Pants.
You can stretch the debug box to whatever height you want using your mouse (or at least you could with 3.15 the last time I ran it).
:-)
Writing an SRL Member Application | [Updated] Pascal Scripting Statements
My GitHub
Progress Report:13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you have serious physchological problems 13:46 <@BenLand100> HE GETS IT! 13:46 <@BenLand100> HE FINALLY GETS IT!!!!1
What's the point of doing it during runtime when you can do it yourself before the script runs?
:-)
Use my ingenious function
SCAR Code:Procedure StretchDebugHeight(HowMuch : Integer);
Var x, y : Integer;
Begin
Wait(1800);
GetApplication.BringToFront;
If FindBitmap(BitmapFromString(17, 7, 'beNr7///GS5IRGWD5slWkotcv3w5O' +
'RLLnARbmQkQ='), x, y) Then
Wait(1800);
MoveMouse(x, y + 5);
Wait(800);
GetMousePos(x, y);
HoldMouse(x, y, True);
Wait(800);
GetMousePos(x, y);
MoveMouse(x, y - HowMuch);
GetMousePos(x, y);
Wait(800);
ReleaseMouse(x, y, True);
GetApplication.Minimize;
End;
I have another one for width if you like![]()
Last edited by Naum; 06-28-2009 at 01:48 AM.
Can't you crop the progress report?
~Hermen
There are currently 1 users browsing this thread. (0 members and 1 guests)