Jump to content

Niceygy

Members
  • Posts

    6
  • Joined

  • Last visited

1 Follower

Profile Information

  • Location
    /home/nicey
  • WWW
    niceygylive.xyz

Recent Profile Visitors

128 profile views

Niceygy's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. So apparently my stripped file only goes to 10k lines, and the error is on line 19k. What have I done wrong? 😅
  2. Ah, I see! Thanks And the error checking I have at the moment is: While @error == 0 Or $finished == False Because apparently autoit doesn't have try-catch. Any better ideas welcome lol
  3. What do you mean "merge the script"? Also the line number is useless because the code is compiled, and the issue (annoyingly enough) doesn't seems to occur when not compiled.
  4. My app has a weird error that we have been trying to track for a while now. The trouble is when the compiled exe crashes, it gives a generic error message (below). Is there a way to have a more helpful message?
  5. I am trying to read a text file, and when using FileOpen it returns nothing. Code is as follows: Func LoadConfFile() Local $confFile = $confFolder & "/test.txt" $FileOpened = FileRead($confFile) If @error Then MsgBox(0, "ERROR!", @error) else MsgBox(0, "file:", $FileOpened) endif EndFunc What am I doing wrong here?
  6. I am trying to make a gui for a game server, and need to have constant input & output from the program. (Aka console in the gui and sending cmds) However, the stdin does not seem to be sending. (When i have removed the @SW_HIDE flag from run and try stdin, nothing happens) Any help is much appreciated! Sorry if this is a newbie question. Cheers, Nicey
×
×
  • Create New...