PDA

View Full Version : [Minigame] AFK Guthans NMZ



luap100
08-10-2016, 10:03 PM
Hi guys, I just got a 2-days ban, do you think I could 6hour-afk guthans at NMZ with this script without getting banned? I'm using Simba scripts directly on the official client.
Thanks for your help !

program afkguthan;

//{$DEFINE SMART}
{$i Reflection/Reflection.simba}

begin
repeat
time:=randomrange(800000,1000000);
wait(time);
setCompass(inttostr(randomrange(30, 180)));
end
end.

acow
08-11-2016, 12:51 AM
Wrong forum section, doubt it'd compile, and not sure why you're deciding to be dependent on the reflection include for this. I'd highly recommend you check out at the very least some simba basics, this is a great thread for that: https://villavu.com/forum/showthread.php?t=58935
Sections you should definitely read:
http://i.imgur.com/0IyTdNC.png


Additionally, I was bored and wrote a short little script for ya! Dependent on no extra includes, it will right click a random point inside of a user setup TBox between time intervals that the user has chosen and run for however long the user chooses it to.
It's just missing one little line to make it actually run. I'm sure you will figure out what that is, reading up on the basics before checking out the code should help out with that (+ helping with general comprehension and giving you the ability to edit the script yourself). If you can't figure it out, feel free to ask me for help after atleast a few days have passed (or ask anybody else before than :)).


program afkguthan;
//START OF USER SETUP
const
waitTimeMinimum = 800; //in seconds
waitTimeMax = 1000; //in seconds
howLongToRunFor = 360; //in minutes
whereToClickX1 = 112; //X1 coordinate of where to click
whereToClickY1 = 449; //Y1 coordinate of where to click
whereToClickX2 = 448; //X2 coordinate of where to click
whereToClickY2 = 540; //Y2 coordinate of where to click
{
Those last 4 constants are for making a TBox. If you've never heard that
word before, check out this image for a quick explanation: http://i.imgur.com/KozcHi2.png
Image is from this [wonderful] thread: https://villavu.com/forum/showthread.php?t=107757
}
//END OF USER SETUP

procedure fastClick(button: integer); //by Flight, taken from srl6
var
x, y: integer;
begin
getMousePos(x, y);
holdMouse(x, y, button);

wait(randomRange(60, 150));

getMousePos(x, y);
releaseMouse(x, y, button);
end;

procedure rightClickSomewhere();
begin
repeat
MoveMouse(randomrange(whereToClickX1, whereToClickX2), randomrange(whereToClickY1, whereToClickY2));
fastClick(mouse_right);
wait(RandomRange(waitTimeMinimum * 1000, waitTimeMax * 1000));
until (GetTimeRunning > (howLongToRunFor * 60000));
end;

begin
end.


Good luck with your max main(s) :)

SIMON 97X
08-11-2016, 01:34 AM
Thanks!

toggleOFF
08-11-2016, 04:49 PM
I wouldn't risk it unless you don't mind being banned perm

james10000
05-14-2017, 05:30 PM
this is a really useful script, can be used for splashing to thanks

Citrus
05-14-2017, 05:32 PM
this is a really useful script, can be used for splashing to thanks

grats on 30 spams posts!

kewlpopo
04-30-2018, 02:03 PM
could something like this actually get you banned? I feel like running an afker which just clicks somewhere on the screen every 5 mins or something shouldn't be detectable considering a lot of people play like this. Unless jagex tracks software clicks.

P1nky
04-30-2018, 03:25 PM
No one knows the answer for sure, but I personally don't think you'll get banned. I remember using a 3rd-party auto clicker for alching in the duel arena (70-99). Maybe i was lucky? or maybe no one reported me? But I took the risk and was not punished for it.

kewlpopo
04-30-2018, 08:19 PM
yup I know several people who used basic auto clickers to 99 mage 24/7 and didn't get banned. Makes me so confused on what jagex's anti bot checks for.

rsbotter123
08-25-2019, 07:48 PM
^ similar to that ive seen autoclickers go for long periods without bans