Jump to content

Recommended Posts

Posted

;AutoItSetOption ("CaretCoordMode", 2)
AutoItSetOption("WinTitleMatchMode", 4)
$fille = @DesktopDir & '\Captcha.txt'
$dfile = @DesktopDir & '\DeCapLog.txt'
$file = @DesktopDir & '\MoolaLogin.txt'
Global $running = 0
Opt("TrayOnEventMode",1)
Opt("TrayMenuMode",1)
Opt("TrayIconHide", 0)
Opt('MouseCoordMode',0)
TraySetOnEvent($TRAY_EVENT_PRIMARYUP,"SpecialEvent")
TraySetState()

That's all around it. I don't think I need to post anymore, it's a thousand line code.

Posted

$fille = @DesktopDir & '\Captcha.txt'
$dfile = @DesktopDir & '\DeCapLog.txt'
$file = @DesktopDir & '\MoolaLogin.txt'

This code doesnt create files. It just creates strings that you can use for file names.

Posted

$fille = @DesktopDir & '\Captcha.txt'
$dfile = @DesktopDir & '\DeCapLog.txt'
$file = @DesktopDir & '\MoolaLogin.txt'

This code doesnt create files. It just creates strings that you can use for file names.

Yeah...

$fille = @DesktopDir & '\Captcha.txt'
$dfile = @DesktopDir & '\DeCapLog.txt'
$file = @DesktopDir & '\MoolaLogin.txt'

FileWrite($fille, "TextGoesHere")
FileWrite($dfile, "TextGoesHere")
FileWrite($file, "TextGoesHere")

:D

Minesweeper

A minesweeper game created in autoit, source available.

_Mouse_UDF

An UDF for registering functions to mouse events, made in pure autoit.

2D Hitbox Editor

A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.

Posted

Yeah...

$fille = @DesktopDir & '\Captcha.txt'
$dfile = @DesktopDir & '\DeCapLog.txt'
$file = @DesktopDir & '\MoolaLogin.txt'

FileWrite($fille, "TextGoesHere")
FileWrite($dfile, "TextGoesHere")
FileWrite($file, "TextGoesHere")

:D

Well, when ever I used it in the past, the files always got written in, and were there when the time came where I wrote in them. Now, when i'm doing the same thing, and try to get the first strings of the files, it's that array error, and there is no file. But i'll try again I guess. I even tried _FileCreate($file), and no luck.
Posted

- What program is suppose to create those log's, and when? (I don't see any file write commands in your example(s), so that can't be it.)

- Why do you think your script is responsible for this problem? "I don't think I need to post anymore, it's a thousand line code"

It automates something, and was very hard to do. As well as it's my code, and I don't wish to share it. I'm sorry if people usually do here.
Posted

Thanks , and I solved it. I just moved the files to closely where they were firstly going to be used. Thanks everyone.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...