Jump to content

w0uter

Active Members
  • Posts

    2,204
  • Joined

  • Last visited

1 Follower

About w0uter

  • Birthday 09/05/1988

Profile Information

  • Member Title
    resreveR nA
  • Location
    The Netherlands

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

w0uter's Achievements

Universalist

Universalist (7/7)

4

Reputation

  1. rename the old one (while running) then just place the new one. execute the new one and have it delete the old (renamed) one. saves a createprocess call
  2. Try "www/News.txt" If that doesnt work im out of guesses.
  3. Whats the @error at the other commands ? Also try to make it @scriptdir & '\News.txt'
  4. Read the helpfile on the file functions. Also no there is no 'helpfile' or documentation what so ever for the ftp functions (Ill put it on my big TODO list, right after "failing the schoolyear") It would help if you posted your new code and tell us the values @error has.
  5. To aim with a gun (sniper rifle) that doesnt have a xhair.
  6. http://www.autoitscript.com/forum/index.ph...ch&mode=adv
  7. Ignore SmOke_N he is tired. http://www.autoitscript.com/autoit3/docs/faq.htm#6 Run(@comspec & ' /c start ' & $s_yourfile)
  8. or he could just use _Ftp.au3 from my signature.
  9. http://www.openwall.com/wordlists/ has a huge dictionary file.
  10. This is my attempt $b_byte = Asc('W') ConsoleWrite(_Bin($b_byte) & @LF) Func _Bin($b_byte) $s_buffer = '' For $i = 0 to 7 $s_buffer = BitAND($b_byte, 1) & $s_buffer $b_byte = BitShift($b_byte, 1) Next return $s_buffer EndFunc just do it for evry character
  11. search the board. there are udf's that do this. or write your own
×
×
  • Create New...