ThiagoJunqueira Posted December 14, 2012 Posted December 14, 2012 Hi ..I'm trying to fix this code since 08:36The problem:If i put $Count = $Count + 1, then work's but jumping one by oneBut, if i don't put $Count = $Count + 1, don't work. ):Look an part:Original:"ptr Reserved;" & _"ptr Desktop;" & _Later:"_StringEncrypt(0, 'CF089B9B9042', 'thi', 1) Reserved;" & _"_StringEncrypt(0, 'CF089B9B9042BBE4D01AA838EAF88F7565705A9A028D7873', 'thi', 1)" & _Get it ?Super.au3Substitute.au3
Danyfirex Posted December 14, 2012 Posted December 14, 2012 it's obvious, you need add 1 to $count that you can get the correct array[$count] string. Danysys.com AutoIt... UDFs: VirusTotal API 2.0 UDF - libZPlay UDF - Apps: Guitar Tab Tester - VirusTotal Hash Checker Examples: Text-to-Speech ISpVoice Interface - Get installed applications - Enable/Disable Network connection PrintHookProc - WINTRUST - Mute Microphone Level - Get Connected NetWorks - Create NetWork Connection ShortCut
ThiagoJunqueira Posted December 14, 2012 Author Posted December 14, 2012 Yeah, but when i put "$count = $count + 1", count 2. Because the "for" add 1 automatic But if i don't put, then, don't work ..
Moderators JLogan3o13 Posted December 14, 2012 Moderators Posted December 14, 2012 Just curious if you're expecting $count and $Count to be different variables, or if it is just bad typing? I notice in one spot you define it as $count and later as $Count. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Moderators JLogan3o13 Posted December 15, 2012 Moderators Posted December 15, 2012 I would suggest trying to replace this: $count = $count + 1 with this: $count += 1 just to see if you get any different behavior. It should behave the same, though. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now