Page 1 of 2 12 LastLast
Results 1 to 15 of 29
  1. #1
    RAWR(:'s Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    South Texas
    Posts
    430
    Reputation
    14
    Thanks
    236
    My Mood
    In Love

    I need screenies (Triggerbot FTW)

    Okay to make things faster, I've decided to make a quick AutoIt script to automate the process of creating screenshots and zipping them up for upload.

    Instructions:
    1. If your on Vista/Win7, then you MUST start the game with Desktop Composition disabled. Click Here to learn how.

    2. Run the bot for your OS Arch
    3. Go in game

    4. Select any weapon from your inventory NOT in the list below
    5. Take off any mods you have on it
    6. Find the greatest accuracy "Stance" (Typically crouched while in marksmanship mode)
    7. While in this greatest accuracy "Stance", hit the HOME key
    8. Find the least accuracy "Stance" (Typically moving, NOT RUNNING, while NOT in marksmanship mode)
    9. While in this least accuracy "Stance", hit the HOME key

    10. Repeat steps 4 through 9 for all of the guns you have that aren't on the list below.

    11. When finished, hit the END key
    12. Close the game
    13. Reply with your IN GAME resolution along with the zip file "Weapons.zip" as an attachment in this thread along, and 2 virus scans (It's required unfortunately :/)

    Weapons I already have in my database:
    ;Assault Rifles
    [N-tec 5]
    [STAR 556]

    ;Less-Than-Lethal Weapons
    NONE

    ;Explosives
    [Osmaw]

    ;High-Velocity Rifles
    [Agrotech DMR-SD]
    [N-HVR 762]

    ;Light Machine Guns
    [ALIG 762]

    ;Secondary Weapons
    [RSA]
    [Joker RFP-9]

    ;Semi-Auto Rifles
    [Joker SR15 Carbine]
    [Obeya CR7622]
    [OBIR]

    ;Shotguns
    ["JG" Shotgun Series]
    [NFAS-12]

    ;Sub-Machine Guns
    [OCA-EW 626]
    [Colby PMG-28]

    How I will notify you that everything works as intended:
    I'll thank you instead of replying to your post if you upload a zip file. This lets me give you verification that I have what I wanted. I will only reply to you if something didn't work properly.
    And... Your MPGH usernames will be tacked on to the msgbox confirming the preset as credits, and just as a little gift from me :P So... if you want to have your name with this bot, you better hurry it up! =D

    Virus Scans:
    ScreenCap.zip - Jotti's malware scan
    VirusTotal - Free Online Virus, Malware and URL Scanner
    ScreenCap.zip MD5:15d3dc4968591092162f447bba8d71e5 - VirSCAN.org 3% Scanner(s) (1/37) found malware!

    Trojan.Spy.Gen.b - due to this scripts ability to automatically acquire a screenshot, place it in a jpg, and then zip it up.

    Trojan/Refroso.jqw - never heard of it :/

    Source:
    Code:
    #RequireAdmin
    Global Const $GDIP_EPGCOLORDEPTH = '{66087055-AD66-4C7C-9A18-38A2310B8337}'
    Global Const $GDIP_EPGCOMPRESSION = '{E09D739D-CCD4-44EE-8EBA-3FBF8BE4FC58}'
    Global Const $GDIP_EPGQUALITY = '{1D5BE4B5-FA4A-452D-9CDD-5DB35105E7EB}'
    Global Const $GDIP_EPTLONG = 4
    Global Const $GDIP_EVTCOMPRESSIONLZW = 2
    Global Const $GDIP_PXF24RGB = 0x00021808
    Global Const $tagPOINT = "long X;long Y"
    Global Const $tagRECT = "long Left;long Top;long Right;long Bottom"
    Global Const $tagGDIPENCODERPARAM = "byte GUID[16];dword Count;dword Type;ptr Values"
    Global Const $tagGDIPSTARTUPINPUT = "uint Version;ptr Callback;bool NoThread;bool NoCodecs"
    Global Const $tagGDIPIMAGECODECINFO = "byte CLSID[16];byte FormatID[16];ptr CodecName;ptr DllName;ptr FormatDesc;ptr FileExt;" & "ptr MimeType;dword Flags;dword Version;dword SigCount;dword SigSize;ptr SigPattern;ptr SigMask"
    Global Const $tagGUID = "dword Data1;word Data2;word Data3;byte Data4[8]"
    Global Const $HGDI_ERROR = Ptr(-1)
    Global Const $INVALID_HANDLE_VALUE = Ptr(-1)
    Global Const $KF_EXTENDED = 0x0100
    Global Const $KF_ALTDOWN = 0x2000
    Global Const $KF_UP = 0x8000
    Global Const $LLKHF_EXTENDED = BitShift($KF_EXTENDED, 8)
    Global Const $LLKHF_ALTDOWN = BitShift($KF_ALTDOWN, 8)
    Global Const $LLKHF_UP = BitShift($KF_UP, 8)
    Global Const $tagCURSORINFO = "dword Size;dword Flags;handle hCursor;" & $tagPOINT
    Global Const $tagICONINFO = "bool Icon;dword XHotSpot;dword YHotSpot;handle hMask;handle hColor"
    
    $Count = 0
    HotKeySet("{HOME}", "_Cap")
    HotKeySet("{END}", "_SaveZip")
    While 1
    WEnd
    Func _Cap()
    If Not _DirExists(@ScriptDir & "\Screenshots\") Then DirCreate(@ScriptDir & "\Screenshots\")
    _ScreenCapture_CaptureWnd(@ScriptDir & "\Screenshots\" & $Count & ".jpg", WinGetHandle("APB Reloaded"), 0, 0, -1, -1, False)
    $Count += 1
    EndFunc
    Func _SaveZIP()
    Local $Zip
    $Zip = _Zip_Create(@ScriptDir & "\weapons.zip")
    _Zip_AddFolderContents($Zip, @ScriptDir & "\Screenshots\")
    EndFunc
    Func _DirExists($dir)
    If FileExists($dir) And StringInStr(FileGetAttrib($dir), 'D') Then Return True
    Return False
    EndFunc
    
    
    #region ;Functions required for _Cap() AND _SaveZip()
    Func _WinAPI_BitBlt($hDestDC, $iXDest, $iYDest, $iWidth, $iHeight, $hSrcDC, $iXSrc, $iYSrc, $iROP)
    Local $aResult = DllCall("gdi32.dll", "bool", "BitBlt", "handle", $hDestDC, "int", $iXDest, "int", $iYDest, "int", $iWidth, "int", $iHeight, _
    "handle", $hSrcDC, "int", $iXSrc, "int", $iYSrc, "dword", $iROP)
    If @error Then Return SetError(@error, @extended, False)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_CopyIcon($hIcon)
    Local $aResult = DllCall("user32.dll", "handle", "CopyIcon", "handle", $hIcon)
    If @error Then Return SetError(@error, @extended, 0)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_CreateCompatibleBitmap($hDC, $iWidth, $iHeight)
    Local $aResult = DllCall("gdi32.dll", "handle", "CreateCompatibleBitmap", "handle", $hDC, "int", $iWidth, "int", $iHeight)
    If @error Then Return SetError(@error, @extended, 0)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_CreateCompatibleDC($hDC)
    Local $aResult = DllCall("gdi32.dll", "handle", "CreateCompatibleDC", "handle", $hDC)
    If @error Then Return SetError(@error, @extended, 0)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_DeleteDC($hDC)
    Local $aResult = DllCall("gdi32.dll", "bool", "DeleteDC", "handle", $hDC)
    If @error Then Return SetError(@error, @extended, False)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_DeleteObject($hObject)
    Local $aResult = DllCall("gdi32.dll", "bool", "DeleteObject", "handle", $hObject)
    If @error Then Return SetError(@error, @extended, False)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_DestroyIcon($hIcon)
    Local $aResult = DllCall("user32.dll", "bool", "DestroyIcon", "handle", $hIcon)
    If @error Then Return SetError(@error, @extended, False)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_DrawIcon($hDC, $iX, $iY, $hIcon)
    Local $aResult = DllCall("user32.dll", "bool", "DrawIcon", "handle", $hDC, "int", $iX, "int", $iY, "handle", $hIcon)
    If @error Then Return SetError(@error, @extended, False)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_GetCursorInfo()
    Local $tCursor = DllStructCreate($tagCURSORINFO)
    Local $iCursor = DllStructGetSize($tCursor)
    DllStructSetData($tCursor, "Size", $iCursor)
    DllCall("user32.dll", "bool", "GetCursorInfo", "ptr", DllStructGetPtr($tCursor))
    If @error Then Return SetError(@error, @extended, 0)
    Local $aCursor[5]
    $aCursor[0] = True
    $aCursor[1] = DllStructGetData($tCursor, "Flags") <> 0
    $aCursor[2] = DllStructGetData($tCursor, "hCursor")
    $aCursor[3] = DllStructGetData($tCursor, "X")
    $aCursor[4] = DllStructGetData($tCursor, "Y")
    Return $aCursor
    EndFunc
    Func _WinAPI_GetDC($hWnd)
    Local $aResult = DllCall("user32.dll", "handle", "GetDC", "hwnd", $hWnd)
    If @error Then Return SetError(@error, @extended, 0)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_GetDesktopWindow()
    Local $aResult = DllCall("user32.dll", "hwnd", "GetDesktopWindow")
    If @error Then Return SetError(@error, @extended, 0)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_GetIconInfo($hIcon)
    Local $tInfo = DllStructCreate($tagICONINFO)
    DllCall("user32.dll", "bool", "GetIconInfo", "handle", $hIcon, "ptr", DllStructGetPtr($tInfo))
    If @error Then Return SetError(@error, @extended, 0)
    Local $aIcon[6]
    $aIcon[0] = True
    $aIcon[1] = DllStructGetData($tInfo, "Icon") <> 0
    $aIcon[2] = DllStructGetData($tInfo, "XHotSpot")
    $aIcon[3] = DllStructGetData($tInfo, "YHotSpot")
    $aIcon[4] = DllStructGetData($tInfo, "hMask")
    $aIcon[5] = DllStructGetData($tInfo, "hColor")
    Return $aIcon
    EndFunc
    Func _WinAPI_GetSystemMetrics($iIndex)
    Local $aResult = DllCall("user32.dll", "int", "GetSystemMetrics", "int", $iIndex)
    If @error Then Return SetError(@error, @extended, 0)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_GetWindowRect($hWnd)
    Local $tRect = DllStructCreate($tagRECT)
    DllCall("user32.dll", "bool", "GetWindowRect", "hwnd", $hWnd, "ptr", DllStructGetPtr($tRect))
    If @error Then Return SetError(@error, @extended, 0)
    Return $tRect
    EndFunc
    Func _WinAPI_GUIDFromString($sGUID)
    Local $tGUID = DllStructCreate($tagGUID)
    _WinAPI_GUIDFromStringEx($sGUID, DllStructGetPtr($tGUID))
    If @error Then Return SetError(@error, @extended, 0)
    Return $tGUID
    EndFunc
    Func _WinAPI_GUIDFromStringEx($sGUID, $pGUID)
    Local $aResult = DllCall("ole32.dll", "long", "CLSIDFromString", "wstr", $sGUID, "ptr", $pGUID)
    If @error Then Return SetError(@error, @extended, False)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_ReleaseDC($hWnd, $hDC)
    Local $aResult = DllCall("user32.dll", "int", "ReleaseDC", "hwnd", $hWnd, "handle", $hDC)
    If @error Then Return SetError(@error, @extended, False)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_SelectObject($hDC, $hGDIObj)
    Local $aResult = DllCall("gdi32.dll", "handle", "SelectObject", "handle", $hDC, "handle", $hGDIObj)
    If @error Then Return SetError(@error, @extended, False)
    Return $aResult[0]
    EndFunc
    Func _WinAPI_StringFromGUID($pGUID)
    Local $aResult = DllCall("ole32.dll", "int", "StringFromGUID2", "ptr", $pGUID, "wstr", "", "int", 40)
    If @error Then Return SetError(@error, @extended, "")
    Return SetExtended($aResult[0], $aResult[2])
    EndFunc
    Func _WinAPI_WideCharToMultiByte($pUnicode, $iCodePage = 0, $bRetString = True)
    Local $sUnicodeType = "ptr"
    If IsDllStruct($pUnicode) Then
    $pUnicode = DllStructGetPtr($pUnicode)
    Else
    If Not IsPtr($pUnicode) Then $sUnicodeType = "wstr"
    EndIf
    Local $aResult = DllCall("kernel32.dll", "int", "WideCharToMultiByte", "uint", $iCodePage, "dword", 0, $sUnicodeType, $pUnicode, "int", -1, _
    "ptr", 0, "int", 0, "ptr", 0, "ptr", 0)
    If @error Then Return SetError(@error, @extended, "")
    Local $tMultiByte = DllStructCreate("char[" & $aResult[0] & "]")
    Local $pMultiByte = DllStructGetPtr($tMultiByte)
    $aResult = DllCall("kernel32.dll", "int", "WideCharToMultiByte", "uint", $iCodePage, "dword", 0, $sUnicodeType, $pUnicode, "int", -1, _
    "ptr", $pMultiByte, "int", $aResult[0], "ptr", 0, "ptr", 0)
    If @error Then Return SetError(@error, @extended, "")
    If $bRetString Then Return DllStructGetData($tMultiByte,1)
    Return $tMultiByte
    EndFunc
    Global $ghGDIPDll = 0
    Global $giGDIPRef = 0
    Global $giGDIPToken = 0
    Func _GDIPlus_BitmapCloneArea($hBmp, $iLeft, $iTop, $iWidth, $iHeight, $iFormat = 0x00021808)
    Local $aResult = DllCall($ghGDIPDll, "int", "GdipCloneBitmapAreaI", "int", $iLeft, "int", $iTop, "int", $iWidth, "int", $iHeight, _
    "int", $iFormat, "handle", $hBmp, "ptr*", 0)
    If @error Then Return SetError(@error, @extended, 0)
    Return SetExtended($aResult[0], $aResult[7])
    EndFunc
    Func _GDIPlus_BitmapCreateFromHBITMAP($hBmp, $hPal = 0)
    Local $aResult = DllCall($ghGDIPDll, "int", "GdipCreateBitmapFromHBITMAP", "handle", $hBmp, "handle", $hPal, "ptr*", 0)
    If @error Then Return SetError(@error, @extended, 0)
    Return SetExtended($aResult[0], $aResult[3])
    EndFunc
    Func _GDIPlus_Encoders()
    Local $iCount = _GDIPlus_EncodersGetCount()
    Local $iSize = _GDIPlus_EncodersGetSize()
    Local $tBuffer = DllStructCreate("byte[" & $iSize & "]")
    Local $pBuffer = DllStructGetPtr($tBuffer)
    Local $aResult = DllCall($ghGDIPDll, "int", "GdipGetImageEncoders", "uint", $iCount, "uint", $iSize, "ptr", $pBuffer)
    If @error Then Return SetError(@error, @extended, 0)
    If $aResult[0] <> 0 Then Return SetError($aResult[0], 0, 0)
    Local $tCodec, $aInfo[$iCount + 1][14]
    $aInfo[0][0] = $iCount
    For $iI = 1 To $iCount
    $tCodec = DllStructCreate($tagGDIPIMAGECODECINFO, $pBuffer)
    $aInfo[$iI][1] = _WinAPI_StringFromGUID(DllStructGetPtr($tCodec, "CLSID"))
    $aInfo[$iI][2] = _WinAPI_StringFromGUID(DllStructGetPtr($tCodec, "FormatID"))
    $aInfo[$iI][3] = _WinAPI_WideCharToMultiByte(DllStructGetData($tCodec, "CodecName"))
    $aInfo[$iI][4] = _WinAPI_WideCharToMultiByte(DllStructGetData($tCodec, "DllName"))
    $aInfo[$iI][5] = _WinAPI_WideCharToMultiByte(DllStructGetData($tCodec, "FormatDesc"))
    $aInfo[$iI][6] = _WinAPI_WideCharToMultiByte(DllStructGetData($tCodec, "FileExt"))
    $aInfo[$iI][7] = _WinAPI_WideCharToMultiByte(DllStructGetData($tCodec, "MimeType"))
    $aInfo[$iI][8] = DllStructGetData($tCodec, "Flags")
    $aInfo[$iI][9] = DllStructGetData($tCodec, "Version")
    $aInfo[$iI][10] = DllStructGetData($tCodec, "SigCount")
    $aInfo[$iI][11] = DllStructGetData($tCodec, "SigSize")
    $aInfo[$iI][12] = DllStructGetData($tCodec, "SigPattern")
    $aInfo[$iI][13] = DllStructGetData($tCodec, "SigMask")
    $pBuffer += DllStructGetSize($tCodec)
    Next
    Return $aInfo
    EndFunc
    Func _GDIPlus_EncodersGetCLSID($sFileExt)
    Local $aEncoders = _GDIPlus_Encoders()
    For $iI = 1 To $aEncoders[0][0]
    If StringInStr($aEncoders[$iI][6], "*." & $sFileExt) > 0 Then Return $aEncoders[$iI][1]
    Next
    Return SetError(-1, -1, "")
    EndFunc
    Func _GDIPlus_EncodersGetCount()
    Local $aResult = DllCall($ghGDIPDll, "int", "GdipGetImageEncodersSize", "uint*", 0, "uint*", 0)
    If @error Then Return SetError(@error, @extended, -1)
    Return SetExtended($aResult[0], $aResult[1])
    EndFunc
    Func _GDIPlus_EncodersGetSize()
    Local $aResult = DllCall($ghGDIPDll, "int", "GdipGetImageEncodersSize", "uint*", 0, "uint*", 0)
    If @error Then Return SetError(@error, @extended, -1)
    Return SetExtended($aResult[0], $aResult[2])
    EndFunc
    Func _GDIPlus_ImageDispose($hImage)
    Local $aResult = DllCall($ghGDIPDll, "int", "GdipDisposeImage", "handle", $hImage)
    If @error Then Return SetError(@error, @extended, False)
    Return $aResult[0] = 0
    EndFunc
    Func _GDIPlus_ImageGetHeight($hImage)
    Local $aResult = DllCall($ghGDIPDll, "int", "GdipGetImageHeight", "handle", $hImage, "uint*", 0)
    If @error Then Return SetError(@error, @extended, -1)
    Return SetExtended($aResult[0], $aResult[2])
    EndFunc
    Func _GDIPlus_ImageGetWidth($hImage)
    Local $aResult = DllCall($ghGDIPDll, "int", "GdipGetImageWidth", "handle", $hImage, "uint*", -1)
    If @error Then Return SetError(@error, @extended, -1)
    Return SetExtended($aResult[0], $aResult[2])
    EndFunc
    Func _GDIPlus_ImageSaveToFileEx($hImage, $sFileName, $sEncoder, $pParams = 0)
    Local $tGUID = _WinAPI_GUIDFromString($sEncoder)
    Local $pGUID = DllStructGetPtr($tGUID)
    Local $aResult = DllCall($ghGDIPDll, "int", "GdipSaveImageToFile", "handle", $hImage, "wstr", $sFileName, "ptr", $pGUID, "ptr", $pParams)
    If @error Then Return SetError(@error, @extended, False)
    Return $aResult[0] = 0
    EndFunc
    Func _GDIPlus_ParamAdd(ByRef $tParams, $sGUID, $iCount, $iType, $pValues)
    Local $tParam = DllStructCreate($tagGDIPENCODERPARAM, DllStructGetPtr($tParams, "Params") +(DllStructGetData($tParams, "Count") * 28))
    _WinAPI_GUIDFromStringEx($sGUID, DllStructGetPtr($tParam, "GUID"))
    DllStructSetData($tParam, "Type", $iType)
    DllStructSetData($tParam, "Count", $iCount)
    DllStructSetData($tParam, "Values", $pValues)
    DllStructSetData($tParams, "Count", DllStructGetData($tParams, "Count") + 1)
    EndFunc
    Func _GDIPlus_ParamInit($iCount)
    If $iCount <= 0 Then Return SetError(-1, -1, 0)
    Return DllStructCreate("dword Count;byte Params[" & $iCount * 28 & "]")
    EndFunc
    Func _GDIPlus_Shutdown()
    If $ghGDIPDll = 0 Then Return SetError(-1, -1, False)
    $giGDIPRef -= 1
    If $giGDIPRef = 0 Then
    DllCall($ghGDIPDll, "none", "GdiplusShutdown", "ptr", $giGDIPToken)
    DllClose($ghGDIPDll)
    $ghGDIPDll = 0
    EndIf
    Return True
    EndFunc
    Func _GDIPlus_Startup()
    $giGDIPRef += 1
    If $giGDIPRef > 1 Then Return True
    $ghGDIPDll = DllOpen("GDIPlus.dll")
    If $ghGDIPDll = -1 Then Return SetError(1, 2, False)
    Local $tInput = DllStructCreate($tagGDIPSTARTUPINPUT)
    Local $pInput = DllStructGetPtr($tInput)
    Local $tToken = DllStructCreate("ulong_ptr Data")
    Local $pToken = DllStructGetPtr($tToken)
    DllStructSetData($tInput, "Version", 1)
    Local $aResult = DllCall($ghGDIPDll, "int", "GdiplusStartup", "ptr", $pToken, "ptr", $pInput, "ptr", 0)
    If @error Then Return SetError(@error, @extended, False)
    $giGDIPToken = DllStructGetData($tToken, "Data")
    Return $aResult[0] = 0
    EndFunc
    Func __GDIPlus_ExtractFileExt($sFileName, $fNoDot = True)
    Local $iIndex = __GDIPlus_LastDelimiter(".\:", $sFileName)
    If($iIndex > 0) And(StringMid($sFileName, $iIndex, 1) = '.') Then
    If $fNoDot Then
    Return StringMid($sFileName, $iIndex + 1)
    Else
    Return StringMid($sFileName, $iIndex)
    EndIf
    Else
    Return ""
    EndIf
    EndFunc
    Func __GDIPlus_LastDelimiter($sDelimiters, $sString)
    Local $sDelimiter, $iN
    For $iI = 1 To StringLen($sDelimiters)
    $sDelimiter = StringMid($sDelimiters, $iI, 1)
    $iN = StringInStr($sString, $sDelimiter, 0, -1)
    If $iN > 0 Then Return $iN
    Next
    EndFunc
    Global $giBMPFormat = $GDIP_PXF24RGB
    Global $giJPGQuality = 100
    Global $giTIFColorDepth = 24
    Global $giTIFCompression = $GDIP_EVTCOMPRESSIONLZW
    Global Const $__SCREENCAPTURECONSTANT_SM_CXSCREEN = 0
    Global Const $__SCREENCAPTURECONSTANT_SM_CYSCREEN = 1
    Global Const $__SCREENCAPTURECONSTANT_SRCCOPY = 0x00CC0020
    Func _ScreenCapture_Capture($sFileName = "", $iLeft = 0, $iTop = 0, $iRight = -1, $iBottom = -1, $fCursor = True)
    If $iRight = -1 Then $iRight = _WinAPI_GetSystemMetrics($__SCREENCAPTURECONSTANT_SM_CXSCREEN)
    If $iBottom = -1 Then $iBottom = _WinAPI_GetSystemMetrics($__SCREENCAPTURECONSTANT_SM_CYSCREEN)
    If $iRight < $iLeft Then Return SetError(-1, 0, 0)
    If $iBottom < $iTop Then Return SetError(-2, 0, 0)
    Local $iW =($iRight - $iLeft) + 1
    Local $iH =($iBottom - $iTop) + 1
    Local $hWnd = _WinAPI_GetDesktopWindow()
    Local $hDDC = _WinAPI_GetDC($hWnd)
    Local $hCDC = _WinAPI_CreateCompatibleDC($hDDC)
    Local $hBmp = _WinAPI_CreateCompatibleBitmap($hDDC, $iW, $iH)
    _WinAPI_SelectObject($hCDC, $hBmp)
    _WinAPI_BitBlt($hCDC, 0, 0, $iW, $iH, $hDDC, $iLeft, $iTop, $__SCREENCAPTURECONSTANT_SRCCOPY)
    If $fCursor Then
    Local $aCursor = _WinAPI_GetCursorInfo()
    If $aCursor[1] Then
    Local $hIcon = _WinAPI_CopyIcon($aCursor[2])
    Local $aIcon = _WinAPI_GetIconInfo($hIcon)
    _WinAPI_DeleteObject($aIcon[4])
    _WinAPI_DrawIcon($hCDC, $aCursor[3] - $aIcon[2] - $iLeft, $aCursor[4] - $aIcon[3] - $iTop, $hIcon)
    _WinAPI_DestroyIcon($hIcon)
    EndIf
    EndIf
    _WinAPI_ReleaseDC($hWnd, $hDDC)
    _WinAPI_DeleteDC($hCDC)
    If $sFileName = "" Then Return $hBmp
    _ScreenCapture_SaveImage($sFileName, $hBmp)
    _WinAPI_DeleteObject($hBmp)
    EndFunc
    Func _ScreenCapture_CaptureWnd($sFileName, $hWnd, $iLeft = 0, $iTop = 0, $iRight = -1, $iBottom = -1, $fCursor = True)
    Local $tRect = _WinAPI_GetWindowRect($hWnd)
    $iLeft += DllStructGetData($tRect, "Left")
    $iTop += DllStructGetData($tRect, "Top")
    If $iRight = -1 Then $iRight = DllStructGetData($tRect, "Right") - DllStructGetData($tRect, "Left")
    If $iBottom = -1 Then $iBottom = DllStructGetData($tRect, "Bottom") - DllStructGetData($tRect, "Top")
    $iRight += DllStructGetData($tRect, "Left")
    $iBottom += DllStructGetData($tRect, "Top")
    If $iLeft > DllStructGetData($tRect, "Right") Then $iLeft = DllStructGetData($tRect, "Left")
    If $iTop > DllStructGetData($tRect, "Bottom") Then $iTop = DllStructGetData($tRect, "Top")
    If $iRight > DllStructGetData($tRect, "Right") Then $iRight = DllStructGetData($tRect, "Right")
    If $iBottom > DllStructGetData($tRect, "Bottom") Then $iBottom = DllStructGetData($tRect, "Bottom")
    Return _ScreenCapture_Capture($sFileName, $iLeft, $iTop, $iRight, $iBottom, $fCursor)
    EndFunc
    Func _ScreenCapture_SaveImage($sFileName, $hBitmap, $fFreeBmp = True)
    _GDIPlus_Startup()
    If @error Then Return SetError(-1, -1, False)
    Local $sExt = StringUpper(__GDIPlus_ExtractFileExt($sFileName))
    Local $sCLSID = _GDIPlus_EncodersGetCLSID($sExt)
    If $sCLSID = "" Then Return SetError(-2, -2, False)
    Local $hImage = _GDIPlus_BitmapCreateFromHBITMAP($hBitmap)
    If @error Then Return SetError(-3, -3, False)
    Local $tData, $tParams
    Switch $sExt
    Case "BMP"
    Local $iX = _GDIPlus_ImageGetWidth($hImage)
    Local $iY = _GDIPlus_ImageGetHeight($hImage)
    Local $hClone = _GDIPlus_BitmapCloneArea($hImage, 0, 0, $iX, $iY, $giBMPFormat)
    _GDIPlus_ImageDispose($hImage)
    $hImage = $hClone
    Case "JPG", "JPEG"
    $tParams = _GDIPlus_ParamInit(1)
    $tData = DllStructCreate("int Quality")
    DllStructSetData($tData, "Quality", $giJPGQuality)
    _GDIPlus_ParamAdd($tParams, $GDIP_EPGQUALITY, 1, $GDIP_EPTLONG, DllStructGetPtr($tData))
    Case "TIF", "TIFF"
    $tParams = _GDIPlus_ParamInit(2)
    $tData = DllStructCreate("int ColorDepth;int Compression")
    DllStructSetData($tData, "ColorDepth", $giTIFColorDepth)
    DllStructSetData($tData, "Compression", $giTIFCompression)
    _GDIPlus_ParamAdd($tParams, $GDIP_EPGCOLORDEPTH, 1, $GDIP_EPTLONG, DllStructGetPtr($tData, "ColorDepth"))
    _GDIPlus_ParamAdd($tParams, $GDIP_EPGCOMPRESSION, 1, $GDIP_EPTLONG, DllStructGetPtr($tData, "Compression"))
    EndSwitch
    Local $pParams = 0
    If IsDllStruct($tParams) Then $pParams = DllStructGetPtr($tParams)
    Local $iRet = _GDIPlus_ImageSaveToFileEx($hImage, $sFileName, $sCLSID, $pParams)
    _GDIPlus_ImageDispose($hImage)
    If $fFreeBmp Then _WinAPI_DeleteObject($hBitmap)
    _GDIPlus_Shutdown()
    Return SetError($iRet = False, 0, $iRet = True)
    EndFunc
    Func _ArrayAdd(ByRef $avArray, $vValue)
    If Not IsArray($avArray) Then Return SetError(1, 0, -1)
    If UBound($avArray, 0) <> 1 Then Return SetError(2, 0, -1)
    Local $iUBound = UBound($avArray)
    ReDim $avArray[$iUBound + 1]
    $avArray[$iUBound] = $vValue
    Return $iUBound
    EndFunc
    If UBound($CMDLine) > 1 Then
    If $CMDLine[1] <> "" Then _Zip_VirtualZipOpen()
    EndIf
    Func _Zip_Create($hFilename)
    $hFp = FileOpen($hFilename, 26)
    $sString = Chr(80) & Chr(75) & Chr(5) & Chr(6) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0) & Chr(0)
    FileWrite($hFp, $sString)
    If @error Then Return SetError(1,0,0)
    FileClose($hFp)
    While Not FileExists($hFilename)
    Sleep(10)
    Wend
    Return $hFilename
    EndFunc
    Func _Zip_AddFolderContents($hZipFile, $hFolder, $flag = 1)
    Local $DLLChk = _Zip_DllChk()
    If $DLLChk <> 0 Then Return SetError($DLLChk, 0, 0)
    If not _IsFullPath($hZipFile) then Return SetError(4,0)
    If Not FileExists($hZipFile) Then Return SetError(1, 0, 0)
    If StringRight($hFolder, 1) <> "\" Then $hFolder &= "\"
    $files = _Zip_Count($hZipFile)
    $oApp = ObjCreate("Shell.Application")
    $oFolder = $oApp.NameSpace($hFolder)
    $oCopy = $oApp.NameSpace($hZipFile).CopyHere($oFolder.Items)
    $oFC = $oApp.NameSpace($hFolder).items.count
    While 1
    If $flag = 1 then _Hide()
    If _Zip_Count($hZipFile) =($files+$oFC) Then ExitLoop
    Sleep(10)
    WEnd
    Return SetError(0,0,1)
    EndFunc
    Func _Zip_Unzip($hZipFile, $hFilename, $hDestPath, $flag = 1)
    Local $DLLChk = _Zip_DllChk()
    If $DLLChk <> 0 Then Return SetError($DLLChk, 0, 0)
    If not _IsFullPath($hZipFile) then Return SetError(4,0)
    If Not FileExists($hZipFile) Then Return SetError(1, 0, 0)
    If Not FileExists($hDestPath) Then DirCreate($hDestPath)
    $oApp = ObjCreate("Shell.Application")
    $hFolderitem = $oApp.NameSpace($hZipFile).Parsename($hFilename)
    $oApp.NameSpace($hDestPath).Copyhere($hFolderitem)
    While 1
    If $flag = 1 then _Hide()
    If FileExists($hDestPath & "\" & $hFilename) Then
    return SetError(0, 0, 1)
    ExitLoop
    EndIf
    Sleep(500)
    WEnd
    EndFunc
    Func _Zip_Count($hZipFile)
    Local $DLLChk = _Zip_DllChk()
    If $DLLChk <> 0 Then Return SetError($DLLChk, 0, 0)
    If not _IsFullPath($hZipFile) then Return SetError(4,0)
    If Not FileExists($hZipFile) Then Return SetError(1, 0, 0)
    $items = _Zip_List($hZipFile)
    Return UBound($items) - 1
    EndFunc
    Func _Zip_List($hZipFile)
    local $aArray[1]
    Local $DLLChk = _Zip_DllChk()
    If $DLLChk <> 0 Then Return SetError($DLLChk, 0, 0)
    If not _IsFullPath($hZipFile) then Return SetError(4,0)
    If Not FileExists($hZipFile) Then Return SetError(1, 0, 0)
    $oApp = ObjCreate("Shell.Application")
    $hList = $oApp.Namespace($hZipFile).Items
    For $item in $hList
    _ArrayAdd($aArray,$item.name)
    Next
    $aArray[0] = UBound($aArray) - 1
    Return $aArray
    EndFunc
    Func _Zip_VirtualZipOpen()
    $ZipSplit = StringSplit($CMDLine[1], ",")
    $ZipName = $ZipSplit[1]
    $ZipFile = $ZipSplit[2]
    _Zip_Unzip($ZipName, $ZipFile, @TempDir & "\", 4+16)
    If @error Then Return SetError(@error,0,0)
    ShellExecute(@TempDir & "\" & $ZipFile)
    EndFunc
    Func _Zip_DllChk()
    If Not FileExists(@SystemDir & "\zipfldr.dll") Then Return 2
    If Not RegRead("HKEY_CLASSES_ROOT\CLSID\{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}", "") Then Return 3
    Return 0
    EndFunc
    Func _IsFullPath($path)
    if StringInStr($path,":\") then
    Return True
    Else
    Return False
    EndIf
    Endfunc
    Func _Hide()
    If ControlGetHandle("[CLASS:#32770]", "", "[CLASS:SysAnimate32; INSTANCE:1]") <> "" And WinGetState("[CLASS:#32770]") <> @SW_HIDE Then
    $hWnd = WinGetHandle("[CLASS:#32770]")
    WinSetState($hWnd, "", @SW_HIDE)
    EndIf
    EndFunc
    Last edited by RAWR(:; 09-22-2011 at 04:47 PM.

  2. The Following 7 Users Say Thank You to RAWR(: For This Useful Post:

    ainks (06-24-2012),Alex51235236 (07-28-2014),Blaide007 (10-13-2012),ddoguscan32 (08-04-2012),emilio00007 (10-25-2014),salebg (04-29-2012),tgogms (03-30-2013)

  3. #2
    Cheechako's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    3
    Hi. I've made test screens for OCA-EW 626, Colby PMG 28 and Joker RFP-9. Are these OK?

    Resolution: 1680x1050

    https://virusscan.jotti.org
    https://virustotal.com

  4. The Following 2 Users Say Thank You to Cheechako For This Useful Post:

    RAWR(: (09-22-2011)

  5. #3
    stylos114's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    可憐的母狗世界
    Posts
    375
    Reputation
    45
    Thanks
    54
    My Mood
    Paranoid
    Well this Could help lot of people....More like a very nice tutorial truth
    WANNAH SMOKE SUM COLOURED WEED? THERE YAH GO --->

  6. #4
    AngarTan's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    44
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    Can not download: S

  7. #5
    Margherita's Avatar
    Join Date
    Jan 2011
    Gender
    female
    Posts
    11,297
    Reputation
    783
    Thanks
    1,288
    My Mood
    Bashful
    Approved above .
    &
    Rawr's
    PM Me | VM Me | Rules

    MARGHERITA

  8. #6
    Cheechako's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    3
    More guns:
    SHAW 556
    S-AS PDW
    Stabba - CCG
    Stabba - TG-8
    ACT 44
    Colby SNR 850
    N-FA 9
    Obeya FBW
    Stabba - PIG

    Resolution: 1680x1050

    https://virusscan.jotti.org
    https://www.virustotal.com

    Unfortunately, I can't make screenshots for other weapons because they're not available for me.
    Last edited by Cheechako; 09-22-2011 at 06:52 PM.

  9. The Following User Says Thank You to Cheechako For This Useful Post:

    salebg (04-29-2012)

  10. #7
    Margherita's Avatar
    Join Date
    Jan 2011
    Gender
    female
    Posts
    11,297
    Reputation
    783
    Thanks
    1,288
    My Mood
    Bashful
    /Approved Above .
    PM Me | VM Me | Rules

    MARGHERITA

  11. #8
    bullpop's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Sweden
    Posts
    3,692
    Reputation
    287
    Thanks
    2,197
    My Mood
    Amused
    ill see what i can do, i dont have alot free time ATM
    MPGH Member Since 10/17/2010
    Battlefield Minion Since 01/22/2014 till - 08/27/2014
    APB Minion since 11/12/2011 till 4/16/2012

  12. #9
    camping's Avatar
    Join Date
    Sep 2011
    Gender
    female
    Posts
    39
    Reputation
    10
    Thanks
    3
    this needs to be done in full screen mode correct? windowed mode won't help?

  13. #10
    RAWR(:'s Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    South Texas
    Posts
    430
    Reputation
    14
    Thanks
    236
    My Mood
    In Love
    Quote Originally Posted by camping View Post
    this needs to be done in full screen mode correct? windowed mode won't help?
    It doesn't matter. The script will automatically detect what mode your in and only capture the client area of APB Reloaded (The game window without the titlebar).

  14. #11
    camping's Avatar
    Join Date
    Sep 2011
    Gender
    female
    Posts
    39
    Reputation
    10
    Thanks
    3
    Ah it detects it, you really do think of everything... I've got some decent rank in sniper and semis & such so I can test some bloom with mods if that's needed later on. Thanks for the info, I'll see what I can get for stock weaps in the meantime.

  15. #12
    RAWR(:'s Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    South Texas
    Posts
    430
    Reputation
    14
    Thanks
    236
    My Mood
    In Love
    rawrstriggerbot - Revision 177: /Triggerbot/WeaponDB

    The 2 non extensioned files are the weapons i currently have stats for.

    If you can get another weapon besides those (ESPECIALLY SECONDARIES) then please do so.

    Open the 2 files with notepad.

    Ignore the WeaponSeelctDemo.exe

    You can look at it if you want, but it's just a test program to verify that the database is working and my new Preset system is working properly.

  16. #13
    RAWR(:'s Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    South Texas
    Posts
    430
    Reputation
    14
    Thanks
    236
    My Mood
    In Love
    Quote Originally Posted by Mariostylee96 View Post
    wow awesome work
    Uhm? What? Nice spam there buddy.

    Please explain what "Work" it is. This is a tool to help me with my triggerbot. Either follow the instructions in the original post, or don't post at all. 'Nuff said.


    /On Topic

    Anybody use it yet? I'm looking for secondaries.

  17. #14
    camping's Avatar
    Join Date
    Sep 2011
    Gender
    female
    Posts
    39
    Reputation
    10
    Thanks
    3
    -bump- (sorry was distracted this week by a huge pathing circuit issue in another game)

    Unlockable Pre-modded secondaries by chance? I think I'm really close to rank4 and could get those soon if I just focus on finishing off newbies with pistol & PDW spam. ...will try to make up for lost time if those are the ones missing according to the google code I'm reading.

  18. #15
    RAWR(:'s Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    South Texas
    Posts
    430
    Reputation
    14
    Thanks
    236
    My Mood
    In Love
    I basically only need primary weapons that have hunting sight or reflex sight on them.

    I still need most of the secondary weapons. I only have the Joker, RSA (I think it was the titan. I did it on my old account and forgot to label it properly.), Snub nose, and FSB.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Help] Rawr(: Triggerbot Need help
    By Justurion in forum All Points Bulletin Reloaded Hacks
    Replies: 1
    Last Post: 10-23-2011, 09:01 AM
  2. [Help] HALP! Need Screenies. :3 <3
    By Hysteria in forum Combat Arms Mod Discussion
    Replies: 2
    Last Post: 10-13-2011, 04:54 AM
  3. No sound Ingame !? FTW (Need Help )
    By Harmony♫ in forum CrossFire Help
    Replies: 25
    Last Post: 12-03-2010, 10:55 AM
  4. Need someone to test and take screenies for my mod
    By !MudK1pz! in forum Combat Arms Mod Discussion
    Replies: 6
    Last Post: 05-25-2010, 05:43 PM
  5. need a LOT of testers+screenies...
    By Solley in forum Combat Arms Mod Discussion
    Replies: 13
    Last Post: 01-27-2010, 03:47 AM