[Release] Speed Up your Scripts by Obfuscating them

09/22/2014 13:16 lolkop#16
Quote:
Originally Posted by »FlutterShy™ View Post
Der autoit interpret "ignoriert" global und dim auserhalb von funktionen.
Dann zeige uns mal, wie du ausserhalb von Funktionen Arrays deklarierst.
09/22/2014 17:15 alpines#17
Quote:
Originally Posted by lolkop View Post
Dann zeige uns mal, wie du ausserhalb von Funktionen Arrays deklarierst.
Local $a[1]
09/22/2014 17:53 lolkop#18
Quote:
Originally Posted by alpines View Post
Local $a[1]
Womit natürlich auch ein Gültigkeitsbereich gesetzt wurde, welcher im Übrigen ausserhalb von Funktionen semantisch äquivalent zu "Dim" oder "Global" ist.

In jedem Falle sollte ausserhalb von Funktionen immer "Dim" genutzt werden, da aufgrund der kürzeren Schreibweise weniger Arbeit vom Interpreter abgefordert wird.

Im übrigen ist die schreibweise mit "Dim" oft auch kürzer als die bereichslose Deklaration von Variablen und somit ohnehin oft zu bevorzugen.
beispiel:
Code:
$t = TimerInit()
For $i=0 To 10000000
	Dim $a, $b
Next
ConsoleWrite(TimerDiff($t)&@CRLF)
$t = TimerInit()
For $i=0 To 10000000
	$a=""
	$b=""
Next
ConsoleWrite(TimerDiff($t)&@CRLF)
09/22/2014 20:20 YatoDev#19
Quote:
Originally Posted by lolkop View Post
Dann zeige uns mal, wie du ausserhalb von Funktionen Arrays deklarierst.
das ist was ganz anderes
11/06/2014 17:41 firestrife23#20
Ich weiß wenig Deutsch, aber Englisch ist meine erste Sprache. Ich habe Problem, und ich bekomme eine Fehlermeldung hinsichtlich der Trennung der Tokens fehlgeschlagen.
11/30/2014 03:50 Nobita2014#21
"Error", "Something went wrong have a look at console Window to get more information."

?????????????

Windown ENG
12/01/2014 08:43 Shadow992#22
Quote:
Originally Posted by Nobita2014 View Post
"Error", "Something went wrong have a look at console Window to get more information."

?????????????

Windown ENG
I will update this version soon because it is really buggy. It will take some time but i will. ;)
01/12/2015 15:18 alessandror9#23
hello, I would need a good solution to protect exe created with autoit. I'm Italian and I speak little English and German. I tried to study your post to blur but I understood little. I ask help of course I can also pay to have an optimal solution to the protection of sources. you can contact me in pvt
thank you very much
01/13/2015 18:08 YatoDev#24
this isnt the optimal solution to protect your source code
01/13/2015 23:26 alessandror9#25
Quote:
Originally Posted by »FlutterShy™ View Post
this isnt the optimal solution to protect your source code
solution that I can use to protect my code autoit?
09/02/2015 15:09 HackHerS#26
Can you please update it ?

Cant find exe, I dropped exe everywhere
09/02/2015 15:59 Shadow992#27
Quote:
Originally Posted by HackHerS View Post
Can you please update it ?

Cant find exe, I dropped exe everywhere
Maybe your antivirus system deleted it?
10/26/2015 04:44 DuguWudi#28
I didn't know theres another obfuscator exist until now. Will this work for the newest autoit from official site?
10/26/2015 11:09 alpines#29
Why don't you try it and report it back?