Log in

View Full Version : Making SIMBA move the screen ?



Daher
08-20-2012, 11:13 AM
How can i make SIMBA move the screen as of using the left right arrows, to navigate the runescape client right ?

And how do i make the bot walk, with patterns?

P1ng
08-20-2012, 11:17 AM
To change the compass angle use the function MakeCompass (idk if this works with RSPS, may need to be tweaked).

To walk around runescape check out these tutorials:

http://villavu.com/forum/showthread.php?t=78905
http://villavu.com/forum/showthread.php?t=19162
http://villavu.com/forum/showthread.php?t=372

Daher
08-20-2012, 12:20 PM
p1ng Makecompass ?

Give me the example of the function, and yes it's for a private servers.

For example
Makecompass(Move,Right) what's the full syntax function ?

riwu
08-20-2012, 12:38 PM
p1ng Makecompass ?

Give me the example of the function, and yes it's for a private servers.

For example
Makecompass(Move,Right) what's the full syntax function ?
Makecompass('n') //compass to north
or
MakeCompass(20) //20 degrees
You can find out more about these srl functions in includes/srl/srl/core

If it doesn't work for PS, you can create ur custom function using KeyDown and KeyUp.

Footy
08-20-2012, 12:39 PM
Makecompass('N'); would make the compass north, same with other directions.

P1ng
08-20-2012, 12:40 PM
(*
MakeCompass
~~~~~~~~~~~

.. code-block:: pascal

function MakeCompass(Direction: Variant): Boolean;

Aligns RS to specified direction
- Enter a compass angle ('n', 's', 'e', 'w') or degree (23.3, 25, 205.2)
and it will move the compass to that angle. Also accepts 'random',
and 'rand' to make the compass a random direction.

.. note::

by Nielsie95 & Nava2

Example:

.. code-block:: pascal

// using a string!
MakeCompass('N');

// using an integer!
MakeCompass(0);

*)
function MakeCompass(Direction: Variant): Boolean;

Daher
08-20-2012, 01:35 PM
p1ng, is that function going to click on the compass at the top ? Or actually move the screen ?

Footy
08-20-2012, 01:36 PM
It uses the arrow keys, clicknorth() clicks the compass.

Daher
08-20-2012, 02:01 PM
Great footy thank you man........