slaughter Posted December 2, 2007 Share Posted December 2, 2007 (edited) This is game loader witch check files with MD5 checksum.Why is good? You dont have to change anyting when you update your game or appjust upload changed files to server. Thats it. Client automaticly check file and if its difrent on client side will delete it and replace with updated one in server.Screenshoot:Only beta version baisicly made it for Lineage 2TDL:direct seciurity data transfer to memory withuot saving on disksub folders checkcustom files out of game directoryprotection, preventing app start without loaderRequiriments:Web server with PHP.Files:file_list.php$dir = Path to original files to compare with client ones. Dont put folder there it dosent support sub folder check.This file goes to Web server.And your originl files witch have to be cheked goes to on web server. Take a look at PHP codeOriginal name: bg.jpgBackgruond picture for loader. Add some text with photosop and you have your news shown every time they start client.MD5Hash.dllname: loader.dll(you can find it in forum search to. It's not my dll I borowed it)save it as loader.dll it is dll witch i fuond on autoit forums it does MD5 checksumm function, as autoit dosent have it.name: Loader.au3Loader.au3AU3 script Comments? Offers? Greatfull Edited December 3, 2007 by slaughter In progress: Windows Server bruteforce GUARD Admin Tools (Remote client control) Bypasing firewall Old stuff: [font="Verdana;"]MD5 Auto Update Calendar XP SS multi usser server & client Autoit Remote Control (ARC)[/font] Link to comment Share on other sites More sharing options...
James Posted December 2, 2007 Share Posted December 2, 2007 You really should make this work from other drives and not V: Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ Link to comment Share on other sites More sharing options...
ashley Posted December 2, 2007 Share Posted December 2, 2007 agreed Free icons for your programs Link to comment Share on other sites More sharing options...
James Posted December 2, 2007 Share Posted December 2, 2007 That is, as easy as it is (try saying that in the morning) to change it, it should be easily customisable. Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ Link to comment Share on other sites More sharing options...
slaughter Posted December 2, 2007 Author Share Posted December 2, 2007 sorry for dump witch I posted. at 8:00 +2GTM will be full with guide. Just wanted to see is this use full. SO I carry on on this. In progress: Windows Server bruteforce GUARD Admin Tools (Remote client control) Bypasing firewall Old stuff: [font="Verdana;"]MD5 Auto Update Calendar XP SS multi usser server & client Autoit Remote Control (ARC)[/font] Link to comment Share on other sites More sharing options...
JustinReno Posted December 2, 2007 Share Posted December 2, 2007 Nevermind, yes, Use @HomepathReason I deleted the previous post (Thought it was the wrong thread) Link to comment Share on other sites More sharing options...
slaughter Posted December 3, 2007 Author Share Posted December 3, 2007 Some update. As promised In progress: Windows Server bruteforce GUARD Admin Tools (Remote client control) Bypasing firewall Old stuff: [font="Verdana;"]MD5 Auto Update Calendar XP SS multi usser server & client Autoit Remote Control (ARC)[/font] Link to comment Share on other sites More sharing options...
slaughter Posted December 3, 2007 Author Share Posted December 3, 2007 And? good, bad? Errors? Tested? opinion? In progress: Windows Server bruteforce GUARD Admin Tools (Remote client control) Bypasing firewall Old stuff: [font="Verdana;"]MD5 Auto Update Calendar XP SS multi usser server & client Autoit Remote Control (ARC)[/font] Link to comment Share on other sites More sharing options...
DirtDBaK Posted December 3, 2007 Share Posted December 3, 2007 you should check out the VersionCompare udf the function you would find useful is VersionCompareX It can handel any version number that is numbers or letters... like 10.3.4.5.2 and 11.34.4.5.2A i use it in my AutoUpdater [center][/center] Link to comment Share on other sites More sharing options...
slaughter Posted December 3, 2007 Author Share Posted December 3, 2007 you should check out the VersionCompare udfthe function you would find useful is VersionCompareXIt can handel any version number that is numbers or letters...like 10.3.4.5.2 and 11.34.4.5.2Ai use it in my AutoUpdaterThanks I will tke a look In progress: Windows Server bruteforce GUARD Admin Tools (Remote client control) Bypasing firewall Old stuff: [font="Verdana;"]MD5 Auto Update Calendar XP SS multi usser server & client Autoit Remote Control (ARC)[/font] Link to comment Share on other sites More sharing options...
DirtDBaK Posted December 5, 2007 Share Posted December 5, 2007 (edited) -1 means $sOne > $sTwo 0 means $sOne = $sTwo 1 means $sOne < $sTwo BTW: I'm not the author of this... Im unsure of the author... Func _VersionCompareX($sOne, $sTwo) Local $returnValue = 0 Local $tempOne = StringSplit($sOne, "."), $tempTwo = StringSplit($sTwo, ".") Local $numPositions = $tempOne[0] If $tempTwo[0] > $tempOne[0] Then $numPositions = $tempTwo[0] Dim $arrayOne[$numPositions], $arrayTwo[$numPositions] For $X = 0 to $numPositions - 1 $arrayOne[$X] = 0 $arrayTwo[$X] = 0 Next For $X = 1 to $tempOne[0] If $X > $numPositions Then ExitLoop $stripped = StringRegExpReplace ($tempOne[$X], "^0+", "") If $stripped <> "" Then $arrayOne[$X - 1] = $stripped Next For $X = 1 to $tempTwo[0] If $X > $numPositions Then ExitLoop $stripped = StringRegExpReplace ($tempTwo[$X], "^0+", "") If $stripped <> "" Then $arrayTwo[$X - 1] = $stripped Next For $X = 0 to $numPositions - 1 Switch StringCompare ($arrayOne[$X],$arrayTwo[$X]) Case 0 $returnValue = 0 Case -1 $returnValue = -1 ExitLoop Case 1 $returnValue = 1 ExitLoop EndSwitch Next Return $returnValue EndFunc Hope it helps! Edited December 5, 2007 by DBak [center][/center] Link to comment Share on other sites More sharing options...
slaughter Posted December 5, 2007 Author Share Posted December 5, 2007 This culd help to check file version more quicker than it is now. Thats gona be one of seciurity modules later =] In progress: Windows Server bruteforce GUARD Admin Tools (Remote client control) Bypasing firewall Old stuff: [font="Verdana;"]MD5 Auto Update Calendar XP SS multi usser server & client Autoit Remote Control (ARC)[/font] Link to comment Share on other sites More sharing options...
slaughter Posted December 6, 2007 Author Share Posted December 6, 2007 so nayone tested it? working or not? :/ In progress: Windows Server bruteforce GUARD Admin Tools (Remote client control) Bypasing firewall Old stuff: [font="Verdana;"]MD5 Auto Update Calendar XP SS multi usser server & client Autoit Remote Control (ARC)[/font] Link to comment Share on other sites More sharing options...
Chris86 Posted August 17, 2008 Share Posted August 17, 2008 Why not put all the files in a zip? getting tired of following guides just for getting the program files xP Link to comment Share on other sites More sharing options...
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