Google search

Custom Search

Saturday, September 25, 2010

How to make Counter Strike 1.6 Spray Logo

Counter-Strike Spray logo, spray decal or spray tag... its same name and simple to make them, first at all you must download some decal converter... we suggest to download HLTagConverter as most popular and easy program to use.

You can try for download "HLTagconverter" by using this links:


:: Download mirror (1) ::
:: Download mirror (2) ::

You can upload image as Counter Strike spray logo like this one



Step (1):
---------
When you are done with installing this program open HLTagConverter.exe, in the right menu u have one button with name "Open Image" click on it and open your own image.


(Image 01)

Step (2):
---------

For easiest way to show you, we choose desktop directory to open our default image... so open your image like this one bellow, you will have window with name "Open Tag Image" then select you image and click "Open" button.


(Image 02)

Step (3):
---------

In this step you will need to adjust image by clicking on "Adjust Image" button.


(Image 03)

Size of the image will be good to set up as default or click "Auto Size" button on the right menu, then you must click on the "Apply changes and convert to 256 colors" button like on the 03-1 image showed bellow.


(Image 03-1)

Step (4):
---------

You are almost done, next you have to do is clicking on the "Save Tag" button.


(Image 04)

and now you will have (3) options to convert the image in one of those file formats and save it... so you must click on the second option with name "Export to WAD File" after this click on the "OK" button to export the image in *.WAD file.



(Image 04-1)

Step (5):
---------

You will see window with name "Save As" save the image and name it "TempDecal.WAD" on your desktop for easy way to understand this tutorial, you can see on the 05 image bellow.


(Image 05)

So you are done with converting the image that you choose, now you will have to put your image in the game folder.

As usually copy the image and open the "cstrike" folder in your game folder... so paste the file here, maby you will have already file with that name, in that case you must click "ok" and replace the file.

Or you can follow this steps:

- Go to the Counter Strike 1.6 icon (The icon as you use it to open your game) select it and right click on it.

- Choose the last option "Properties" then click on the "Find Target" button.



(Image 06)

- Open the folder with name "cstrike" and paste there the file/image with name "tempdecal.wad"
Now open the game... make your own server with bots or join the internet server and taste you image... DO NOT CHOOSE THE SPRAY LOGOS in the options menu, just join the server and press "T" key to spray some logo.

If the file doesent work you try to put the file "TempDecal.wad" in this folder:

C:\Program Files\Steam\SteamApps\your-email\counter-strike\cstrike

So here is image that we have been created (Screenshot).




We hope that we help you how to make your own Counter-Strike spray logo... thank you.

Saturday, September 4, 2010

Disable User Account Control (UAC) the Easy Way on Win 7 or Vista

Note: Disabling UAC will lead to a less secure system, so be warned.
Disable UAC on Windows Vista
Open up Control Panel, and type in “UAC” into the search box. You’ll see a link for “Turn User Account Control (UAC) on or off”:

uac1.png

On the next screen you should uncheck the box for “Use User Account Control (UAC)”, and then click on the OK button.

uac2.png

You’ll need to reboot your computer before the changes take effect, but you should be all done with annoying prompts.
Disable UAC on Windows 7
Windows 7 makes it much easier to deal with UAC settings, and in fact you don’t have to completely disable UAC if you don’t want to. Just type UAC into the start menu or Control Panel search box.



You can simply drag the slider up or down, depending on how often you want to be alerted.


Windows 7 UAC Settings

If you drag it all the way down to the bottom, you’ll have disabled it entirely.


Disable Autoplay of Audio CDs and USB Drives

I find it very annoying when I go home from work and plug my laptop into my external hard drive… The autoplay window always pops up and asks me what I want to do with the files, which may be fine the first time, but definitely isn’t after a year of that.

To get to the configuration screen for this setting, go to Start Menu \ Run and type in:

gpedit.msc

You will see the Group Policy window. You should select Administrative Templates \ System in the tree view:

You will see an item in the right side pane called “Turn off Autoplay”

Double click the item, and set the radio button to Enabled, and change the “Turn off Autoplay on” to All Drives.

Now you should be safe from the autoplay monster.



download whole Photo album in facebook at once

NoteThis will work only in Firefox - so you need Firefox to be installed first.


Follow these Simple steps to download the photo Album

  1. Download the FacePAD Firefox extension directly from here. You may get a message block from Firefox - right click and allow that.












  1. Once you have installed - You will need to re-start Firefox to begin using the downloaded extension.
  2. You will now see FacePAD added to your list of addon extensions in Firefox.
  3. Head over to your friend's profile page and click on Photos. There you will find all the albums of your friends. Simply right click on the photo album and you will now get a new option "Download Album with FacePAD". Go ahead and download the album.
  4. You  will get an weird message to indicate that the album download has begun.
  5. You will now find all the photos of the FaceBook album neatly downloaded to your Hard Disk with almost no effort.


Creating IM Bot

This quick tutorial will show you how to develop your own functional IM bot that works with Google Talk, Yahoo! Messenger, Windows Live and all other popular instant messaging clients.

To get started, all you need to know are some very basic programming skills (any language would do) and web space to host your “bot”.

For this example, I have created a dummy bot called “insecure” that listens to your IM messages. To see this live, add insecure@bot.im to your GTalk buddy list and start chatting.


IM Bot

If you like to write a personal IM bot, just follow these simple steps:-

Step 1: Go to www.imified.com and register a new account with a bot.

Step 2: Now it’s time to create a bot which is actually a simple script that resides on your public web server.
It could be in PHP, Perl, Python or any other language.

Example Hello World bot:
The example below illustrates just how easy it is to create a bot.
This example is coded in PHP.

<?php

switch ($_REQUEST['step']) {
case 1:
echo "Hi, what's your name?";
break;
case 2:
echo "Hi " . $_REQUEST['value1'] . ", where do you live?";
break;
case 3:
echo "Well, welcome to this hello world bot, " . $_REQUEST['value1'] . "<br>from " . $_REQUEST['value2'] . ".<reset>";
break;
}

?>

Step 3: Once your script is ready, put it somewhere on your web server and copy the full URL to the clipboard.

Step 4: Now login to your imified account, paste the script URL

Screen Name: insecure@bot.im
Bot Script URL: http://www.insecure.in/imbot.php

Step 5: Add that im bot your friends list. That’s it.

This is a very basic bot but the possibilities are endless.

For instance, you could write a bot that will send an email to all your close friends via a simple IM message. Or you could write one that will does currency conversion.