BlackBerryx3 0 Posted August 9, 2013 (edited) Hi, I have an another problem ... i'm using this script for getting HWID : #include <Crypt.au3> MsgBox(4096, '', _GetHWID()) Func _GetHWID() Local $aDrives = DriveGetDrive('FIXED'), $sOutput = '' If @error = 0 Then For $i = 1 To $aDrives[0] $sOutput &= DriveGetSerial($aDrives[$i]) Next EndIf $aDrives = DriveGetDrive('CDROM') If @error = 0 Then For $i = 1 To $aDrives[0] $sOutput &= DriveGetSerial($aDrives[$i]) Next EndIf Local $aMemory = MemGetStats() $sOutput &= @OSVersion & @OSBuild & @OSArch & @CPUArch & @KBLayout & $aMemory[1] $aMemory = 0 $sOutput = StringStripWS($sOutput, 8) Local $sHash = StringTrimLeft(_Crypt_HashData($sOutput, $CALG_MD5), 2) Return '{' & StringMid($sHash, 1, 8) & '-' & StringMid($sHash, 9, 4) & '-' & StringMid($sHash, 13, 4) & '-' & StringMid($sHash, 17, 4) & '-' & StringMid($sHash, 21, 12) & '}' EndFunc ;==>_GetHWID I got my HWID and i wanna add that to my script. and i will release it on other forums. for example ; if user has 300 replies on forum , user can use my script. if not he can't. Sorry for bad english >.> i wanna do that. how can i do that ? o.O Edited August 9, 2013 by BlackBerryx3 Share this post Link to post Share on other sites
0xdefea7 10 Posted August 10, 2013 That is up to the forum you want to post your script on, not your script itself. Plus, you just released it to everyone who wants it. Thank you Share this post Link to post Share on other sites