Search:

Page 2 of 3 1 2 3

Search: Search took 1.00 seconds; generated 97 minute(s) ago.

  1. Replies
    25
    Views
    145,801

    BO3 Mod tools closed alpha started

    https://community.treyarch.com/community/treyarch/blog/2016/04/20/black-ops-3-pc-modding-mapping-tools-alpha

    Not a rickroll this time.
  2. Replies
    14
    Views
    30,231

    oh ohhhh... 1095

    oh ohhhh...

    1095
  3. [DynamoRIO] Counting every opcode of CoD2MP.exe

    DynamoRIO was a long time on my radar, but I never really managed to be productive with it. It is a "binary translator", which can be used for all kind of Reverse Engineering purposes.

    Now I...
  4. Replies
    14
    Views
    31,980

    Here's a line-by-line analysis of your code,...

    Here's a line-by-line analysis of your code, comments are pre-fixed with //


    kill()
    {
    level endon("boot");

    setcvar("g_kill", "");
    while(1)
    {
  5. http://www.nesmaps.com/maps/SuperMarioBrothers/Sup...

    http://www.nesmaps.com/maps/SuperMarioBrothers/SuperMarioBrosMap1-2.png
  6. Replies
    24
    Views
    72,603

    Wouldn't recommend doing something like this, if...

    Wouldn't recommend doing something like this, if I were to catch all connectionless packets on the clientside (Modified client) and you would do this I could in theory read the server's rcon password...
  7. [IDA Pro] Add C structures for HexRays decompiler

    A) View -> Open subviews -> Structures

    1075

    B) Gonna see this window:

    1076

    C) Edit -> Add struct type
  8. Replies
    10
    Views
    22,835

    Windows 10 + CoD2MPWindowed = Win

    Yo, not much time, just this: https://github.com/Si13n7/CoD2MPWindowed

    Basically it wraps CoD2 as child in a form and updates the Window Rect of CoD2, really useful for modding etc.

    The Win32...
  9. Replies
    2
    Views
    56,946

    BO3 Mod Tools Released!

    https://treyarch.com/bo3-modtools-alpha

    Get modding.
  10. Replies
    1
    Views
    53,047

    NSALogger.exe

    First I had the idea of a webcam watching myself, analyzing my behaviour, which would then eventually scream "stop procrastinating" at me, but I realized it should way simpler to detect...
  11. Nice, except it's quite cumbersome to manually...

    Nice, except it's quite cumbersome to manually patch every offset if you have different versions/patches (1.0/1.1/1.2/1.3). You could also fix this ofcourse in OllyDbg but it's again harder to do,...
  12. Hooking .exe without .dll injection, the simple way :D

    This is harder than a simple LD_PRELOAD, but still quite easy. Tested on VMWare with Windows XP Pro SP3.

    Goal: start libcod.dll before WinMain() of libcod2_1_3.exe is called. We basically just...
  13. Replies
    6
    Views
    14,520

    Firstly, add this to your libcod.cpp: ...

    Firstly, add this to your libcod.cpp:



    cHook *hook_fs_restart;

    int fs_restart(int a1)
    {
    a1 = 1337;
    *(int*)0x844020C = 1337;
  14. Replies
    6
    Views
    14,520

    Any interest in this?

    Hey guys,

    I managed to reduce the footprint of the cod2 server files to a whopping 325 meg, using some dirty, dirty libcod tricks.

    Anyone interested in this?
  15. Replies
    16
    Views
    31,278

    "free" requiring an install of EA origin. no...

    "free" requiring an install of EA origin.
    no thank you :P
  16. Replies
    13
    Views
    26,078

    Better fix which follows...

    Better fix which follows http://stackoverflow.com/questions/16316902/malloced-variables-with-file-scope-c



    #define MAX_WEAPON_IGNORE_SIZE 20
    #define MAX_WEAPON_NAME_SIZE 32
    char*...
  17. Replies
    13
    Views
    26,078

    Confirmed starting without those 2 lines, but the...

    Confirmed starting without those 2 lines, but the fix suggested doesnt work.

    It works fine without the gsc_utils_init though, so there's definitely a problem in there.

    This works though:


    ...
  18. Replies
    12
    Views
    24,043

    http://www.quickmeme.com/img/2f/2f3640a3393b93b2fb...

    http://www.quickmeme.com/img/2f/2f3640a3393b93b2fb5049e133de5addf3bef697aa7e96e11d866c2399f0b0e8.jpg

    Yes, I'm probably the forum's designated asshole now.
  19. Replies
    14
    Views
    124,559

    LetsEncrypt for https://killtube.org

    NOT RECOMMENDED YET

    RECOMMENDED AND ENFORCED ;^)

    Hey all,

    https://killtube.org/forum.php should work from now on. Since I had to reconfigure a bit, please post any bugs. ^^

    Regards, kung...
  20. Replies
    24
    Views
    95,273

    Big update: Cleaned up the mysql files and made...

    Big update: Cleaned up the mysql files and made the stuff make more sense.

    Here goes:


    init()
    {
    //get your host, user, pass, db, port here
    level.JH_mysql = mysql_reuse_connection();...
  21. Replies
    1
    Views
    7,584

    CodeCallback_FireGrenade

    Heres a working version of CodeCallback_FireGrenade for cod2 1.3:

    Possible uses: nade explosion timer and preventing people from changing team after throwing a grenade (prevent those filthy...
  22. Replies
    1
    Views
    8,730

    Source Weapons Possibly Coming to CoD Soon

    Still gotta figure out how to either put the TF2 rig into CoD, or make the anim work on CoD rig (which would be very interesting to see), but as of now this is pretty nice.

    EDIT: Managed to get...
  23. Replies
    2
    Views
    10,985

    fixChatArgs(args)

    Made a small update to libcod so fixChatArgs() is no longer required.

    Whoever knows how to use git: feel free to push this



    stackPushArray();
    int args = trap_Argc();
    for (int i=0;...
  24. Replies
    12
    Views
    36,607

    Just this: void gsc_utils_execute() { //...

    Just this:




    void gsc_utils_execute() { // Returns complete command output as a string
    char *cmd;
    if ( ! stackGetParams("s", &cmd)) {
    printf("scriptengine> ERROR: please...
  25. Replies
    12
    Views
    36,607

    You forgot to free() the result you get from your...

    You forgot to free() the result you get from your function. Might cause out of memory errors if you use the function a lot.
Results 26 to 50 of 64
Page 2 of 3 1 2 3