Everything posted by Ph_
-
My CS:S Rage
Titled "Once upon a time on a CS:S Server" http://steamhax.com/ph1012/rage/rage1.JPG Good / Bad? Let me know.. i'll try and work on a better one next time, There was some good audio going on (people on mic etc)
-
Maraj00ana
It's 'addicting' but who cares, this shit won't destroy you. I love being high :O_o:
-
my cake for myg0t + dick in my mouth pics
A for Effort. :nigga:
-
MEOW MEOW MEOW MEOW CSS ^_^
Made me lol, if i'm meant to be a *** and rate it, too bad.
-
WoW Guild Rage
i don't see why this isnt getting the attention it deserves, good rage says i, 7/10.
-
ruined mans life
Now thats worth a join into myg0t! ouch.
-
Visual Basic 6 MSN 7.5 Plugin Tut
i reckon :\, i coded this entire tut myself thankyou very much. http://fukung.net/images/2121/bunny-with-pancake.jpg
-
Visual Basic 6 MSN 7.5 Plugin Tut
Banned from tgs? i'm not banned ..? ripping? ripping what? also, the topic clearly says 7.5 :p for 8.0, install plus and use sendkeys.
-
Visual Basic 6 MSN 7.5 Plugin Tut
Yippee! another outdated ish post from myself, more stuff at bust3d.net.. anyway: ************************** Visual Basic 6.0 Msn Tutorial. ************************** By Ph :unsure: Ok, lets get started, First of all: what this does; This Tutorial Is gonna show you how you can make a basic MSN Exploit, Like the one on my site. :) *********************** What you will be able to do: *********************** for this tutorial im gonna keep it BASIC , so everyone gets the hang of it, then ill post more. - You will Be able to change your status; - You will be able to make a status Flasher; - You will be able to Veiw your current nickname in a textbox ********************** Requirements. ********************** Visual Basic 6.0 Or later. Msn Messenger Installed. *************************** The Beggining :ph43r: *************************** Ok First of all , and MOST IMPORTANTLY, open visual basic, File>new>exe then; Project>References. Select Messenger API type library, and Messenger API type Library!!! (these tell vb what your current project will be refering to when you write some code.) Then up the very top ABOVE Form_load Type this: Option Explicit Private WithEvents MSN As MessengerAPI.Messenger This means to trigger VB knowing you're refering to something in MSN's API's in references. by typing "with msn" [sETTING STATUS] Step One: Add A combo Box onto your Projects interface. Step two: Name it cstatus (in the propertys box on the far right) Step Three: Double click on it and insert this code ; Private Sub cstatus_Change() If cstatus.Text$ = Empty Then Exit Sub With MSN Select Case cstatus.Text$ Case "Online" .MyStatus = MISTATUS_ONLINE Case "Busy" .MyStatus = MISTATUS_BUSY Case "Be Right Back" .MyStatus = MISTATUS_BE_RIGHT_BACK Case "On The Phone" .MyStatus = MISTATUS_ON_THE_PHONE Case "Out To Lunch" .MyStatus = MISTATUS_OUT_TO_LUNCH Case "Appear Offline" .MyStatus = MISTATUS_INVISIBLE End Select End With This adds Options in the dropdown menu (eg Case "Online") and then tells it what they mean (eg. .MyStatus = MISTATUS_ONLINE ) Step Four: in sub "Form_load" add this code Set MSN = New MessengerAPI.Messenger With cstatus Call .AddItem("Online") Call .AddItem("Busy") Call .AddItem("Be Right Back") Call .AddItem("On The Phone") Call .AddItem("Out To Lunch") Call .AddItem("Appear Offline") End With (this adds the drop down options) Step Five: Add A new Button onto your projects interface. Step Six: Name the button "cmdsetstatus" (without quotes) the same way you did with combo box in step two. Step Seven: Double Click on it and insert this code!! Private Sub cmdsetstatus_Click() If cstatus.Text$ = Empty Then Exit Sub With MSN Select Case cstatus.Text$ Case "Online" .MyStatus = MISTATUS_ONLINE Case "Busy" .MyStatus = MISTATUS_BUSY Case "Be Right Back" .MyStatus = MISTATUS_BE_RIGHT_BACK Case "On The Phone" .MyStatus = MISTATUS_ON_THE_PHONE Case "Out To Lunch" .MyStatus = MISTATUS_OUT_TO_LUNCH Case "Appear Offline" .MyStatus = MISTATUS_INVISIBLE End Select End With Step Eight: test your project (with msn open) , if it works right you should be able to open a drop down box and set your status by clicking the button. Step nine: [The status Flasher] :ph43r: (you may stop now and not add this , but its fun to add) On your project add two timers. Call the first one : "statusfo" Call the second one: "statusfonl" Disable Both The Timers. Somewhere in your code Not in a sub add this Code '***************************** 'beggining of status calls '***************************** Public Sub online() With MSN .MyStatus = MISTATUS_ONLINE End With End Sub Public Sub BrB() With MSN .MyStatus = MISTATUS_BE_RIGHT_BACK End With End Sub Public Sub away() With MSN .MyStatus = MISTATUS_AWAY End With End Sub Public Sub busy() With MSN .MyStatus = MISTATUS_BUSY End With End Sub Public Sub onthephone() With MSN .MyStatus = MISTATUS_ON_THE_PHONE End With End Sub Public Sub offline() With MSN .MyStatus = MISTATUS_OFFLINE End With End Sub Public Sub AppearOffline() With MSN .MyStatus = MISTATUS_INVISIBLE End With End Sub Public Sub out2lunch() With MSN .MyStatus = MISTATUS_OUT_TO_LUNCH End With End Sub '******************** 'End of status calls '******************** Then double click insside the first timer. Type "Call Appearoffline" Then double click inside the Second timer. type "call online" MAKE SURE BOTH TIMERS ARE DISABLED. Disable them via propertys page where you cahnge name. or insert this code in the timers timer 1: statusfo.enabled = false timer 2: status fonl.enabled = false Then in timer1 add this : statusfo.interval = 500 in timer2 add this : statusfonl.interval = 800 :) ************** adding buttons *************** Create Two New Buttons. Call the first "on" and the second "off" Double Click inside the First button and add this Private Sub on_Click() statusfo.Enabled = True statusfonl.Enabled = True End Sub and put this in the second one: Private Sub off_Click() statusfo.Enabled = False statusfonl.Enabled = False End Sub You've Now added a status flasher START button and a status flasher STOP button. Test your Program and it should work. NOTE: a status flasher is a program that signs on and off over and over again to get ppls attention B) :lol: Thats it, any problems/suggestions PM me or Post!! B) :ph43r: :smooth: If you're ever in doubt of being bothered to read this whole thing just remember include the msn api and do something like this http://www.ckyklan.com/ph/miscpics/blankcanvas.jpg put a dot then itll have various msn api options ;)
-
Basic's Of Game Hacking (Memory Attacks) Part One: 3D Pinball
This is also outdated and from my site: http://www.bust3d.net, posting their will get quicker responses, anyway: ************************** Requirements ************************** Visual Basic 6.0 Or Later Windows XP (To Have 3d pinball ) Tsearch 1.6 (go google it) This Module (the reason i didn't just explain what codes to put in with that module is because its abit complicated and would waste our time, anyway) :ph43r: *********************** Using TSearch *********************** Step One: Open Up 3d Pinball and then start a new game, get some points and then go into tsearch. Step Two: In TSearch click OPEN PROCCES, Find the Procces Of 3D pinball and double click on it. Step Three: In The top Left hand corner Click The Little magnafying glass and a little pop up should come up, Make sure "Exact Value" Is selected In the drop down Dialog. Step Four: Have In the Second Drop down menu " 4 Byte Value" selected; Then Enter Your current score in the textbox. Step Five: You Should Probly See That TSearch Has found 2 adress' Step Six: Double Click On the top one on the far left under Search. Step Seven: Go back ingame and see if when you change score ingame, it changes the value of that address in t search, if it does you've found the correct address!!, if not keep searching until you do. Step Eight: [using VB] Open Up Visual Basic; Start a New Standard EXE and then click Project (up the top) > then Add Module, then existing in the tab; Find the Location of where you saved the Module Downloaded from this topic. Step Nine: Go into Visual basic and add a button, (doesnt matter what its called); then double click on it so your in its Code. Add this Private Sub Command1_Click() Call WriteLong(&Hyouraddress, 999999) End Sub Then Add A ListBox, Double Click on Your project and add this in sub "Form Load" List1.Clear List1.AddItem "Pinball Running: " & GetGameProcess("3D Pinball for Windows - Space Cadet") [What this Does!] Now compile your project and when you run it you should have Pinball running: (true or false) in the list box, and when it is running and you click the button you automaticaly set your score to 999999 when you change your score. Complaints / Requests??? PM Me or post @ bust3d.net!
-
FAQ: How steam Works (And how to get shit for free) By Ph
The thing is As i said in my FIRST SENTENCE, this is outdated, hence why you can't find any of the programs, EVERYBODY know's that most cafe clients these days fail, anyway "sum it up in one sentence, not the size of a book" the aim was to teach people how each method works and so they can choose the best result to help them, so.. your repsonse isn't valid. Thanks to those who found this helpfull and more to come. END
- @ U all
-
FAQ: How steam Works (And how to get shit for free) By Ph
This is fucking oldish, official website: bust3d.net, hope this helps you rage somehow :P FAQ: HOW STEAM WORKS By Ph - http://www.bust3d.net Ok, I've Decided to write this FAQ Because i'm sick of the bullshit storys and hearing of people who bitch about not being able to play online, and how they claim to have beat steam, yet all they have is a cracked client that can download MAYBE One game Here's Some Quotes From Today: "If I want to download & Play CSS Online, Do i Need to get Half - Life 2?" "Does Garry's Mod Come with a Cafe Account?" "My Friend *** Downloaded a CS:S .ISO And it Doesn't Work! , what can i do too help him?!" "How Can I Get CSS Working Online For Free??" "How Does A Cracked Steam Client Work?" - This Question Made Me want to write this FAQ The Most! Now Before we get started, here's some quick answers: PART ONE: Cracked Steam Clients Ok First Off I'm Going to go in-depth with how a Cracked Steam Client works, what it does, and how it can benefit you... Read on!: A Cracked Steam Client Is a program (a modified version of steam) Or Patcher (usually a .dll patcher) Made specifically to patch your STEAM.DLL File in your steam directory, it is in this file, where the data that corrosponds with your account, and your client itself is stored. a Cracked steam client is usually a patcher these days, what these patchers do is modify your STEAM.DLL to say that any user that logs in with any account on YOUR steam client, will have every game, though!, this is entirely not true. You may notice, if you've ever used a cracked / patched steam, that when you double click just about any game that you dont already have the files for (the .gcfs, ill explain soon) it will give you an error saying: Or something Very similar. What steam is really saying is: It's saying this because you don't have the .gcf files required to download that game, in a way, they act as verification files, if you have them, it will download it. (Very slowly i might add!) This is why, when someone buys a game from steam, the cracking community are always begging for the .gcf that you get when you activate it for your account, (the file thats in STEAM FOLDER/STEAM APPS / USERNAME /) Because once they have that file they can upload it to anywhere they like and let the leech's download it, place it in their steam directory/steam apps/username, run their patched client and download it. But, say your thinking "Oh! so i just need one small file, then i can get this game with my patched steam, and play it online with my friends, without paying a thing right?!" WRONG. When you have downloaded it, you will NOT be able to play it online because of the verification servers that are inside every server with VAC2 Cheat protection enabled, if these servers go down, you can play online. The ONLY other way to play them online with these patched clients is to play on cracked servers, cracked servers are servers created by people with cracked clients / games. so say, jimmy has bought cs, and he wants his friends to play it online against him in his server(jimmy is a power whore), but they cant afford it, they, even with a cracked client will not be able to play with him on jimmys server, Unless: steam verification servers go down Jimmy is using a cracked client aswell and hosts a Cracked server! It's that simple. and that's why when you download a cs.iso , and try to play online, it fails miserably, you HAVE to play on cracked servers ;) ALSO they can only be played when you have downloaded approx. 4gb of .gcf files (hl2 content etc) in short, cracked clients suck at online play, and are like DVDs in a glass case. The DVD = Online Play The Glass Case / security camera = Verification Servers The Keys to the glass case = GCF Files Crowbar that smashes the glass case & security servers = Steam Cafe Accounts :lol: You can only get so far with your KEYS, you will though, be caught straight away by the SECURITY CAMERAS MOVING ON! STEAM CAFE ACCOUNTS Say you go play at a lan party that supply their own computers, you say to yourself, they have all the games, they must be using a patched client because they can only play LAN! (some can play multiplayer) Well once again you're wrong. They are Logged into a Cafe Account, Valve offers Steam cafe accounts For certain membership prices, more info @ steampowered.com (steams website) So now you wanna know what's so good about these cafe clients, how you can get one free, and how they work. Read on! Cafe accounts are not legaly free, i can show you ways to get them free, they can though, download roughly - NINETY PERCENT of steams range of games! AND play them online, all legaly too. as far as pricing goes, these baby's are valve's dream come true! as far as the exploiting goes, these are valve's worst nightmare. The Cafe accounts basically are accounts with most games (as stated, approx 90%) pre-purchased and activated on them. They are allowed through by the verification servers (glassbox/security) because they are valves and they run the same client , .dll's and legitimate cd keys. As for the "KEYS" you say? their .gcfs are also legit, so now all thats left is your "DVD" (online play!) In short, cafe accounts are like the staff or a crowbar. they can get through and take the DVD because they are allowed to and they can break through and steal the dvd if they are aquired. ;) "Hurry up and give me a cafe account then please!!!" Well, i Can't exactly give you a client to use straight away, but, i can give you the names of .exe's (its alright, not patched .dlls) that will open up a menu giving you access to about 30 cafe clients each time (IT WILL NOT GIVE YOU THE PW) NAMES: So with these, you become store manager. Online play is yours you can download them straight away ENJOY! Now for my finaly part: The Mods, (GMod, And etc) To Get these Working: Singleplayer: Patch Your Steam (yeah, gay i know) download the files either seperately or with a cafe account Download the disered Mods .gcf File Place in steam folder/sourcemods or w/e open your patched steam client! then itll be on the list and will download/update - ENJOY! Online: (NOT YET TESTED) After doing the steps above, open your cafe account and select the mod and try playing online (SHOULD work.) TIP: Have two seperate installs of steam one for cracked one for cafe (legit) this is so no corrupting accurs Enjoy!! THE END By Ph! - http://www.bust3d.net
-
my cake for myg0t
THINGS THAT SPIN ON TOP OF HAT = Pass. BEING UNDER AGE OF 12/13 = Fail.
-
LAB TOP RUNNIN SLOW
in your language a simple translation: it shizzle be-fizzle a-dizzle pice of wizzle.
-
New Hack Released by John_Winthrop
LOL IRL
-
im leik teh leet haxor and u mygot ppl stop bein no0bs!!11
DANCING N WORDS :nigga: :nigga: :nigga: :nigga: :nigga:
- Best #myg0t IRC Quotes
-
Rofl Give me a server...
the internet police shall be knocking at your ports soon sir. What... the... FUCK!? That should be a bannable offense. QFT
- FUCK WOMEN!
-
US Army: An Army of None
I hope you goto hell and die in a fire sir.
- new saddam video
-
Steam Cafe Accounts Verified
I Can't Beleive they really do keep posting, and without even reading the whole topic :wtcslap:
-
Guy raged himself, practically.
he's not raging himself!, lol, can't you see how angry the other n00bs are. god, well either he was doing it on purpose and raging them or he was a 9 year old :nigga:
-
Steam Cafe Accounts Verified
double post: also, there are clients that give you cafe accounts all over the place, freesteam.org ***s.