CliffHanger Posted May 4, 2017 Share Posted May 4, 2017 http://www.dev-c.com/nativedb/ Is getting reset at very frequent intervals. Feel free to post your local backups here please. Much appreciated. Kryptus and SteamSilence 2 Link to comment Share on other sites More sharing options...
Tarackgame Posted May 5, 2017 Share Posted May 5, 2017 Hy! Here is the reference html file: https://www.mediafire.com/?o5zbes5e91cy755 (10 Mar 2017 Backup) Kryptus and CliffHanger 2 Link to comment Share on other sites More sharing options...
alloc8or Posted May 5, 2017 Share Posted May 5, 2017 (edited) This is a more recent one: http://www.mediafire.com/file/04awazwtpv8mt3i/reference.html (April 16 2017) Edited May 5, 2017 by Unknown_Modder Kryptus, CliffHanger and O-Deka-K 3 Link to comment Share on other sites More sharing options...
Quant Posted May 6, 2017 Share Posted May 6, 2017 (edited) 22 april natives.h https://mega.nz/#!cF4m2ThC!dTU67qUE3ESYVw-wsBCBqdnaeqhQ7UmDG_O0KTGMad4 reference.html https://mega.nz/#!RMJ0XZDQ!m3PlyHg9jgoulDzXjtlH0-Vjo4YVfhsoGi7qNMjIvgg Edited May 6, 2017 by Quant CliffHanger and alloc8or 2 Link to comment Share on other sites More sharing options...
Tustin Posted May 11, 2017 Share Posted May 11, 2017 This is a more recent one: http://www.mediafire.com/file/04awazwtpv8mt3i/reference.html (April 16 2017)Do you happen to have a JSON download for the latest version that still had most of the native arguments defined? I just took a look at the site and it looks like some were added back but most are still missing. I'm planning on writing a newer version of native DB that actually has CSRF checks and/or captcha (to prevent scripts) and a commit history so I can roll back when necessary. I can use that html file you linked to scrape all the comments but it would save me some time if you have a JSON dump too. Kryptus 1 Link to comment Share on other sites More sharing options...
alloc8or Posted May 11, 2017 Share Posted May 11, 2017 This is a more recent one: http://www.mediafire.com/file/04awazwtpv8mt3i/reference.html (April 16 2017) Do you happen to have a JSON download for the latest version that still had most of the native arguments defined? I just took a look at the site and it looks like some were added back but most are still missing. I'm planning on writing a newer version of native DB that actually has CSRF checks and/or captcha (to prevent scripts) and a commit history so I can roll back when necessary. I can use that html file you linked to scrape all the comments but it would save me some time if you have a JSON dump too. The latest JSON I have is from March 10: Here's the link if you don't have a newer one: http://www.mediafire.com/file/za2sbx9qsl1q56b/natives.json Tustin 1 Link to comment Share on other sites More sharing options...
Tustin Posted May 12, 2017 Share Posted May 12, 2017 (edited) This is a more recent one: http://www.mediafire.com/file/04awazwtpv8mt3i/reference.html (April 16 2017) Do you happen to have a JSON download for the latest version that still had most of the native arguments defined? I just took a look at the site and it looks like some were added back but most are still missing. I'm planning on writing a newer version of native DB that actually has CSRF checks and/or captcha (to prevent scripts) and a commit history so I can roll back when necessary. I can use that html file you linked to scrape all the comments but it would save me some time if you have a JSON dump too. The latest JSON I have is from March 10: Here's the link if you don't have a newer one: http://www.mediafire.com/file/za2sbx9qsl1q56b/natives.json Thanks a bunch! I've started working on it and will hopefully have some info about the db within a few days. Also here's a quick PHP script I wrote to parse out the comments from your reference page (you need this lib https://github.com/paquettg/php-html-parser): <?phpini_set('memory_limit', '-1');require "vendor/autoload.php";use PHPHtmlParser\Dom;$dom = new Dom;//Takes a while$dom->loadFromFile("reference.html");$namespaces = $dom->find('.nstree')->find('li');foreach ($namespaces as $namespace) { foreach ($namespace->find('.fntree')[0]->find('li') as $native) { try { $desc = $native->find('.fdesc')->text; echo $desc . "\r\n"; } catch(Exception $e) { //Throws an exception if theres no desc so just continue continue; } }} Edited May 12, 2017 by Tustin alloc8or, LeFix and Kryptus 3 Link to comment Share on other sites More sharing options...
InfamousSabre Posted June 3, 2017 Share Posted June 3, 2017 (edited) This is a more recent one: http://www.mediafire.com/file/04awazwtpv8mt3i/reference.html (April 16 2017) Do you happen to have a JSON download for the latest version that still had most of the native arguments defined? I just took a look at the site and it looks like some were added back but most are still missing. I'm planning on writing a newer version of native DB that actually has CSRF checks and/or captcha (to prevent scripts) and a commit history so I can roll back when necessary. I can use that html file you linked to scrape all the comments but it would save me some time if you have a JSON dump too. To be fair, when I was modding, I wrote a program (which I kept to myself) to help me keep track of changes to Native DB, and help prevent people from making stupid, incorrect edits to it by allowing me to easily find changes and edit or reverse them if necessary. It was a daily routine. Wake up, check DB, breakfast, work. There needs to be some way others can moderate this new DB as well. Edited June 3, 2017 by InfamousSabre 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