Jump to content

g11nius

Members
  • Posts

    42
  • Credits

  • Joined

  • Last visited

    Never
  • Feedback

    0%

Everything posted by g11nius

  1. omg. go fu ck wha gavi my
  2. hi as the title says i will show you how to free hard drive space in windows vista ( if a post like this is already made feel free to delete my post or move it to jankuard ty) In windows vista some hardrive space is taken by shadow files these are most shadow copies of your files and System restore points that take you space in hard drive. to get rid of them just folow this simple steps 1)Go to start then run and type there cmd 2) Choose to open as administrator 3) Now to see how much hard drive space these files are taking from you copy this and paste it in cmd(don't forget to run as admin) VSSAdmin list ShadowStorage (sory my pc is in greek cause i am greek :D Usualy the number of gb these files are taking you from your hdd are in the 3rd sentence before the end) 4)Then to delete these shadow files you must copy this and paste this in cmd VSSAdmin Resize ShadowStorage /For=C: /On=C: /MaxSize=15GB ( there that says MaxSize=15 gb you can change it to the number that you have shadow files for ex MaxSise=12GB) 5) Now hit enter and you are done:) ps: sometimes the shadowfiles are not deleting with once so you have to change the MaxSise a lot of times one by one for ex maxsise=15 then you will pres the same with maxsise=14 untill they all be deleted(you can watch your hardrive space becoming bigger while you doing this) :) try it and tell me :)
  3. I want to teach you how to do a little topsite ! If you search something like this just read my topic ! OK Lets start ! 1. You have to create a file named index.php and insert there this code: <?php require_once('mysql_connect.php'); $query = "SELECT id, name, description, votes, hits FROM websites ORDER BY votes DESC LIMIT 50"; $result = mysql_query($query) OR die(mysql_error()); echo '<table border="0" cellpadding="7" cellspacing="7"> <tr> <td><strong>Rank</strong></td> <td><strong>Name</td> <td><strong>Votes</td> <td><strong>Hits</td> </tr> '; // Rank counter $rank = 1; while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) { echo '<tr> <td>'.$rank.'</td> <td><a href="out.php?id='.$row['id'].'" target="_blank">'.$row['name'].'</a><br /><small>'. $row['description'].'</small></td> <td>'.$row['votes'].'</td> <td>'.$row['hits'].'</td> </tr> '; $rank++; } ?> NOTE: DESC LIMIT 50"; replace 50 with the number that you whant to be max for the register sites. 2. Create new file named add-site.php And add this code: <?php // Ако Формата не е била попълнена if (!isset($_POST['submitted'])) { ?> <style type="text/css"> input { color: #000; text-decoration: none; background: #F4F3F3; border: 1px solid #ADAEAF; font: normal 9pt verdana, arial; } input:hover { background: #F4F3F3; border: 1px solid #000; } .button { background-color: black; color: red; font-size: 12px; font-family: arial; font-weight: bold; } </style> <body> <h3>Adding a web</h3> <form action="<?php $_SERVER['PHP_SELF']; ?>" method="post"> <p><b>Website name:</b> <input type="text" name="name" size="25" maxlength="40" value="<?php if (isset($_POST['name'])) echo $_POST['name']; ?>" /></p> <p><b>Website link:</b> <input type="text" name="url" size="25" maxlength="60" value="<?php if (isset($_POST['url'])) echo $_POST['url']; ?>" /></p> <p><b>Site description:</b><br /> <textarea name="description" rows="5" cols="40"><?php if(isset($_POST['description'])) echo $_POST['description']; ?></textarea></p> <p><div align="center"><input type="submit" name="submit" value="Add" /></div></p> <input type="hidden" name="submitted" value="TRUE" /> </form> <?php } else { // MySQL connect require_once('mysql_connect.php'); if (empty($_POST['name'])) { echo '<font color="red">Please add the name of the site</font><br />'; $n = FALSE; } else { $name = $_POST['name']; $query = "SELECT id, name FROM websites WHERE name = '$name'"; $result = mysql_query($query) OR die($mysql_error()); $num = mysql_num_rows($result); if ($num > 0) { $n = FALSE; echo '<font color="red">There is a web with this name ! Please pick another one.</font><br />'; } else { $n = mysql_real_escape_string($_POST['name']); } } if (empty($_POST['url'])) { echo '<font color="red">Please add link to your website.</font><br />'; $u = FALSE; } else { $u = mysql_real_escape_string($_POST['url']); } if (empty($_POST['description'])) { echo '<font color="red">Please add description for your website.</font><br />'; $d = FALSE; } else { $d = mysql_real_escape_string($_POST['description']); } if ($n && $u && $d) { $query = "INSERT INTO websites (name, url, description, password) VALUES ('$n', '$u', '$d', SHA('$p'))"; $result = mysql_query($query) OR die(mysql_error()); if ($result) { echo '<h3>Thanks for your register.</h3> <p>Your web was added. Please copy the vote code on your website.</p>'; $query = "SELECT id, name FROM websites WHERE name = '$n'"; $result = mysql_query($query) OR die(mysql_error()); $row = mysql_fetch_array($result, MYSQL_ASSOC); ?> <div align="center"> <textarea name="code" cols="20" rows="2"><a href="Your website link/vote.php?id=<?php echo $row['id']; ?>">Vote for us !</a></textarea> </div> <?php } else { echo 'There is an error with adding your website !'; } } else { echo '<font color="red"><a href="add-site.php">Back.</a>'; } } ?> NOTE: href="Your website link here add your website link 3. Create new file named mysql_connect.php And Insert this code: <?php DEFINE ('DB_USER', 'root'); // Databace User (root) DEFINE ('DB_PASSWORD', ''); // Databace Password DEFINE ('DB_HOST', 'localhost'); // Databace Host DEFINE ('DB_NAME', 'top'); // Databce name $dbc = @mysql_connect (DB_HOST, DB_USER, DB_PASSWORD) OR die ('Could not connect to MySQL: ' . mysql_error()); @mysql_select_db (DB_NAME) OR die('Could not select the database: ' . mysql_error() ); ?> 4. Create new file named out.php and insert this code: <?php // Checs for the ID if (isset($_GET['id']) && is_numeric($_GET['id'])) { // MySQL Connect require_once('mysql_connect.php'); $id = mysql_real_escape_string($_GET['id']); // Add +1 Hits $query = "UPDATE websites SET hits = hits + 1 WHERE id = $id"; $result = mysql_query($query) OR die(mysql_error()); unset($query); unset($result); $query = "SELECT id, url FROM websites WHERE id = $id"; $result = mysql_query($query) OR die(mysql_error()); $row = mysql_fetch_array($result, MYSQL_ASSOC); $num = mysql_num_rows($result); $url = $row['url']; if ($num > 0) { header ("Refresh: 0; url=$url"); } else { echo '<font color="red">Error: There is no that kind of site.</font>'; } } else { echo '<font color="red">You have to choose web to visit.</font>'; } ?> 5. create new file vote.php and add this code: <?php if (!isset($_POST['submitted'])) { // Checs for the ID if (isset($_GET['id']) && is_numeric($_GET['id'])) { // MySQL Connect require_once('mysql_connect.php'); $id = mysql_real_escape_string($_GET['id']); $query = "SELECT id, name FROM websites WHERE id = $id"; $result = mysql_query($query) OR die (mysql_error()); $row = mysql_fetch_array($result, MYSQL_ASSOC); ?> <strong>Do you whant to vote for "<?php echo $row['name']; ?>" ?</strong><br /> <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST"> <input type="submit" name="vote" value="YES !" /> <input type="hidden" name="submitted" value="TRUE" /> <input type="hidden" name="id" value="<?php echo $row['id']; ?>" /> </form> <?php } else { echo '<font color="red">You have to choose web to vote for it !</font>'; } } else { // MySQL Connect require_once('mysql_connect.php'); $id = mysql_real_escape_string($_POST['id']); // Choose the web for votes $query = "SELECT id, votes FROM websites WHERE id = $id"; $result = mysql_query($query) OR die(mysql_error()); $row = mysql_fetch_array($result, MYSQL_ASSOC); $votes = $row['votes']; $url = $row['url']; $id = $row['id']; $cookie_name = 'vote_'.$id; if (!isset($_COOKIE['vote_'.$id])) { // Adds +1 Votes $votes++; // Updates the votes $query = "UPDATE websites SET votes = $votes WHERE id = $id"; $result = mysql_query($query) OR die(mysql_error()); setcookie ($cookie_name, 1, time()+86400, '/', '', 0); echo 'Thanks ! Your vote was submited <a href="index.php">Index.</a>'; } else { echo 'You can vote every 12 hours.'; } } ?> 6. Now create a file named mysite.sql and add this code in the file: CREATE TABLE websites ( id INT(11) UNSIGNED AUTO_INCREMENT NOT NULL, name VARCHAR(40) NOT NULL, url VARCHAR(60) NOT NULL, description VARCHAR(255) NOT NULL, votes INT(11) UNSIGNED NOT NULL DEFAULT 0, hits INT(11) UNSIGNED NOT NULL DEFAULT 0, password CHAR(40) NOT NULL, PRIMARY KEY(id) ); Execute it with navicat and voala ! your topsite is ready !!! NOTE: You have to create the look of the web that are only the scripts !!! Credits for scripts: stoqnski (webTourist) Credits for the Guide: ME ^^
  4. Hello folks!! Lets start : Before you do anything, make sure automatic updating of the iTunes library is disabled. This is very important to ensure that you do not update your iPod automatically and lose the songs that are on there. You are now ready To Begin ~ Sharepod -Free software Here's how you get started. Firstly, Download sharepod here ~ [Click Me] ~ Then, a) Hook Up your iPod to your pc via usb/firewire b) The iPod drive appears in My Computer when you have the iPod plugged in to your PC. c) Once you see the iPod's drive, copy the SharePod.exe onto it. Open the SharePod.exe and after a few seconds the main window will appear. If a window appears saying you need to download a file for SharePod to run, simply follow the instructions. d) When the main window opens, it displays a list of playlists on your iPods. Double-click on a playlist to view its songs. You can either select songs or playlists to copy to your PC. e) If you want to copy all songs on the iPod to your PC, select the playlist and hit the 'Copy to PC' button at the top of the screen. It will ask you where you want the music to go (eg. c:/music) and how you want the music to be formatted (eg Artist/Album/Song.mp3). Once you have set both of these hit the Transfer button and sharepod transfer your desired music to the location which you have selected. f) From there, simply import your songs into iTunes in the usual manner of File -> Import.
  5. 1.Go to the YouTube video's page that you want to download. 2.Right-click the screen and click "View Source", or something similar, depending on your type of browser. 3.Open "Find" (Ctrl+F) and search for "video_id=" (without quotes). 4.After this is found, highlight the text from "video_id=" to the end of "title" (without quotes, and DO NOT include the equal sign at the end of title). 5.Copy this text. 6.In your browser, type in: "www.youtube.com/get_video?" (without quotes). 7.Paste the text you copied earlier at the end of the question mark. 8.Go to this URL. A box will open up with options to "Open" "Save" or "Cancel" the download of the file: "video.flv" 9.Save it. 10.You now have the video! 11.You can merely watch it anytime you want (online or offline) or you can reupload it to your account (please only do so with owner of the video's permission, to avoid copyright infringement). Tested. Credits to endless43908
  6. Hello MaxCheaters!!I decided to make a guide on how to create a 3D Text in the famous program Cinema 4D!! So let's start!! First of all create a new composition/project. Then, click on that "snake" line (which I have no idea what it is about) and select the option "Text". After the Text option, now a panel will automatically pop up in your right corner with your Text Settings.Type the text name in the text box and then select your font.Of course you can modify the settings, but in this tutorial I didn't!! After finishing with the text settings, you will notice that 3D effect hasn't appeared yet..W00t?So, what you have to do is to go in the tools bar and selece the ball inside a cube, click on that and then select Extrude NURBS! But still the text is not 3D, so we are in the last step of making it 3D.Drag the Text layer on the Extrude NURBS layer when you see an arrow pointing DOWN. Now your text has become 3D.Congratulations.You can play with the Extrude NURBS settings so you change the outcomme of the text. I've got this one!! Holly crap, it looks like shit in that gray color.Time to colorize it.You must place a MAT on it so it becomes colorfull.How are you going to do that? Double-Click on the Grey Empty Bar down to your screen and a small ball will pop up!!That's our MAT!! But don't forget about the MAT settings too.You must double-click on the MAT Icon which appeared and then a window will come up with the settings, colors and anything you may need for your text!!Play with the settings and get the result YOU want!! To apply it on the text layer, all you have to do is to drag it on it like the way you did with the previous drag task!And you are done!! For taking a preview of any new step you are making in Cinema4D, just press the icon that is colorized with blue in the picture bellow. This is my result!Have fun, hope you liked it and good luck with you creations. Syntax for MaxCheaters.com! PS. Don't try to leech my guide or anything similar.I am not warning you for something, nothing will happen to you but at least give the damn credits :) It's just a 2 seconds job typing my Nickname!Thanks!!
  7. sorry for my bad english i make a mistake how* no who :D better you must watch the video in High Definition in youtube
  8. WARNING!! YOU HAVE TO BE VERY CAREFUL First, get your trojan, virus or keylogger, or server or w/e you plan on using to become undetectable, and get it ready. Fix it up, create it, whatever. Now that you have your trojan, virus or keylogger or w/e harmful ready, its time to make it UNDETECED! 1. Download Software Passport. This is THE best binder out there I know of, it makes everything %100 UNDETECTABLE BY ALL ANTIVIRUSES (including Norton, Kaspersky, Avast,Mac,blah blah etc)... There is a form to fill out information, so put in your real email address, and then you'll recieve a download link in your email (it might be in Spam, Junk mail section so beware.) 2. Once you download the program, install it. 3. Once installed, you open it up. you'll have to download the files..don't worry you can google it as "error pops up" Now, when you download these files, and you put them in the SAME FOLDER (or same location), open Software Passport again and click Load Existing Project (top left). Where it says "Files to Protect" (if theres stuff there, delete it): Add the files you want to make %100 UNDETECTABLE!! Now, once done, go to the bottom right and click "Build Project". A bunch of windows will come up, just click Yes and OK. Now, once its created, they are %100 undetectable. Go to www.virustotal.com to scan it with every Antivirus, and they wont find ANYTHING! Software Passport Win32 [Trial]: http://dl.filekicker.com/send/file/213429-8LVX/softwarepassport32.exe Software Passport Win64 [Trial]: http://dl.filekicker.com/send/file/213435-7I67/softwarepassport64.exe If you want this program full registered visit www.maxhackers.com If you want hacking tools, warez and more visit www.maxhackers.com
  9. alloz, oNe more superme post by tiranous :p well... as the title says I will show you to make your own sony ericson mobile phone theme!! with your own pictures and own songs :P okz lets start 1st)download and opem theam creator! 2nd) when you open it you will see this: press the 1st ''creat your theme using the wizard'' 3rd)chose you mobile phone MODEL from up and left (see at picture) 4)add your images by pressing at the PC is you want to load photo from your pc and at movile phone if you want to add photo from your mobile phone!(see at picture) If you don't like your photo you can cancel it by pressing at ''x''(see at picture) 5)press at colour cheme to add you base color (see at picture) you can take a color from a picture,too by cliking at ''from an image'' Press this.. and see a mini review how your theme seem v 6)Now click at ''style'' to chose your theme base style you can change the style from ''select style'' (see at picture) you can chose one of five styles 7) now we almost done :P click to prieview to see how your theme is move down to see all the theme review download links ################################## Download the simple and easy theme creator Download the xmas Version (is the expert Version) ################################## about theme creator xmas (expert Version) Well with this version you can do more thinks ;) look the photo and check!!! ;) :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D Credits 100% to me!!
  10. After Effects CS3 includes fabulous 3D, per-character text animators, but the ability to actually extrude text into solid 3D objects usually requires third-party plug-ins. Unless, of course, you use the trick shared here by animator, designer and After Effects expert Angie Taylor, which permits you to extrude the text with no extra software. There are other ways of creating true 3D text in After Effects, using filters like the Shatter filter. However, the trouble with Shatter is that it’s quite difficult to get the edges of the text looking decent and crisp. The following technique is great as it’s fairly straightforward and quick to carry out. It also allows you to use 3D animators with your extruded text. 01. Copy the files from the cover disc onto your hard drive and open the project RightonBrightonDA_1.aet. This is a 3D beach scene, built in After Effects. RAM preview to see the basic camera move that has been set up. We will add some text, plus some vector-based flotsam and jetsam to the scene to create animated titles for my animated series, ‘Righton Brighton’. Select Composition > New Composition, choose PAL D1/DV Widescreen preset. Select the Horizontal Type tool (Cmd/Ctrl + T) then click in the centre of the Composition Panel. In the Paragraph panel, click on Centre Text before typing ‘Righton Brighton’. 02. Go to the Selection tool, then click the Wing Menu in the Character panel, choosing Reset Character. Select the Font Name in the Font Family field, use the Up and Down arrow keys to select fonts. Using this technique you can see your Text updating in the Comp panel. Choose Impact as your font (or a similar, chunky sans serif font), at 62 points, then introduce size variation by choosing the Horizontal Type tool and individually selecting the first R, both Ts and the B. Change the size these characters to 106 and Baseline Shift to -12. Open the Righton Brighton layer in the Timeline. 03. Select Text Property Group > Path Options. Choose the Pen tool and draw a simple, curved mask shape. Choose Mask 1 from the Path menu to attach the text to it, then adjust the spacing between letter pairs by placing the cursor between the characters you wish to adjust and adjust the Kerning value in the Character panel. Choose a warm yellow for the Fill colour and dark red for the Stroke colour, changing the Stroke Width to 10. Choose Fill Over Stroke from the Stroke Options menu. With the layer selected and time-marker at 0, go to Animation menu > Browse Presets. This opens Adobe Bridge. Navigate to Text > 3D Text Folder. 04. In Bridge, double-click the ‘3D Fly Down Behind Camera.ffx’ preset to apply it to the layer, and jump back to After Effects. Hit U to open up keyframes for the selected layer and RAM preview by hitting 0 on the number pad. Open Material Options for the layer and switch the Cast Shadows option to On. Change Light Transmission to 100%: you won’t see a result from doing this yet, but it will allow shadows, coloured by the layer’s pixels, to be cast by the text in the final composition. Select the layer in the Timeline and hit U to open keyframed properties. 05. Select all keyframes for the property by clicking the property name (Offset). Drag the keyframes so that the first one is at the two-second mark. We’ll create the 3D effect by duplicating the layer, so it’s important that you’re happy with the typesetting and animation before moving ahead. Close the layer and then hit the P key to open the position property in the Timeline. Select the Position property and then go to Animation > Add Expression. Replace the text in the expression text field with ‘value + [0,0,index]’ and then hit Enter on the Number Pad (not the Return key). 06. Before we create our 3D text, we’ll add another expression to create a bevel by gradually increasing the Stroke Width value. Open the Text property group and then click on the Animate menu, choose Stroke Width. Add an expression to the property and edit the expression so that it reads: ‘text.animator(“Animator 2”).property. strokeWidth+index’. This makes each layer’s Stroke Width value increase by one pixel as the layer numbers increase. Change your 3D view to Top and adjust the view so you can see your layer. Select the layer and select Edit > Duplicate. Repeat this four times to create a total of six layers. 08. Change your 3D View to Custom View 1 and use the Orbit Camera tool © to move around the view to see the extruded text effect. You may want to switch the Fast Previews menu to OpenGL Interactive so that you can pan around the views quickly and smoothly. It would be difficult to continue working with the text in this composition due to the sheer number of layers. To make it more manageable, nest it into another comp, where it will appear as a single layer. 09. From the Project panel, open the 01_Beach Scene start comp, then drag the Righton Brighton text comp into it as the top layer. Change your view to Custom View 1 and adjust it using the Camera Tools until it looks like the one in the image. Notice that the text layer is no longer 3D and does not react to the camera. Click on the 3D switch on the layer in the Timeline or go to Layer > 3D Layer. The layer jumps into the 3D scene but has no depth. In order to bring the depth through to this composition we must Collapse Transformations. 10. Click on the Collapse Transformations switch in the Timeline. Change Position value to 360, 420, -90. Change the Y Rotation value to 334. Credits: Digital Arts
  11. This is an easy way to make money. Earn money while uploading and sharing your files with your friends All what you need is an account on HOTFILE , then upload your files . and you will gain money when your files are downloaded . TO register through my referral link Hotfile Details: 1. Min payout 15$ 2. Instant upload by FTP and Remote upload feature. Unlike many other pay-per-downloads, Hotfile features Batch Remote Upload. You can add a bunch of remote links at once! 3. 20% Referral Bonus Hotfile pays: 5-50Mb $5 for every 1000 downloads 50-100Mb $7 for every 1000 downloads 100-400Mb $10 for every 1000 downloads Your status depends on your conversion ratio which includes: * 1. The ratio of uploaded files to number of downloads. * 2. The ratio of the users that downloaded your files and the users that become premium based on your uploaded files. Rules & Conditions 1. Downloads are counted only if done from the following countries: United States, Canada, Norway, Finland, Sweden, United Kingdom, Germany, Latvia, Estonia, France, Spain, Portugal, Italy, Austria, Switzerland, Hungary, Czech Republic, Netherlands, Belgium, Greece, Denmark, Ireland, Poland, Slovakia, Slovenia, Lithuania, Bulgaria, Romania, Australia, Russia, Liechtenstein, Kuwait, Qatar, United Arab Emirates, Saudi Arabia and Bahrain. 2. HOTFILE pays you 20% from the money earned from affiliates who you referred to the HotFile.com 3. HOTFILE payS every Monday (Epassporte,Paypal, Webmoney). Minimum payment amount is $15. 4. Payments are sent automatically (You don't need to to anything). Referral Program You can earn money simply by inviting your friends to use our affiliate services. What you need to do is to simply register to our site, set up your payment info in your account and send your referral link from My Referrals page to your friends. You will earn 20% of whatever they earn if they are registered to our site using your referral link. TO register through my referral link Hotfile payments proof : http://img122.hotlinkimage.com/img.php?id=317183934&q=
  12. MP3 Quality Modifier makes it really easy to change the bitrate of your mp3 music collection so that the filesize can be dramatically reduced. With this advantage it's possible to put more music on your mp3-player or just to save some disk space. Even advanced tasks are possible: Downsampling, changing the used channels and so on. With the included presets it's simpler than ever before to manage all those settings. Best of all is that - unlike other software - the ID3 tags (title, album pictures etc.) will be completely retained without any effort! Main Features * change mp3 quality with just a few clicks * really easy and intuitive interface * retain all ID3 tags with ease * advanced options: detailed bitrate settings, sample frequency etc. * quality comparison: compare created files with original ones * multilingual: english, french, german, italian, portuguese, spanish * portable: extremely small, just one executable, no installation * free of charge! Some photo's : Here is one video: Download it from here: http://www.inspire-soft.net/?nav=soft_mp3qualitymodifier Credits www.inspire-soft.net Enjoy
  13. well i search for plugins in google and i find a good site about photoshop tools... i have download some backgrounds and i want to share them with us :) Download Redfiled Backgrounds
  14. ime new sto l2net kai mexri stigmis logarw kanonika me ton char se Ig mode kai ola ok
  15. Geia ime new sto l2net kai mexri stigmis logarw kanonika me ton char se Ig mode kai ola ok Twra tha ithela na rotisw pos boro na valw ton pexti na varei automata Xriazete na kanw script kai an nai dwste mou kapioia links me tuts gia na dw An iparxei idi topic pou ta exeigei dwste to link :(
  16. help problem Peite mou grhgora please pws na dwsw access ston server mou sto cs 1.6! Smiley Xrhsimopoiw AMX_mod.
  17. Hi all,when i log to cs i am opening the window option,video and then i'm going to change the color and from normal is not going to high...and its all bleached
  18. hi all. again me. I'm trying to make draconic black for dwarf and i have a problem. i did all correctly but in game up_body and low_body textures are messed up. here are some screens: here is the armorgrp line: http://img130.imageshack.us/i/92079037.png/ here is the unrealED texture file: http://img687.imageshack.us/i/65515325.jpg/ and here is the messed up texture: http://img245.imageshack.us/i/shot00013bu.jpg/ and http://img197.imageshack.us/i/shot00012bb.jpg/ can someone help me? :| I'm desperate.
×
×
  • Create New...