Jump to content

AzKay

Active Members
  • Posts

    1,940
  • Joined

  • Last visited

1 Follower

About AzKay

  • Birthday 08/23/1991

Profile Information

  • Member Title
    MY LOVE FOR YOU IS LIKE A TRUCK, BERSERKERRRRRRR
  • Location
    Brisbane, Australia.
  • Interests
    BERSERKERRRRRR

Recent Profile Visitors

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

AzKay's Achievements

Universalist

Universalist (7/7)

0

Reputation

  1. Tried with both, doesn't get past the DllCall with the x86, gives me the @error = 1 with the x64 dll
  2. Doesn't seem to get past the DllCall with that, exits right after(?) it, if I MsgBox() after it it just exits without calling it
  3. That gives me a @error 5, bad parameter error Do you mean the $hWinDivert? That was a typo, meant $dllWinDivert
  4. Hi, trying to call WinDivert.dll #RequireAdmin #cs handle = DivertOpen(argv[1], 0, priority, DIVERT_FLAG_SNIFF); HANDLE DivertOpen( __in const char *filter, __in DIVERT_LAYER layer, __in INT16 priority, __in UINT64 flags ); #ce $dllWinDivert = DllOpen("WinDivert.dll") $hWinDivert = DllCall($dllWinDivert, "handle", "DivertOpen", "char*", "true", "struct", 0, "uint16", 0, "uint64", 0) If @error Then MsgBox(0, "", @error) DllClose($dllWinDivert) I'm getting an "1 unable to use the DLL file" error at the DllCall(). If I play around with the types, I'll get "bad parameter" errors, so I'm assuming the ones I've used are at least "close", else would it not give a bad param error? Any ideas? Thanks.
  5. Awesome, that fixed both problems. Thanks.
  6. Ive got this in AutoIt3 Func path($iSx, $iSy, $iEx, $iEy) Local $iDist $iDist = ((((($iEx - $iSx) ^ 2) + (($iEy - $iSy) ^ 2)) ^ 1) / 2) Return $iDist EndFunc Google tells me C++ doesnt use ^, and also told me to use pow(); This did not work: return pow(pow((iEx - iSx), 2) + (pow((iEy - iSy), 2)), 1) /2; Does anyone know the correct C++ line? Nevermind, not sleeping hurts.
  7. So ive got AutoIt installing through wine, scite also works fine through wine. Only problem is the autocomplete/popup box when you start typing a function, pops up over the current line so you cant see what youre typing. Ive tried disabling it, which doesnt seem to work. So I went to installing native scite, copied over the au3.properties, changed the paths but cant figure out how to get it to run with wine. When "Go" is ran, it sh: /does/the/go/command, I cant find where to set it to wine /does/the/go/command instead of sh. Anyone either gotten the scite popup to go away through wine, or got native scite running/compiling with wine?
  8. Anyone tried this with Apache? I got it sort of working, ive got it "executing" and whatnot, but anything output'd is plaintext. eg; <b>test</b> shows up as "<b>test</b>", not bolded text.
  9. SciTE gives me 64636, so I should play around with the _FileCountLines() function, then?
  10. #include <File.au3> MsgBox(0, "", _FileCountLines("FFL.txt"))FFL.txt has 64636 lines, _FileCountLines() returns 164636 Any ideas? FFL.zip
  11. Ive got this string: 123abc!@#$%^&*()_+ If I run it through a POST request on a website, it converts it to: 123abc%21%40%23%24%25%5E%26*%28%29_%2B+ What encoding is it?
  12. Who are you to tell him to "not joke on this forum"? For all you know, Its a legitimate question.
  13. StringReplace(), StringRegExpReplace().
  14. Any ideas on how to hook http://msdn.microsoft.com/en-us/library/ms738520(VS.85).aspx? Anything with struct's in them, Kinda blank me out.
×
×
  • Create New...