Results 1 to 5 of 5
  1. #1
    lilghost8631's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    68
    Reputation
    10
    Thanks
    14

    2 Questions - PTC and Dumping

    Hello, I have 2 questions.
    My first question is about PTC. Is PTC no longer possible through
    Code:
    PushToConsole("WhateverYouWantToSet ValueToSet");
    My second question is about dumping. Can anyone give an explanation about how to dump a dll? I know it pertains to using LoadLibrary and I plan on doing some deeper research about it in the mean time, but if somebody could explain it, that would be great.
    Thank you.

    -----------------
    Did some research and I found that LoadLibrary will return a handle for the DLL loaded. Now that's lovely, but I have yet to figure out how to dump the handle.
    Code:
    CshellHandle = LoadLibrary("C:\Nexon\Combat Arms\Game\cshell.dll");
    Last edited by lilghost8631; 12-17-2013 at 08:05 PM. Reason: Research

  2. #2
    Skaterforeva1's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Up your ass
    Posts
    936
    Reputation
    32
    Thanks
    485
    My Mood
    Psychedelic
    You can still do some ptc's that way, others require something like this.

    Code:
    template< class T >
    void PushToConsole(DWORD Address, T Value)
    {
    	*(T*)Address = Value;
    }
    
    PushToConsole<float>(Adresshere, valuehere);
    Credits go to Acea i think, not sure who originally found this.




    ^Suck it!

  3. The Following User Says Thank You to Skaterforeva1 For This Useful Post:

    lilghost8631 (12-18-2013)

  4. #3
    lilghost8631's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    68
    Reputation
    10
    Thanks
    14
    Thank you. And a big thanks to Acea.

    Off-topic: I see you're from Manassas. I actually live over in Haymarket so not too far away. Just as a random point of interest haha

  5. #4
    Timboy67678's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    87
    Reputation
    25
    Thanks
    80
    My Mood
    Aggressive
    Last edited by Timboy67678; 12-18-2013 at 03:43 PM.

  6. The Following 2 Users Say Thank You to Timboy67678 For This Useful Post:

    lilghost8631 (12-18-2013),Skaterforeva1 (12-19-2013)

  7. #5
    lilghost8631's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    68
    Reputation
    10
    Thanks
    14
    Then a big thanks to Neutrino.

Similar Threads

  1. [Question] Java and C++[Close]
    By Pagn in forum Java
    Replies: 11
    Last Post: 08-22-2010, 05:11 AM
  2. [Question] C and C++...
    By [F]ace! in forum C++/C Programming
    Replies: 33
    Last Post: 08-19-2010, 05:10 PM
  3. [Question] Files and Such...
    By Falingrave in forum Combat Arms Mod Discussion
    Replies: 4
    Last Post: 08-13-2010, 09:59 PM
  4. Addies/Pointers and dumps!
    By Mr.Magicman in forum Combat Arms EU Hack Coding/Source Code
    Replies: 29
    Last Post: 06-24-2010, 05:50 AM
  5. [Question] Mods and viper
    By Mizz in forum Combat Arms Mods & Rez Modding
    Replies: 7
    Last Post: 04-04-2010, 12:15 PM