Wednesday, February 27, 2013

Counter Strike Bot Editor version 1 Released

Avis Bot Creator for Counter Strike v 1


A GUI Bot AI Editor for Counter Strike.




Features


  • Suitable for both CZ Aand 1.6
  • Completely what you see is what you get..
  • No computing Skills required..
  • Easy to Use!!
  • Add custom traits to bots in no time>
  • Developer notes facility to exchange important notes with all the other people who use your bot profile(Requires ABC)
  • Fast Mission Pack helper to copy bot names to your mission packs faster (See Tab --> Extras in ABC)
  • Check for Updates feature to automatically check for updates!
  • Mission Correct facility to correct names of renamed bots in your Mission Packs.


  • Get the Download at GameBanana

    View the Tutorial (Highly Recommended.)

    Wednesday, February 13, 2013

    Operation Neptune Spear Mission Pack

    Operation Neptune Spear Mission Pack

    for Counter Strike

    Get ready to re-act Operation Neptune Spear,the top-secret mission that led to the death of Osama Bin Laden.
    Now, Osama is back with Al-Qaida!
    Prepare your forces to repeat the history!
    Its time for serious combat!



    Glitches

    • Floyd can be very Productive in close encounters.His Skill may be Low but he is quick on his hand and can do heavy damage to opposition in close Combats.
    • Vern can be very deadly with his Bulpup but he is slow to act..So use him only in maps with long-distance combats.
    • Eddie uses the powerful Sniper Krieg 550 Commando.So he is one of best choices in a Long-distance war.
    • Phil same as Floyd can do damage in close combats.
    • Maverick as usual is your cheap Heavy-Weight.
    • Cole with his low reaction time and m249 para machine gun can be very productive in close matches.
    • Kirk same as Phil and Floyd has low reaction time.
    • Players AVI and Anant have their special qualities.Watch out for them.
    • Ace with his Krieg 550 commando is for me the best choice in your squad for long distance combats.
    • Duke is Special! WATCH OUT
    • The villan is none other than Osama bin Laden that too with his own Skin(Thanks to ankh).He will show surprise entries at different parts of the mission (EVEN in Easy Mode). BEWARE.
    Download

    See More

    NOTICE

    Those who Download the file before 3:00 pm 14/2 may face problems with Osama skin.In that casE,try downloading again from below or separetly get Osamt.mdl from here.

    Proposed

  • I will work on a counter strike bot profile editor (and even a Mission Pack Creator) in the future.Stay Tuned!



  • Tuesday, February 12, 2013

    Windows Play 1.0

    Windows Play

    This program (made in AHK) will enable playing .mp3 files directly in Windows Explorer OR Desktop.


    All you have to do is press Ctrl + P when you have selected a file and that's it.You will notice the song starting magically with no windows..nothing

    Also as madplay (Thanks to rarewares.org) is low in size (128 kb) it takes no time to start up.So you will notice and enjoy no-time playing of your songs.
    This can prove very useful if you have a slow pc that takes seconds to start Windows Media Player or Anything different for playing.
    I have added option to notify you at times where the format you are trying to open is unsupported or for some reason cant be played.

    EVERYTHING ELSE IN README FILE.

    Download Program (Recommended)

    Download Script (Ahk)

    See Clipjump - The Ultimate Clipboard Manager

    Sunday, February 10, 2013

    Everything Integration with Autohotkey

    Everything Integration with Autohotkey


    See more scripts

    You might have used Windows Search in windows 7.
    How it is??
    Fast .. OR ..Slow

    I am Sure many of the users would think the "right option" to be theirs..Actually windows 7 uses Windows Index to search faster.But the index uses lots of memory and captures huge amount of Hard Disk space.
    So many of the care-taking,repairing or diagnostic Softwares prefer to Close Windows index to speed up system.This actually speeds up system but leaves you with a very SLOW search.

    Luckily,there are many Third-Party Search Engine Softwares which have faster search rates and lower memory consumption.
    One of the Lot is the extremely Light and Ultra-Powerful  Everything

    Though Everything has a Explorer integration option,its Explorer integration option is not that effective.
    For Example--

    Lets Suppose you have opened S:/Songs and you have to Search it In Everything,you just can't type in the search box and Search. Instead you will have to go back to S: Dir and Right click on Songs Folder. Then from the Context menu Select "Search Everything".


    This can be way too tiring if you search on a regular basis.
    Using Autohotkey,here's a script which can make it way too easy..
    Here it is:--



    Done:
    Add your Everything path in 2nd line.
    when you press "F6" you will have a Everything window where you can Search just in that folder.
    When you press F6 and the window appears,type in query and you are done.

    In case you are unsure about the above steps and need a ready-made sort of the whole thing (Everything + Script.'s exe)  or you are a non-autohotkey user,leave a comment and i will upload a compiled form of Script.Then make sure to re-check the page after some time.

    Saturday, February 9, 2013

    Autohotkey Beginners Tutorial

    Autohotkey: A Beginner's Move On


    Autohotkey is a Superpowerful Scripting Language available at www.autohotkey.com
    It's more Powerful than you can imagine.Believe me,the day I started using it I was amazed how I was using a PC in this universe without Autohotkey. I mean it's so so easy,yet so effective and fast.

    By it ,you can


  • Automate almost anything by sending keystrokes and mouse clicks. You can write a mouse or keyboard macro by hand or use the macro recorder.
  • Create hotkeys for keyboard, joystick, and mouse. Virtually any key, button, or combination can become a hotkey.
  • Expand abbreviations as you type them. For example, typing "btw" can automatically produce "by the way".
  • Create custom data-entry forms, user interfaces, and menu bars. See GUI for details.
  • Remap keys and buttons on your keyboard, joystick, and mouse.
  • Respond to signals from hand-held remote controls via the WinLIRC client script.
  • Run existing AutoIt v2 scripts and enhance them with new capabilities.
  • Convert any script into an EXE file that can be run on computers that don't have AutoHotkey installed.

  • So Lets Start

    Well the autohotkey tutorial is a good place to learn autohotkey.It comes as a fair book full of all Hotkeys and commands that you need to know.It's well structured and full of links and examples that will help you get moving. But if you want a quick guide that can increase you productivity with autohotkey in no time this is for you.

    You can start with creating shortcuts for opening files and documents.

    !n::
    ; a SEmicolon (;) is used for comment.
    ;Here ! stands for Alt and 'n' Is Key N
    run notepad.exe
    ;runs notepad
    return  
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;   
    ^d:: ;  ^ is ctrl
    run d:/my docs/mydoc.doc  
    return
    

    You can also use Autohotkey as a Text Expander

    ::btw::by the way
    ;This expands Btw to "by the way" when followed by a Space,comma or semicolon.
    ;Also you can use "Send" command to create hotstrings. !n:: run notepad.exe Winwait, ahk_class Notepad ;Winwait waits for the Specified window to appear. Send Hi, There ;Here Alt + n runs notepad and waits for it. When the window opens it prsses or Writes Hi, There return

    Use #Ifwinactive command to make same hotkeys perform different functions in different windows.

    #IfWinActive ahk_class CabinetWClass   ;Cabinetwclass is class name for windows explorer 
    ;Use "WINDOWS SPY" utility in Autohotkey Pacakage for getting class name for different windows.
    {
    !n::
    run notepad.exe
    return  
    }   
    #IfWinActive ahk_class notepad    ; ahk_class notepad is notepad window  
    { 
    !n::
    run d:/mydoc.doc 
    return   
    }



    Okay, what the above program does is that it opens notepad when you press alt+n in windows explorer and opens mydoc.doc when you press alt+n in Notepad. But, here when when you press Alt+n in paint nothing will happen. Alt + n will have no effect in any other window.

    You can Remap Keys...


    Suppose you have a keyboard where you have your "T" key or any other key/keys missing and you dont want to get to the mechanic and lose some bucks only for that mere purpose. Here comes Autohotkey to the Rescue.Remapping in Ahk is as easy as creating a Ms word Document. Have a Look---

    End::T
    ;This will make End Key behave as "T" [HArdly any one uses End]
    Home::A
    F11::Space
    Remapping may not work in certain games and applications & keys might go back to their original functions.

    Perform same Tasks again and again ..


    Suppose you have to scroll down a large folder of Photos or files such slowly that you can watch them.
    Loop 1
    {
    Send {Down}
    Sleep, 1000   ;Sleep is used to delay execution.Here 1000 denotes time in ms.  1000 ms = 1 sec
    }                           
    ;The down key will be pressed 100 times
    !a::                 
    Exitapp             ;Here Alt + a when pressed will exit the script conatining the loop and Scrollong Down (here) will Stop.
    return

    You can increase that 100 to as much as you like.
    Use an Exitapp command as above to end scripts when you like.

    Tips::

    • Have a look at the given Autohotkey manual.It is your utlimate guide into the world of Autohotkey.
    • If you use Autohotkey and create custom scripts,it is advisable that you create a single script and not many scripts for each function.This is because it is seen that a standard Ahk Script consumes some 6mb's of Ram or close to 6mb's when it runs,Also the size of a script has minimal impact on Ram.So if you run 4 scripts for 4 functions or so they will cost you 6 X 4 = 24 mbs of RAM.So it is highly recommended to have a SINGLE Master Script.
    • Download Scite for Autohotkey -- A Gui IDE for Autohotkey.
    • Always add an EXITAPP command to your Script.
    • Always end a Hotkey declaration with" Return".
    • Use { .... } to specify regions of #Ifwinactive and other condition based commands
    • Go here to see Some of my special AHK Scripts which I am SuperSure you will enjoy.

    Friday, February 8, 2013

    Artificial Ahk

    Artificial AHK

    Ahk Package that you can carry anywhere you go. Use it to run Ahk Scripts on a computer without Ahk..


    Features

    • Enables you to run Autohotkey Scripts on a computer with no AutoHotkey.
    • You can Save ahk Scripts in .bat file to launch the script without opening Artificial AHK.
    • .bat files can be moved or placed in the host computer anywhere as long as Artifical AHK exe and Ahk.exe are kept constant.
    Also See exe2ahk gui

    Download with Script -- Here

    Sunday, February 3, 2013

    Exe2ahk Gui Final

    Exe2Ahk Gui Final Released For Ahk Basic


    How to Use

    Unzip
    Make Sure to keep the three, exe2ahk.exe exe2ahk gui.exe and readme.txt in Same Folder.
    Run exe2ahk gui.exe !!
    Browse for Source exe,Browse for destination ahk,Enter Password if required and click Run.

    New

    Option to quickly toggle masked Password ON/OFF
    Try Dragging an Exe into the Exe Field.
    SMARTER!

    Features

    >Allows you to use exe2ahk in a GUi Environment.
    >Added Option to select where to save .ahk file.
    >Has the ability to notify you when your ahk is not extracted i.e you are either hitting a Worng Password Or the exe isn't decompilable

    Issues and Important Points

    • Make sure your script is compiled with ahk basic compiler.[Not AHK_L]
    • Make Sure you write the [correct Password] before decompiling.
    • If no Destination Path of Script will be Selected, *.ahk will be extracted in the folder of the exe.
    • If nothing is typed in Password field,it means Exe has no Password.
    • In some computers,if you are saving .ahk on Desktop you may face Problems when you open the already specified location using the Program.

    Bug Fixes

    Spaces are no longer an issue as in previous versions.

    Version Final - DOWNLOAD

    Download a Collection of Compiled Scripts to make sure that your that your exe2ahk is working correctly.
    Each has a different password with Spaces,Caps changes..etc

    ENJOY!

    Saturday, February 2, 2013

    Exe2Ahk Gui v2.0

    Exe2Ahk Gui v2.0 Released


    Bug Fixes

    Spaces are no longer an issue as in previous versions.

    How to Use

    Unzip
    Make Sure to keep the three, exe2ahk.exe exe2ahk gui.exe and readme.txt in Same Folder.
    Run exe2ahk gui.exe !!
    Browse for Source exe,Browse for destination ahk,Enter Password if required and click Run.

    Features

    >Allows you to use exe2ahk in a GUi Environment.
    >Added Option to select where to save .ahk file.
    >Has the ability to notify you when your ahk is not extracted i.e you are either hitting a Worng Password Or the exe isn't decompilable

    Issues and Important Points

    • Make Sure you write the [correct Password] before decompiling.Usually Compiled exe's have long passwords so I have not masked the characters of the Password Field.
    • If no Destination Path of Script will be Selected, *.ahk will be extracted in the folder of the exe.
    • If nothing is typed in Password field,it means Exe has no Password.
    • In some computers,if you are saving .ahk on Desktop you may face Problems when you open the already specified location using the Program.

    Version 2.0 - DOWNLOAD