
Pshyotic
Members-
Content Count
235 -
Last visited
Content Type
Profiles
Forums
Calendar
Gallery
Blogs
Store
Articles
Downloads
Classifieds
Everything posted by Pshyotic
-
Instructions are in rar file. [hide] Download Link 1: https://ufile.io/p8d16 Download Link2: CLICK HERE (Long link) Download Link 3: https://anonfile.com/Q1j5Ccr5b1/Gather_Proxy_Premium_Crack_8.9_Full_Version_rar [/hide] DON'T FORGET TO LEAVE LIKE! :fyou: ALL LEECHERS ARE GOING TO BE REPORTED :fyou: :ezy: :ezy:
-
Lmao... I just can't imagine kids jerking off on this shit... Which is actually sad and sick :/
-
This is a bump
-
This is a bump
-
[TUTORIAL]How to dump database 10x faster
Pshyotic replied to Pshyotic's topic in Cracking Tutorials
This is a bump -
So, this is so simple to ecplain what I exactly suggest, but I'm going to ecplain it more, so... I think this web def. Need app ,because entering this site through Google on mobile is so stupid and annoying, and after all some of page elements are not sorted as they should be...
-
First "game" that I created with C++ (console app)
Pshyotic replied to Pshyotic's topic in C#, C++ & VB.net
I hope it was good "time killer" :kek: hahaha Check this: https://cracked.to/Thread-C-Tutorial-Learn-how-to-program-on-cracked-to?pid=181953#pid181953 Soon, I'll post another tutorial I didn't since while, because I hasn't much time :( -
I'll check it out
-
How to crack steam accounts fast w/ capture
Pshyotic replied to Reneboss's topic in Cracking Tutorials
let's see if this work -
:ezy: FOR THIS I EXPECT LIKES, SO LEAVE A LIKE, I WILL REPORT LEECHERS :fyou: [hide] LINK 1: https://www.dropbox.com/s/8qqgozq6sdskiur/Privat%20Proxy%20Scrapper%20V.3%20by%20Alphacrack.rar?dl=0 LINK 2 (7 days expired) (if first get broken) : https://we.tl/t-wlvQ9vl2JE PASSWORD: Alphacrack [/hide]
-
Lol, a lot of jnformation... I don't think you should mention other forums here, you better edit This... READ RULES and WELCOME
-
Welcome to the forum I hope you will find everything you need. Read rules and don't be leecher :D
-
Easiest way to make dorks [1000s in SECONDS]
Pshyotic replied to Perileos's topic in Cracking Tutorials
Thanks for share <3 :feelsgood: :fiesta: -
[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:
-
C++ Tutorial - Learn how to program on cracked.to
Pshyotic replied to Pshyotic's topic in Programming discussions
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] -
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
-
Welcome I hope you will find everything you will need! Wish you all the best, read rules of forum!
-
Netflix Cracking Tutorial For Beginners (FAST , EASY and DETAILED)
Pshyotic replied to Player's topic in Cracking Tutorials
I hope it will work xD... Thanks -
lol, Welcome! I hope you will enjoy and find everything you need. READ RULES, that's most important thing :smart:
-
C++ Tutorial - Learn how to program on cracked.to
Pshyotic replied to Pshyotic's topic in Programming discussions
@TheCrazy Fixed and edited. Thanks for advice <3 I hope it's much better now. -
C++ Tutorial - Learn how to program on cracked.to
Pshyotic replied to Pshyotic's topic in Programming discussions
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; } -
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
-
Poor boy... Bored hahahahahah <3 It's not good... Try this: