Posts by Callme?
13 posts total, newest first.
Questions about finding base addressin C++/C Programming - Iam an idiot. I compiled my project with a 64bit compiler /ohshit, that was the problem.
#solvedQuestions about finding base addressin C++/C Programming - Hello folks /hai,
Iam currently working on my own csgo hack, but i have some problems that I can't seem to fix alone.
First problem:
How do I know from which module(.dll) I need to get the base address from? I knowNeed help debugging!in C++/C Programming - [QUOTE=Unicow;11625715]This is what I was going to say, "or" is not a thing in C++ it should be || for "or" and && for "and".[/QUOTE]
You can use "and" and "or" in C++ aswell as "&&" and "||". Maybe one of the solutioNeed help debugging!in C++/C Programming - [QUOTE=Nashiro;11620854]Thanks guys it helped!
now my next problem is it won't exit when I enter string "exit".
Am I mis-using the while loop?
while (str != "exit" or str != "Exit"){}
[/QUOTE]
You need to repNeed help debugging!in C++/C Programming - You need to compare the string to each word separately:
if (str == "addition" or str == "Addition" or str == "add" or str == "Add"){}
The best advice is to read a book at the beginning, but you are already reading
Showing the 5 most recent posts.