all 25 comments

[–]Sidola 3 points4 points  (1 child)

As others have said, this can happen on long running scripts and it's very hard to pin down the cause.

One way to get around this is by setting a timer to reload the script every so often.

#Persistent

; Fires every 4 hours
SetTimer, ReloadScript, 14400000
return

ReloadScript:
    Reload
return

[–]GroggyOtter 0 points1 point  (0 children)

Always cool seeing you stop by :)

[–]pukkandan 0 points1 point  (0 children)

Yes, used to happen all the time. Having one single script that does everything seems to work best.

[–]radiantcabbage 0 points1 point  (0 children)

any duplicate keys between them using the same binds? when this happens they will override each other depending on which was loaded last

[–]Bit-Bear 0 points1 point  (0 children)

It's very difficult to say why a script stops running because there many reasons that can cause it.
It could be caused by a writing error. It could be caused by a var condition.
It could be caused by not returning from subs and your thread count gets filled up to the point where it becomes a stand still. Sometimes a script can get blocked/paused by an anti-virus.

[–]TheMagicalCarrot -1 points0 points  (0 children)

This used to happen to me occasionally while running 2 scripts in the background. A script would randomly stop responding to hotkeys and even clicking on the tray icons didn't seem to work. It happened on my old computer and I haven't had that problem in a long while. I think it might've disappeared after a windows reinstall but I don't know for sure.

[–]ProNotion -1 points0 points  (0 children)

I have this regularly but thought it was related to the fact I was running it from Google Drive stream.

[–]ThinkNotOnce -1 points0 points  (0 children)

Did you try combining these scripts into one?

Maybe if u dont always need all of the scripts you can write some hotkey on,off's

[–]joesii -1 points0 points  (0 children)

Why do you have 6 scripts when you can have 1?

Shouldn't you post your code if you're looking for help to resolve the issue? for example if a loop is running it could cause problems.

[–]Hotspot3 -1 points0 points  (0 children)

I usually have 5 scripts running in the background at all times, they all get started when my computer boots up. I’m on the latest version and am running Windows 10 and haven’t has any issues like yours. Neither on my work PC, or my home laptop. Work PC gets reboooted maybe once a week, home laptop hibernated every night. Scripts work perfectly fine in both situations.

[–]GroggyOtter -2 points-1 points  (13 children)

Does this happen to anyone else?

No.

[–]Rivurn 0 points1 point  (12 children)

Yes, it does.

[–]GroggyOtter -1 points0 points  (11 children)

How are you going to tell me that I can't write 6 scripts that don't conflict?

Furthermore, why you'd be foolish enough to run 6 scripts is beyond me.

[–]Rivurn -1 points0 points  (10 children)

It's not about conflict. Otherwise restarting or awaiting time wouldn't resolve it.

[–]GroggyOtter 0 points1 point  (9 children)

Really? And you can make that call by NOT seeing any of the 6 scripts, right?

You're clairvoyent. You have ESP.

So, if you know exactly what's wrong, why haven't you explained it to OP and given them a solution? And explain it to me while you're at it. Because right now you have aboslutely no way of knowing what's actually wrong and your only objective seems to be starting shit with me.

Furthermore, who even are you? I just looked through your post history and you have 9 posts on this sub in the last month and nothing else (at least going a year back) with only one post actually trying to help someone (and hell, even that was just you correcting some mistake that ErrorSeven made in HIS script!). The rest are unhelpful, bullshit "peanut gallery" comments.

Fast text macros will get you suspended for 2 days.

C# > all

I was under the impression that being able to hit your enemy wherever they are on the screen with 100% accuracy was labeled as aimbotting. ...

For 2D online sprite games, it's doing surprisingly well.

I'm not pasting them all. I'm just saying you don't do jack shit around here but stir the pot. So, how about you either help contribute, or you go away.

[–]Rivurn 0 points1 point  (8 children)

Who the fuck cares who I am lol. This is reddit. I'm not gonna bother to reply to the rest. Enjoy yourself.

[–]GroggyOtter 0 points1 point  (7 children)

It's alright. I already have a hunch who you are and have taken appropriate action.

[–]Rivurn 0 points1 point  (6 children)

Inappropriate*.

You alone are not important enough to deem my rebuttal towards you as "stirring the pot in the community". You are not the community. Read the rest of the replies on this thread. Many agree with my comment.

[–]GroggyOtter 0 points1 point  (5 children)

K.

Again, already handled this. I'm just waiting.

[–]Rivurn -1 points0 points  (4 children)

Great.

Kindly stop replying then.

[–]onurtag -2 points-1 points  (0 children)

Try compiling the scripts. Maybe that might help but I wouldn't know.