What's new

Search results for query: *

  1. Jakes625

    GTA V Modding Wiki

    Hello, in spite of the new "Script Mods" for GTA I decided to open up a wiki for developers to use. Feel free to add to it, or research from it, I'd like to thank xbltoothpik, james, and some others for the research they have done. I've been looking in the eboot and addicting to the structure...
  2. Jakes625

    Tools OpenIV for Grand Theft Auto V

    no, it's openIV because of the game engine. They're still using rage engine 4.
  3. Jakes625

    Mod Menu  New Mod Menu

    Super cool menu with awesome functions, source included in description. Check it out :) [video=youtube;j1vJm9RjFBs]
  4. Jakes625

    C/C++ Bits'N'Bytes

    Yeah, obviously if you wanted to go more in depth with each type a better library would be more suitable. For this simple task I think my code would suffice.
  5. Jakes625

    C/C++ Bits'N'Bytes

    I didn't use wait, system, or any of the other stuff? I wouldn't recommend BOOST because it's a huge library for performing a small task. and a 64bit integer can hold all data types.
  6. Jakes625

    C/C++ Bits'N'Bytes

    personally I would just add bits to an int (speed purposes) and then just cast / convert to other data types. ie: typedef unsigned short int u16; typedef unsigned long int u32; typedef unsigned long long int u64; main(int argc, char** args) { char* bits = "10101010101"; //get input 'bits'...
  7. Jakes625

    Editors designed for coding?

    well many IDE's have these features built in to make programming easier. But if you don't want to install an IDE I would recommend a couple editors... notepad++ (great I use it for most of all scripting) sublime 2 (also good but I don't use it as much)
  8. Jakes625

    recommendations for iPhone spy software

    You're taking the wrong approach. Don't spy on your kids and hover over them. Talk with them and build mutual respect so they wouldn't be afraid to hide anything from you in the first place.
  9. Jakes625

    Python Make a Operating system in python?

    I'm not saying it would be easy but it's possible. Also you realize when you program something (kernal for example) in C. It gets compiled into assembly... everything is run on assembly.
  10. Jakes625

    Python Make a Operating system in python?

    not true. all you need to do is have a compiler that reads python and parses it to assembly
  11. Jakes625

    Code Partial Asset Dump

    I can almost guarantee this won't happen. Craig would have to build his own app like IW/Treyarch did. Remember those little programs that let you made maps for COD4 + W@W? A lot of work goes into that and rebuilding such would be difficult. There is a lot more to a map then a few collision...
  12. Jakes625

    Python Make a Operating system in python?

    Technically it's possible, you would just need a compiler that compiles python to assembly. Operating systems aren't really in C, they are just compiled version of that. The computer runs on operations, which is what any program does.
  13. Jakes625

    Code Partial Asset Dump

    Yeah, just too lazy to do anything about it. lol
  14. Jakes625

    Using File.ReadAllBytes method for game saves?

    You can use memory stream to do that, or the method you first proposed. If you are using an edited buffer only in memory go with mem stream, or you can use filestream if you are editing a simple game save. If you write to the byte array you would have to convert the type of data you want and...
  15. Jakes625

    Need C# developer for paying project

    well If you override controls you can still get the functionality while still being able to add border radius's, gradients, glows, etc. I was just wondering.. but looks awesome! :)
  16. Jakes625

    Need C# developer for paying project

    DAMN those are sexy are you doing completely custom or overriding build in classes?
  17. Jakes625

    .NET Chatter Client v1.0| Pics| Preview

    A reliable server should be hack proof :p anyway.. do a post (or socket) just write a token using ssl or your own form of eliptical curve signature to assert user identity. If it accepts user is valid else don't output or accept data :P
  18. Jakes625

    .NET Chatter Client v1.0| Pics| Preview

    make a backend API. then connect to a remote database, send via POST to a url https://api.website.com/chat.php?user=John&message=Hello&send You can asynchronously grab data from mysql database with a GET call and have the server return json data then parse it and load it into the listView. :)
  19. Jakes625

    Code Partial Asset Dump

    Sorry, I should have elaborated more.. I had a modified MW3 eboot and when I ran BO2 it searches directories for modified files and it detected that.. that's how I got OFW banned.
  20. Jakes625

    C/C++ How would you pause a certan script without the other scripts pausing under it?

    You'd have to exec the method as async. Oh and I wouldn't recommend sleep, look up UserQuePool
Top Bottom
Login
Register