Advertisement
Blasium

Untitled

Oct 10th, 2011
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
  2. #AutoIt3Wrapper_UseUpx=n
  3. #AutoIt3Wrapper_UseX64=n
  4. #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
  5. $fi = FileOpenDialog("Skript",@DesktopDir,"pwn (*.pwn)")
  6. If @error Then Exit
  7. $filu = FileOpen($fi)
  8. TrayTip("","Läuft...",5000)
  9. Local $cu = 0
  10. While 1
  11. $cu += 1
  12.  
  13. $line = FileReadLine($filu)
  14. If @error = -1 Then ExitLoop
  15. If StringLen($line)>0 Then
  16. FileWriteLine(@ScriptDir & "\better.pwn",$line)
  17. EndIf
  18. TrayTip("","Zeile: " & $cu & @crlf & $line,5000)
  19. WEnd
  20. FileClose($filu)
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement