Jump to content

lionel

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by lionel

  1. Hello, I want convert this code PHP for AutoIt <?php $request = fsockopen('ssl://simple-note.appspot.com', 443); if ($request) { echo 'connectOK<br />'; } $headers_string = "POST /api/login HTTP/1.0rnHost: simple-note.appspot.comrnContent-type: application/x-www-form-urlencodedrnContent-length: 68rnConnection: ClosernrnZW1haWw9c2ltcGxlbm90ZSU0MGhvdG1haWwuZnImcGFzc3dvcmQ9bW90ZGVwYXNzZQ=="; fwrite($request, $headers_string); $response=''; while (!feof($request)) { $response .= fgets($request, 1024); } echo $response; ?> I create this #include <WinHttp.au3> Global $sDomain = "simple-note.appspot.com" Global $sPage = "api/login" $headers_string = "POST /api/login HTTP/1.0"&@CRLF&"Host: simple-note.appspot.com"&@CRLF&"Content-type: application/x-www-form-urlencoded"&@CRLF&"Content-length: 68"&@CRLF&"Connection: Close"&@CRLF&@CRLF&"ZW1haWw9c2ltcGxlbm90ZSU0MGhvdG1haWwuZnImcGFzc3dvcmQ9bW90ZGVwYXNzZQ==" Global $hOpen = _WinHttpOpen() ; Get connection handle Global $hConnect = _WinHttpConnect($hOpen, $sDomain) if @error Then MsgBox(16, "", 1) $sData = "ZW1haWw9c2ltcGxlbm90ZSU0MGhvdG1haWwuZnImcGFzc3dvcmQ9bW90ZGVwYXNzZ==" $hRequestSSL = _WinHttpSimpleSSLRequest($hConnect, "POST", $sPage, $sData) if @error Then MsgBox(16, "", 2&@CRLF&@error) MsgBox(0, "", $hRequestSSL) but it does not work... Please Help me
  2. it must error in the function: _request_modify($req,$host)
  3. I need you! help me for implementing HTTPS...
  4. (I'm sorry for my english, I'm french) It's very good work! It's finish for HTTPS? Thx
  5. Hello all! I need you! Please help me, for found Adress: "PlayerBase" for version 3.1.0 ex: For version 3.0.9: $lvl1Pointer = _MemoryRead(0x0127F13C, $Protocol, 'ptr') $lvl2Pointer = _MemoryRead(($lvl1Pointer + 0x30), $Protocol, 'ptr') $AdressPlayerBase = _MemoryRead(($lvl2Pointer + 0x28), $Protocol, 'ptr') thank you all!
  6. I found (for 3.0.9): Player Name : 0x011CB348 Player Health : PlayerBase + 0xFF4 Player Max Health : PlayerBase + 0x26E4 Player Mana : PlayerBase + 0xFF8 Player Mana Max : PlayerBase + 0x26E8 Player Experience : PlayerBase + 0x3630 Player Experience All : PlayerBase + 0x3634 Level : PlayerBase + 0x41B8 Force : PlayerBase + 0x27B8 Agilite : PlayerBase + 0x27BC Endurance : PlayerBase + 0x27C0 Intelligence : PlayerBase + 0x27C4 Esprit : PlayerBase + 0x27C8 Armure : PlayerBase + 0x27F4 Money (OrArgentCuivre) : PlayerBase + 0x3E90 Honnor : PlayerBase + 0x4028
  7. I found: 0x11cb348 - Name Playeur And for Pos_X; Pos_Y; Pos_Z But I have not found adress memory for level; health; mana; rage; energie...
  8. Hello, I'm French... I'm so sorry for my english... but I need help I want recover information next: -Name -Level -Health -Mana -PosX -PosY -PosZ -Rot -Speed But with the new extention of "world of warcraft" (Version: 3.0.9.9551), I haven't got Adresse Memory for this information. Plz help me... I need a script for version 3.0.9.9551 of wow thank you...
×
×
  • Create New...