Results 1 to 14 of 14
  1. #1
    patrickpat's Avatar
    Join Date
    Jul 2008
    Posts
    11
    Reputation
    10
    Thanks
    1

    How do u make a hack what program do u use????

    If anyone knows can u make a hack on a mac??






  2. #2
    Ryguy's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    New Jersey
    Posts
    6,380
    Reputation
    149
    Thanks
    855
    im not sure but you use C++ to make hacks for CA
    [IMG]https://i238.photobucke*****m/albums/ff303/colby1666/Signatures/DayDream-1.png[/IMG]
    x x x x x x

  3. #3
    GOD's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    I am the God
    Posts
    11,084
    Reputation
    15
    Thanks
    1,517
    My Mood
    Amazed
    c++ ftw

    good luck learning C++!
    I am the God.

  4. #4
    dk173's Avatar
    Join Date
    Jul 2008
    Gender
    male
    Location
    In your dreams
    Posts
    4,767
    Reputation
    19
    Thanks
    461
    My Mood
    Mellow
    i would not run c++ on mac macs are not meant for gameing or runing say programs

  5. #5
    Corndog's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Salem, NH
    Posts
    10,138
    Reputation
    526
    Thanks
    2,909
    you would use C++, but in order to make a program in it, you need a C++ compiler. which you can download from HERE (its the one in the yellow square). but trust me, its not as easy as it sounds...its not just like "command - Hack Engine.exe"
    here's the code to a simple program that all it does is finds out the payment on a loan, the total interest over the lifetime of the loan, and the total amount you end up paying at the end of the loan. (took me 3 minutes to code just to show you how complicated C++ is)


    Code:
    // Payment Plan.cpp : Defines the entry point for the console application.
    //
    
    #include "stdafx.h"
    
    
    int _tmain(int argc, _TCHAR* argv[])
    {
    	return 0;
    }
    #include <iostream>
    #include <cmath>
    using namespace std;
    int main() {
    	double Principal, IntRate, PayPerYear, NumYears, Payment, numer, denom, b, e, TotalPay, Interest;
    	
    	cout << "Enter principal: ";
    	cin >> Principal;
    
    	cout << "Enter interest rate: ";
    	cin >> IntRate;
    
    	cout << "Enter number of payments per years: ";
    	cin >> PayPerYear;
    
    	cout << "enter number of years: ";
    	cin >> NumYears;
    
    	numer = IntRate * Principal / PayPerYear;
    
    	e = -(PayPerYear * NumYears);
    	b = (IntRate / PayPerYear) + 1;
    	
    
    	denom = 1 - pow(b, e);
    
    	Payment = numer / denom;
    	TotalPay = (Payment * NumYears) * PayPerYear;
    	Interest = TotalPay - Principal;
    
    	cout << "Payment is " << Payment;
    	cout << "nTotal amount payed over lifetime of loan is: " << TotalPay;
    	cout << "nTotal interest payed over lifetime of loan is: " << Interest;
    	cout << "n";
    
    	return 0;
    }

    HERE you can download a 12 chapter, 35 page per chapter, beginners guide to C++

    i dont know much in the language, but im in like chapter 3 and i know how to do that...

  6. The Following User Says Thank You to Corndog For This Useful Post:

    patrickpat (04-08-2009)

  7. #6
    Legify's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    subway
    Posts
    962
    Reputation
    16
    Thanks
    489
    My Mood
    Sad
    Quote Originally Posted by corndog5595 View Post
    you would use C++, but in order to make a program in it, you need a C++ compiler. which you can download from HERE (its the one in the yellow square). but trust me, its not as easy as it sounds...its not just like "command - Hack Engine.exe"
    here's the code to a simple program that all it does is finds out the payment on a loan, the total interest over the lifetime of the loan, and the total amount you end up paying at the end of the loan. (took me 3 minutes to code just to show you how complicated C++ is)


    Code:
    // Payment Plan.cpp : Defines the entry point for the console application.
    //
    
    #include "stdafx.h"
    
    
    int _tmain(int argc, _TCHAR* argv[])
    {
    	return 0;
    }
    #include <iostream>
    #include <cmath>
    using namespace std;
    int main() {
    	double Principal, IntRate, PayPerYear, NumYears, Payment, numer, denom, b, e, TotalPay, Interest;
    	
    	cout << "Enter principal: ";
    	cin >> Principal;
    
    	cout << "Enter interest rate: ";
    	cin >> IntRate;
    
    	cout << "Enter number of payments per years: ";
    	cin >> PayPerYear;
    
    	cout << "enter number of years: ";
    	cin >> NumYears;
    
    	numer = IntRate * Principal / PayPerYear;
    
    	e = -(PayPerYear * NumYears);
    	b = (IntRate / PayPerYear) + 1;
    	
    
    	denom = 1 - pow(b, e);
    
    	Payment = numer / denom;
    	TotalPay = (Payment * NumYears) * PayPerYear;
    	Interest = TotalPay - Principal;
    
    	cout << "Payment is " << Payment;
    	cout << "nTotal amount payed over lifetime of loan is: " << TotalPay;
    	cout << "nTotal interest payed over lifetime of loan is: " << Interest;
    	cout << "n";
    
    	return 0;
    }

    HERE you can download a 12 chapter, 35 page per chapter, beginners guide to C++

    i dont know much in the language, but im in like chapter 3 and i know how to do that...
    What he/she said.
    Last edited by Legify; 04-08-2009 at 03:14 PM.

  8. #7
    Corndog's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Salem, NH
    Posts
    10,138
    Reputation
    526
    Thanks
    2,909
    Quote Originally Posted by Legify View Post
    Looks like a bunch CopyPasta to me.
    are you accusing me of getting a script offline and pasting in here claiming i know at least the tiniest amount of C++?

  9. #8
    Legify's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    subway
    Posts
    962
    Reputation
    16
    Thanks
    489
    My Mood
    Sad
    Quote Originally Posted by corndog5595 View Post
    are you accusing me of getting a script offline and pasting in here claiming i know at least the tiniest amount of C++?
    No, Im just accusing you because I have no fuckin Idea how to post the "Code" box
    Edit:
    Code:
     NVM got it

  10. #9
    Obama's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    The Black house
    Posts
    22,195
    Reputation
    870
    Thanks
    6,076
    My Mood
    Cool
    Quote Originally Posted by corndog5595 View Post
    are you accusing me of getting a script offline and pasting in here claiming i know at least the tiniest amount of C++?
    Im accusing you of copy and paste.

  11. #10
    Legify's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    subway
    Posts
    962
    Reputation
    16
    Thanks
    489
    My Mood
    Sad
    Quote Originally Posted by Obama View Post
    Im accusing you of COPYPASTA!
    I fixed it for you Obama.

  12. #11
    foodman's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    98
    Reputation
    10
    Thanks
    6
    I wonna learn C++ too but i dont wonna downlead all stuff and make my computer slow...
    GOAL LIST:
    Make 100 posts [x]
    Make 250 posts []
    Make 500 posts []
    Make 1000 posts []
    Learn basic C++ []
    Make 1 hack []
    Play legit and own all [x]
    Be called a hacker when not hacking [x]
    Be called a hacker while hacking [x]
    Finish goal list []

  13. #12
    Corndog's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Salem, NH
    Posts
    10,138
    Reputation
    526
    Thanks
    2,909
    want proof that i know a little coding...ask me to do something simple that would probably not be online...

    yeah...thats what i thought.
    Last edited by Corndog; 04-08-2009 at 03:38 PM.

  14. #13
    RecoveryOne's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    91
    Reputation
    10
    Thanks
    65
    Quote Originally Posted by corndog5595 View Post
    you would use C++, but in order to make a program in it, you need a C++ compiler. which you can download from HERE (its the one in the yellow square). but trust me, its not as easy as it sounds...its not just like "command - Hack Engine.exe"
    here's the code to a simple program that all it does is finds out the payment on a loan, the total interest over the lifetime of the loan, and the total amount you end up paying at the end of the loan. (took me 3 minutes to code just to show you how complicated C++ is)


    Code:
    // Payment Plan.cpp : Defines the entry point for the console application.
    //
    
    #include "stdafx.h"
    
    
    int _tmain(int argc, _TCHAR* argv[])
    {
    	return 0;
    }
    #include <iostream>
    #include <cmath>
    using namespace std;
    int main() {
    	double Principal, IntRate, PayPerYear, NumYears, Payment, numer, denom, b, e, TotalPay, Interest;
    	
    	cout << "Enter principal: ";
    	cin >> Principal;
    
    	cout << "Enter interest rate: ";
    	cin >> IntRate;
    
    	cout << "Enter number of payments per years: ";
    	cin >> PayPerYear;
    
    	cout << "enter number of years: ";
    	cin >> NumYears;
    
    	numer = IntRate * Principal / PayPerYear;
    
    	e = -(PayPerYear * NumYears);
    	b = (IntRate / PayPerYear) + 1;
    	
    
    	denom = 1 - pow(b, e);
    
    	Payment = numer / denom;
    	TotalPay = (Payment * NumYears) * PayPerYear;
    	Interest = TotalPay - Principal;
    
    	cout << "Payment is " << Payment;
    	cout << "nTotal amount payed over lifetime of loan is: " << TotalPay;
    	cout << "nTotal interest payed over lifetime of loan is: " << Interest;
    	cout << "n";
    
    	return 0;
    }

    HERE you can download a 12 chapter, 35 page per chapter, beginners guide to C++

    i dont know much in the language, but im in like chapter 3 and i know how to do that...
    Copypasta or not, I thank you for providing those links.
    [img]https://************.com/sig/005/RecovOne.jpg[/img]
    Legit account ^
    Stupid
    Habamon is stupid.

    (Level him anyway =P)
    Jump the bandwagon (Make a goal list) [x]
    Complete this goal list (lol paradox) []
    Get 50 posts [x]
    Get 100 posts []
    Get 150 posts []
    Get 200 posts []
    Get 300 Posts []
    Get 1.00 kdr [x]
    Get 1.25 kdr [x]
    Get 1.50 kdr []
    Get 1.75 kdr []
    Get 2.00 kdr []
    Get 2.50 kdr []
    Get 3.00 kdr []
    Get called a hacker when playing legit [x]
    Learn C++ [Chapter 1/15, Page 12/46]
    Make a sig []
    Mane an Avatar []

    Respect List:
    Legify
    Woopwoopjuggalo

  15. #14
    foodman's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    98
    Reputation
    10
    Thanks
    6
    lol yes the links are very acurate, thank you.
    GOAL LIST:
    Make 100 posts [x]
    Make 250 posts []
    Make 500 posts []
    Make 1000 posts []
    Learn basic C++ []
    Make 1 hack []
    Play legit and own all [x]
    Be called a hacker when not hacking [x]
    Be called a hacker while hacking [x]
    Finish goal list []

Similar Threads

  1. how do i make a hack program?
    By dennis1018 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 01-17-2009, 10:14 AM
  2. How do i make c++ hacks undetectable?
    By HackingIsMyLife in forum C++/C Programming
    Replies: 1
    Last Post: 05-20-2008, 10:31 AM
  3. How do you make warrock hacks??
    By araz in forum WarRock - International Hacks
    Replies: 13
    Last Post: 12-17-2007, 11:23 AM
  4. How can i make a hack for WarRock?
    By tomva in forum General Game Hacking
    Replies: 4
    Last Post: 06-09-2007, 03:13 PM
  5. how can i make game hack?!!!!
    By UnknownID in forum General Game Hacking
    Replies: 2
    Last Post: 02-07-2006, 07:21 PM

Tags for this Thread