OPODGG
Members-
Content Count
34 -
Last visited
Content Type
Profiles
Forums
Calendar
Gallery
Blogs
Store
Articles
Downloads
Classifieds
Everything posted by OPODGG
-
How to CODE programs. (For Begginers) Part 2
OPODGG replied to OPODGG's topic in Tutorials, Guides, etc.
This is a bump -
Don't matter the quantity, lets see the quality :D
-
lets find out how many I know ;d
-
Look I already am mad because I finished the post and when I was just about to submit it I accidentally closed it so I'm am just going to skip to the point... LEAVE ME A LIKE PLEASE I NEED IT TO FEED MY CHILDREN T>T (Plus if you leave me a like ill dm you and give you a free lesson on how to code something else) (During this project I also used the hide ability and I don't know if that's making you comment or if that's making you click to see what is there, 1 way to find out though) What you will need: 1.) Visual Studios (Which you should have downloaded from my previous tutorial) 2.) Download two images for reasons you'll understand in a minute. (I suggest a front and a back) http://tinyurl.com/yy5lgbm5 3.) 1.1% of a brain and that's pretty much it. First things first, open up Visual Studios and make a new project (For the sake of this, I'm going to name it Card Flipper) This project is going to be introducing you to two new items. A "PictureBox" and a "Timer" (timer wasn't really needed but I decided to do it because I should do more things with less time ;D) First off, we are going to need to drag out 2 PictureBoxes from "Toolbox" (if you cant find it scroll down and you'll see it eventually.) Your tab should be two dotted boxes, but what we will do now is give them a photo (with the two photos we downloaded from earlier) You're going to notice that they are not the full images, so what you will do is click a picture box and drag the bottom right side until you can see the full photo on both. (I have ocd so I made them identical in size) Now, you will need to drag something else out, and that is the timer, so go to the toolbox and drag it out. (You will just need one) Lets get on with the editing. Go to the pictureboxes again and change the name so you can tell which side is which, I named them CardFront and CardBack because that's just obvious to me. you can also edit the timer but I find no reason in doing so because there is only one timer. What we will need to do is turn the card's front invisible (we can still see it but when you run the program you wont be able to) What you will need to do is go to the properties tab and start scrolling until you find "visible". to the right of "visible" there will be another tab called "true" double click "true" and it becomes "false". run your program so you can see what you just did (if you did it right). when the program loads you'll notice that there is only 1 side of the card there because the other one is invisible mate. exit out of that little demonstration (the window that came up after you pressed start) Now we will start coding. Double tap the card back, so that you can go code into it. your code right now should look like this (the names might be different thought) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Card_Flipper { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void CardBack_Click(object sender, EventArgs e) { } } } What you will do now is plug in this line. " CardFront.Visible = true; " Your code should look like this. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Card_Flipper { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void CardBack_Click(object sender, EventArgs e) { CardFront.Visible = true; } } } Since we "Flipped" the card,we want to make the back go invisible. Try to code it yourself. [hide] Your Code should look like this: (the card back name).visible=false;[/hide] (BTW add this code between the two brackets, we will use it for later. Timer1.enabled=true;) Congratulations if you were able to code that yourself :D Press "Start" so you can see your amazing coding in action. But now you will notice that if you click the other card, it wont flip it again. nor will it do it by waiting! (If you honestly want to make the other card flip when you click it just do all the code we did but backwards.) Now we are going to fix that with that amazing timer that we added earlier. Exit out of the window that was just made, and press "Form1.cs [Design]*" on the top middle of your screen. You will see a little war below the GUI (the window where you drag and drop stuff) and it will say "timer1" (if you didn't change it) I need you to double click that so that we go into the code of the timer and program it too! Right now your code should look like this. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Card_Flipper { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void CardBack_Click(object sender, EventArgs e) { CardFront.Visible = true; CardBack.Visible = false; timer1.Enabled = true; } private void timer1_Tick(object sender, EventArgs e) { } } } What I need you to do is to start writing in between the brackets below "private void timer1_Tick(object sender, EventArgs e)" I want you to code this part on your own, but if you cant just check out the answer. [hide]The correct answer was: private void timer1_Tick(object sender, EventArgs e) { CardFront.Visible = False; CardBack.Visible = True; timer1.Enabled = False; } [/hide] What you did with the timer was just revert everything back to how it originally started! its honestly simple if you think about it. Anyways, press "Start" and check it out. There is just one more thing that I want to cover before I leave it here for today. If you pressed start and saw what you did, you would have noticed that when you clicked it, it appeared and disappeared in a flash. If you want to speed it up or slow it down go to the properties of the timer (click it once) and you will see "Interval" 1000 is equivalent to 1 second, so when it was at 100, it was counting at .1 second. so if you want to speed it up, put 50 (which means .05 of a second) and if you want to slow it down just add more time, I feel like 2000+ should be enough to see the card thought. Anyways, that's all for today. Remember, leave a like because I need to feed my kids, they love likes :D
-
leak HOW TO GET FREE DISCORD NITRO *NEW METHOD*
OPODGG replied to BIG SIDI's topic in Tutorials, Guides, etc.
HMU on discord, OP#5830 -
How to change Email address of Fornite 100℅ Success
OPODGG replied to TimeChangeEverything's topic in Cracking Tutorials
WDYM Leecher will be fired in WWIII? Im so confused rn lmap -
This is a basic Program to introduce you to the world of code. Today I am going to help you learn how to program simple to complex (today we are sticking to simple) things in Visual Studios (which is what I use to code). Things you will need: C# 2017 community edition. (https://visualstudio.microsoft.com/vs/community/) Like 1% of a brain considering everyone should be able to code if they try Alright, First things first is open up visual studios. You cant really program if you don't even got the program tool on. Go to "File" on the top left and press "New", after that press "Project" (you can press CTRL + SHIFT + N to do the same thing) A new mini window should appear and all you have to do are 4 things. 1: Make sure "Windows Forms App (.NET Framework)" is selected. (you can either click it again or make sure it has a light gray highlight on it) 2: To the right of "Name:", Put whatever name you want to name the program, for this example we are going to name this "Hello World". 3: Press "Browse" and make sure that it is someone you can keep it for later, Flash Drive, Home Screen, wherever you want to access it from later. 4: Press "OK" on the Bottom-Right to start everything. First thing you are going to notice, to the left of your screen there is a "Toolbox" which is where you get items such as labels and buttons to make the GUI (The Screen) look pretty. Second thing you should notice, to the right there will be a "Properties" Tab, which is where you edit everything, (change the names, font size, etc.) (If Something isn't there don't worry, I have mine set there by default but you can put them there with a few simple steps. If you don't see the Toolbox Tab, There should be a mini little tab called Toolbox (on the left of your screen), click on that, then press the little pin emote thing to pin it so it wont hide itself when you click off it. If you don't see the Properties Tab, There should be a mini little tab called Properties (on the right of your screen), click on that, then press the little pin emote thing to pin it so it wont hide itself when you click off it. If you don't see either of those "Little pin emote thing" s, press the windows tab on the top middle area of your screen, then press 'Reset Windows Layout" and then repeat the steps above.) First thing is first, on the Toolbox Tab we will need to drag out a button, self explanatory how to do it so I wont explain. After that go to the Toolbox and look for the "(Name)" icon and type in whatever you want, it cant have spaces so you can either leave it as is or type in camelCase (CamelCaseIsBasiclyTypingLikeThis) For the sake of this I wont touch it and will leave it as "Button1". Once done with that we will repeat the previous step, but this time we will be looking for "Text". For the sake of this I will leave it as "Button1" but I wanted to show you guys these two things because they usually become very important if you are making a project with multiple for 1 thing, such as buttons and labels. Now we get to the "Coding" part of this. Remember, this isn't a complex thing so what I will be doing is just showing you one line of code and explaining how everything works and how you can be creative when making programs. Right now you should see a screen with this: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Hello_World { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { } } } This stuff means a lot but we wont be covering it for the meantime. I want you guys to type this thing into the space between Messagebox.show("Hello World") private void button1_Click(object sender, EventArgs e) { Messagebox.show("Hello World") } As you will see, there should be a error appearing right now. If you go over the red squiggly mark, it should say something along these lines. "; expected" What it means here is that the code doesn't have a end so it is just waiting for the next command. Put the SemiCollon after the line and make it look like this. private void button1_Click(object sender, EventArgs e) { Messagebox.show("Hello World"); } Now if you press "Start" in the top middle of your screen, you will see the first screen we were at, but this time you will see that the button is highlighted. Click the button. (exit out of the 2 new screens that poped out) basicly all that you did was made a Messagebox, show itself and say "Hello World" Coding is basicly just telling a idiot to do something in a very basic way. Here is a example of a code I made. Other than the Const decimal number2=2m; and the Const decimal number1=1m; everything should be self explanatory when you just read it. private void PlayButton_Click(object sender, EventArgs e) { try { const decimal number2=2m; const decimal number1=1m; if (number1 == Convert.ToDecimal(SongNumberTextBox.Text)) { webBrowser1.Navigate("youtube.com"); CurrentSongTextBox.Text = ("Youtube's a song now."); } else { if (number2 == Convert.ToDecimal(SongNumberTextBox.Text)) { webBrowser1.Navigate("google.com"); CurrentSongTextBox.Text = ("Google's a song now."); } } } catch (Exception) { MessageBox.Show("I'm sorry but what you inputed was not valid. Please try again!"); } All that this is, is just making a video pop up on a webbrowser (which you guys have on your toolbox btw, kinda cool) everything should be easy to read. Anyways, I want you guys to start tinkering around and trying to make a little project with what common sense you guys actually have (the more the merrier). That will be all for today, Have a nice day!
-
Oof 1-10/10 1 way to find out what imma rate this :D (if its anywhere between 5-10 ill drop a like fam)
-
Ganna touch myself dudilido ganna touch myself how about you ganna indulge in my body ganna do something naughty ganna… masturbate! (cyanide and happiness show reference if you don't get it)
-
Fastest proxy checker & scraper | HTTP, Socks5 and socks4
OPODGG replied to Thiplol's topic in Cracking Tools
Lets hope this isn't like the last 5 proxy checkers I have tried to get :$ -
[HQ] How to buy VBucks for Free - Fortnite Paid Method Leaked
OPODGG replied to Cydonia's topic in Social Engineering
TBH I don't care if it works or not. I just want to see if it does lmao. -
Don't worry man, none of us are 18 ;D
-
please let this work, I only got like 18 more comments after this and I need a working proxy maker T>T
-
lets hope it works, my old one stopped working T>T
-
release 2018 - Free - Instagram - 1000+ Followers per day
OPODGG replied to CHAO's topic in Youtube, Twitter, and FB bots
I don't even use Instagram, I honestly just want to try to find out how you do it. -
Please leave a like so I can be one step closer to being a member. First thing is first, you do not need that much time to do this. You just need to go to two different websites, and it should be easy to make the combo. 1.) Open these two websites. https://www.randomcodegenerator.com/en/generate-codes https://www.cardgenerators.com/amazon-gift-card-generator/ 2.) On the second website, pick a gift card that you want to make a combo about, I'm going to use Amazon for this example. 3.) Click "Generate Now" and look at the code. (I got HMFJ-5MFVYJ-NPLLY) (You should do this a few times and repeat step 6, once or twice) 4.) Go to the first website, and type the size of the combo you want to make (without a membership is 1,000. With a membership its 250,000) 5.) Click "Generate using Pattern" 6.) For Code Pattern you need to refer back to the code you got. For each Letter, you put a X and for each number you put a 9. (X signifies random letter and 9 means random number from 0-9) (For me, I need to put XXXX-9XXXXX-XXXXX) 7.) Press the checkmark to the right of "Exclude Characters:" 8.) Press TXT File 9.) Press "Generate my codes >>" 10.) Download that and put it into your Home screen or whatever you want. 11.) Enjoy your new Gift card Combo :D Please don't forget to leave a like and leave a comment. It would help me out a lot.
-
If you want to know how to make keywords, I feel like I shouldn't explain what they are but whatever, ill explain it either way. Keywords are what your searcher will look for, but I'm going to make this about keywords. 1.) Find out what you want to make keywords for. 2.) Go to https://keywordtool.io/ 3.) Go to the Search bar on the website. 4.) Type what you want to make keywords for. 5.) Press the magnifying glass (Which will search) 6.) On the Bottom-Right click "Copy / Export all" 7.) Go to your Home screen and right click, press "New" Then go to Text Document. 8.) Name it whatever you want. 9.) Open it and press "CTRL" and "V" 10.) Press the X on the top right and press "Save" Now you have made a bunch of keywords. You can go to a Dork Generator and paste it, press whatever and then you got a bunch of dorks :D *Warning, these dorks are going to get the job done but they will not be the best. You should learn how to Hand-Write dorks, which will be a better quality way of making dorks*
-
https://www.dropbox.com/s/bhve8xxwa1y6vf3/20K_Fortnite_Accounts.txt?dl=0 Please give me a like or something, would help me out a lot :D If you guys want more just say so ;P
-
Netflix Cracking Tutorial For Beginners (FAST , EASY and DETAILED)
OPODGG replied to Player's topic in Cracking Tutorials
FREE NETFLIX ACCOUNTS! my guy hhoking me up wid that fast ting if life was that simple lmao -
Best Dorks Tutorial - HQ RESULTS - HandWriting Dorks (GOOGLE DORKS)
OPODGG replied to Kostrikov's topic in Cracking Tutorials
never found out how to handwrite droks, ill drop a like ig -
How to change email on cracked fortnite accounts ( VERIFIED/UNVERIFIED)
OPODGG replied to stcg's topic in Cracking Tutorials
O SHEET BROTHER YOU CAN DO THAT?! -
Wohooo free streaming :D