The best way to contact me is by email, which you can find on my website: http://wizzup.org
I also get email notifications of private messages, though.
Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
Documentation | Source | Simba Bug Tracker on Github and Villavu )
My (Blog | Website)
Programming is like trying keep a wall of shifting sand up, you fix one thing but somewhere else starts crumbling
I'm having problems usingand the compass things for my script.Code:P07_MakeCameraAngleHigh;
Simba Code:program Netzone;
{$I SRL/SRL.Simba}
{$I P07Include.Simba}
var x, y: Integer;
procedure StartCheck;
begin
Wait(RandomRange(1000,2000));
P07_MakeCameraAngleHigh;
P07_MakeCompassSouth;
P07_HoverSkill('Fishing', random(3000));
Wait(RandomRange(200,1000));
end;
begin
SetupP07Include;
ActivateClient;
StartCheck;
end.
Basically this is as far as I've gotten. The P07_HoverSkill works perfectly, but the camera options just doesn't happen.
Got any idea?
[Edit] Never mind![]()
Last edited by Netzone; 03-02-2013 at 01:05 PM.
I really wanna use this, i dont understand anything AT ALL about scripting, can you guys make a dumb user friendly guide please? i just wanna bot and do homework/workout/work without having to play.. I dont wanna be addicted god damn it!
http://villavu.com/forum/showthread.php?t=58935 - This thread is really good
I'd also check out the videos here; http://villavu.com/forum/showthread.php?t=67691
Is it possible to get someone to guide me through on running the oldscape client? Willing to pay also some cash.
P07_ItemExists doesn't work with the frog token from the frog random event. Can anyone else confirm this?
When i try to run a script in this, my CMD screen just fills with:
"The automatically split characters are too wide. Try decreasing minispacing"
Anybody know of this problem?
Can you add a banking method where it will right click on the bank booth or Banker and bank?(A lot of people including me are having trouble with this as it's hard to find the perfect colour as every colour in most banks are the same) Also can you add a Npc dialog selection for when you're talking to npc's please?
Simba Code:function Bank: Boolean;
var
i, CTS, c, Timeout: Integer;
TPA, TPA1, TPA2: TPointArray;
ATPA: T2DPointArray;
P: TPoint;
begin
Result := False;
CTS := GetColorToleranceSpeed;
ColorToleranceSpeed(2);
Timeout := 5000 + Random(1000);
SetColorSpeed2Modifiers(BankHue_1, BankSat_1);
FindColorsTolerance(TPA1, BankCol_1, DX1, DY1, DX2, DY2, BankTol_1);
SetColorSpeed2Modifiers(BankHue_2, BankSat_2);
FindColorsTolerance(TPA2, BankCol_2, DX1, DY1, DX2, DY2, BankTol_2);
SetColorSpeed2Modifiers(0.2, 0.2);
ColorToleranceSpeed(CTS);
CombineTPAWrap(TPA1, TPA2, TPA);
SplitTPAWrap(TPA, 5, ATPA);
SortATPASize(ATPA, True);
if Length(TPA) < 1 then
Exit;
for i := 0 to High(ATPA) do
if Length(ATPA[i]) > 30 then
begin
P := MiddleTPA(ATPA[i]);
HumanMMouse(P.X, P.Y, RandomRange( - 5, 5), RandomRange( - 5, 5));
if (P07_IsUpTextMultiCustom(['Use', 'Bank', 'ooth'])) then
begin
Begin
clickmouse2(mouse_Right);
P07_ChooseOptionMultiHuman(['Use-q']);
While (IsMoving) Do
FastWait;
If Not P07_BankScreen Then
Begin
Bank;
End;
Exit;
End;
Exit;
End;
End;
End;
anyone know how to fix this?
Exception in Script: Unable to find file 'P07Include.Simba' used from ''
P07_InvBox can you add, it should be easy just edited your other function to make this work . But with every update of P07 ,my old gets deleted so I am asking you if you could add this to function list or whatever else what will result inv box
Code:Function P07_InvBox(SlotToCheck: Integer): TBox; Var xsx,ysy,x,y,R,C:Integer; Begin SlotToCheck:=SlotToCheck-1; xsx:=565; ysy:=215; C:=(Round(SlotToCheck/4)); R:=(SlotToCheck -(C*4)); Result.x1:=xsx+(R*42); Result.Y1:=ysy+(C*36); Result.X2:=xsx+(R*42)+27; Result.Y2:=ysy+(C*36)+25; End;
@DannyRS How are you converting all this stuff over? I might wanna join if possible and help some people. Been seeing a LOT of threads in the help section.
Finished B.S. Program in Radiology!!
Projects: A big one! Total secret! hehe
If I Extended the MSY1,MSY2, MSX1 and MSX2 (their values) then could I possible fit the entire screen (make it able to find colours even in the chat box?)
if anyone helps me get a smart auto talker working in 07 i'll give them 50k 07 gp.
Thanks alot for this!
A lot have been saying this error is from the the Include
"The automatically split characters are too wide. Try decreasing minispacing"
Can anyone provide a fix please?
When i tried to compile my script i got this error?
Simba Code:C:\Simba\Includes\P07Include .simba(57:3): Unknown identifier 'MMouse' at line 56 Compiling failed.]
There are currently 1 users browsing this thread. (0 members and 1 guests)