Search:

Type: Posts; User: Biesi

Page 1 of 10 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    1
    Views
    2,892

    I don't know what map.cft you're talking about,...

    I don't know what map.cft you're talking about, but I have this python snippet that I used to "decrypt" CFT files a while back.


    #!/usr/bin/python3

    import sys

    input_file_name = sys.argv[1]...
  2. Replies
    21
    Views
    15,704

    [Release] Not anymore, I also have some code to extract 2.0...

    Not anymore, I also have some code to extract 2.0 REZ files, the encrypted and compressed ones. If you're interested in the source let me know.
  3. Replies
    6
    Views
    1,801

    [Preview] I don't understand.. it de-compiles it and then...

    I don't understand.. it de-compiles it and then compiles it again? Causing it to not work anymore? I'm rather surprised it even compiles
  4. Replies
    3
    Views
    2,508

    DAT, CFT and LTC are not texture files, you...

    DAT, CFT and LTC are not texture files, you cannot open them in photoshop. The character textures are in another REZ file, not RB001
  5. Thread: Killmark Patcher

    by Biesi
    Replies
    9
    Views
    8,122

    [Release] type the path where crossfire is installed.. e.g....

    type the path where crossfire is installed.. e.g. C:\Program Files\CrossFire
  6. Replies
    4
    Views
    2,235

    [Help] "Extract here", if it doesn't show then change...

    "Extract here", if it doesn't show then change the file extension to ".lzma" first
  7. Replies
    4
    Views
    2,235

    [Help] Get 7zip and use it to decompress them

    Get 7zip and use it to decompress them
  8. Thread: Killmark Patcher

    by Biesi
    Replies
    9
    Views
    8,122

    [Release] Killmark Patcher

    I'm currently experimenting with CrossFire REZ files in order to improve in a new programming language.
    And thus I created this little tool! It allows you to replace the default killmarks with the...
  9. Replies
    7
    Views
    1,251

    [Help] More like because they have no clue on how to do...

    More like because they have no clue on how to do it or even what it means
  10. Thread: learn aimbot

    by Biesi
    Replies
    6
    Views
    3,279

    [Help] My eyes bleed

    My eyes bleed
  11. Replies
    3
    Views
    761

    [Info] You won't need a Visual Studio Pro... 2019...

    You won't need a Visual Studio Pro... 2019 Community is free for non-commercial use
  12. Mostly because std::system("exit"); won't exit...

    Mostly because
    std::system("exit"); won't exit the program... Try it with an actual exit function, like this, or just return from your main.
  13. The matrix stuff isn't "process dependent" it's...

    The matrix stuff isn't "process dependent" it's maths and just consists of a few numbers depending on what you want to do. If you really want to understand it you'll have to do maths (a lot). Good...
  14. Replies
    7
    Views
    1,177

    [Discussion] There is (not too sure, at least there was) a...

    There is (not too sure, at least there was) a method you can call to write text, see here.
  15. Replies
    10
    Views
    2,654

    [Release] I swear to god I've done this like 4 years ago...

    I swear to god I've done this like 4 years ago but couldn't get it to work... weird shit
  16. [Help Request] Is 0x171A9CB000000000 the base address of the...

    Is 0x171A9CB000000000 the base address of the module?

    Edit: You should usually compare your pointers with (pointer - baseAddrressOfModuleTheyreIn) to get an actual result
  17. Thread: Is CF still p2w?

    by Biesi
    Replies
    5
    Views
    2,012

    [Help] It has always been hack to win anyways.. so who...

    It has always been hack to win anyways.. so who cares boh1
  18. Replies
    1
    Views
    1,242

    You've done something and it doesn't work... you...

    You've done something and it doesn't work... you should tell us what exactly you've done and why you think it's not working the way it should be working
  19. [Help] Depends... you could search for DOS or NT headers...

    Depends... you could search for DOS or NT headers in memory and dump according to what they say about size etc. ... But this of course needs the manual mapping to be performed on fully loaded images...
  20. Replies
    3
    Views
    1,425

    [Help] Handling memory in C is a very complex topic that...

    Handling memory in C is a very complex topic that also depends on how you allocated the memory.. if you're working on the stack, you're mostly just fine, otherwise every allocate call should...
  21. Replies
    2
    Views
    2,040

    [Request] Here you go... should be compatible with XP if...

    Here you go... should be compatible with XP if compiled correctly and resets the time every 60 seconds... you might need to adjust this because it's currencly UTC.


    #include <Windows.h>
    #include...
  22. Replies
    3
    Views
    1,425

    [Help] Assuming you're working on the heap, no! You're...

    Assuming you're working on the heap, no! You're assigning NULL before you call free. You end up calling free with NULL as the memory pointer to free. You need to switch those two operations and free...
  23. Replies
    3
    Views
    1,717

    [Request] Perfectly working alternatives: dnSpy...

    Perfectly working alternatives: dnSpy, ILSpy
  24. Replies
    1
    Views
    1,492

    [Help Request] ComputerInfo.AvailablePhysicalMemory...

    ComputerInfo.AvailablePhysicalMemory and ComputerInfo.TotalPhysicalMemory.

    But you still need to actually allocate the available memory using Marshal.AllocHGlobal or something similar. You cannot...
  25. [Help Request] Doesn't this work out of the box? Do you have...

    Doesn't this work out of the box? Do you have access to some sort of API for pasting values to the target application?
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4