| |
|
Topic Title |
Replies |
Topic Starter |
Views |
Last Action |
| Announcements |
 |
|
Announcement: Donate to Ghoztcraft and Join VIP |
- |
XGhozt |
18449 |
--
Last post by: XGhozt
|
| Forum Topics |
 |
|
|
0
|
XGhozt |
1,374 |
31st December 2006 - 12:10 AM Last post by: XGhozt |
ShowCDKey/ChangeCDKeyVersion: 1.0.0
Author: D2event.net
Category: Diablo II
Screenshot:Description:use this to change your diablo 2 cd key without re-installing!
Now, you can view your cd-keys and make .mpq files.
Download The FileSubmitted by XGhozt, on Dec 31 2006, 12:10 AM
 |
|
|
0
|
Renegade Angel |
137 |
31st December 2006 - 12:06 AM Last post by: Renegade Angel |
No-CD CrackVersion: --
Author: Unknown
Category: 1.20b
Screenshot:Description:No cd needed!
Run Warcraft III with out the disk.
Download The FileSubmitted by Renegade Angel, on Dec 31 2006, 12:06 AM
 |
|
|
0
|
XGhozt |
183 |
31st December 2006 - 12:05 AM Last post by: XGhozt |
Ziod PickitVersion: 1.0.0
Author: Unknown
Category: Diablo II
Screenshot:Description:Great plugin to grab items - like grabit in 1.09. Required D2 Loader.
Pace the dll in your diablo 2 folder!
Download The FileSubmitted by XGhozt, on Dec 31 2006, 12:05 AM
 |
|
|
0
|
Renegade Angel |
172 |
31st December 2006 - 12:01 AM Last post by: Renegade Angel |
Campaign Saved GameVersion: --
Author: Unknown
Category: 1.20c
Screenshot:Description:Unlocks Campaign levels.
Unlocks all levels in campaign mode. Just load the saved game.
Download The FileSubmitted by Renegade Angel, on Dec 31 2006, 12:01 AM
 |
|
|
0
|
Jordanv78 |
154 |
31st December 2006 - 12:01 AM Last post by: Jordanv78 |
Shaddow ProxieVersion: Unknown
Author: l2k-Shadow
Category: Starcraft Bots
Screenshot:Description:Scans and tests proxies.
Download The FileSubmitted by Jordanv78, on Dec 31 2006, 12:01 AM
 |
|
|
0
|
XGhozt |
263 |
30th December 2006 - 11:59 PM Last post by: XGhozt |
PacketSenderVersion: v1.2
Author: Sheppard
Category: Diablo II
Screenshot:Description:Packetsender will send this Bytes (atoh function created by Jan, thank you!)15 01 02 is the say packet, 6C is the ascii char l, 6F ascii char o.
How to use:
Open inject.exe click on Edit INI choose the spack.dll.
Make sure your spack.ini is in your Diablo 2 dir.
Then click on load, it will sends now all the packets in your spack.ini and
will then unload!
To Add packets on your own,
open the spack.ini, you'll found
[Packets]
Packets=3
1=1501026C
2=1501026C6F
3=1501026C6F6C
My Packetsender will send this Bytes (atoh function created by Jan, thank you!)
15 01 02 is the say packet, 6C is the ascii char l, 6F ascii char o.
Updated for 1.11b:
the new PacketSend function is D2Net #10020 ... the new wrapper is 0x6FB0DE40 (Fastcall)
Anti detection will added in the next version.
Download The FileSubmitted by XGhozt, on Dec 30 2006, 11:59 PM
 |
|
|
0
|
Renegade Angel |
199 |
30th December 2006 - 11:58 PM Last post by: Renegade Angel |
CD Key ChangerVersion: --
Author: Unknown
Category: 1.20c
Screenshot:Description:Change your cd key.
Change your Cd key w/o Installing the game again. This download has a cd key changer for Expantion and Non-Expantion.
Download The FileSubmitted by Renegade Angel, on Dec 30 2006, 11:58 PM
 |
|
|
0
|
Jordanv78 |
275 |
30th December 2006 - 11:58 PM Last post by: Jordanv78 |
BWCHARTVersion: Unknown
Author: bwchart peeps
Category: Starcraft Bots
Screenshot:Description:Tells you the stats of your replays like your apm (actions per minute).
Download The FileSubmitted by Jordanv78, on Dec 30 2006, 11:58 PM
 |
|
|
0
|
XGhozt |
144 |
30th December 2006 - 11:57 PM Last post by: XGhozt |
Bulk Trade HelperVersion: 1.0.0
Author: wcpyro
Category: Diablo II Bots
Screenshot:Description:Move 40 1x1 items, from your inventory to the trade screen.
I have written an autoit script to move 40 1x1 items, from your inventory to the trade screen. In the future I may update it to allow different sizes, such as 2x1 for Keys. Open the script, and it will run in the background like the act3 aura merc script.
Open a trade screen with someone, press Insert, and it will move all the 1x1 items at a fast rate. It will work in any Windows screen resolution, windowed or full screen, but your Diablo II must be in 800x600 mode. Press Delete to terminate. I hope it is as useful to you as it is to me.
Download:
Bulk Trade Helper
You can compile this AutoIt script here.
Source:
;Bulk Trade Helper by wcpyro
;This script must be run in 800x600 mode, due to the way that it moves the mouse.
;Thanks to Snarg for the Pause/Terminate functions from a3 Merc Script
AutoItSetOption("MouseCoordMode", 2) ;This way it works with any window placement, or full screen
Global $Paused
HotKeySet("{INSERT}", "TogglePause")
HotKeySet("{DELETE}", "Terminate")
While 1
Sleep(100)
Wend
Func TogglePause()
$Paused = NOT $Paused
For $Paused = 1 to 1 step +1
$xu = "432" ;This is the center of the first column of your inventory
$yu = "332" ;Same but of row
$xt = "112" ;Center of first column of trade screen
$yt = "331" ;Same yet again *gasp*
$times = "1"
$times2 = "1"
For $times = 1 to 4 Step +1
For $times2 = 1 to 10 Step +1
MouseMove($xu, $yu, 3)
MouseClick("Left")
MouseMove($xt, $yt, 3)
MouseClick("Left")
$xu = $xu + "29" ;Moves mouse forward 29 pixels
$xt = $xt + "29"
Next
$yu = $yu + "27" ;Moves mouse down 27 pixels
$yt = $yt + "27"
$xu = "432" ;Reset to first Column of items
$xt = "112"
Next
Next
EndFunc
Func Terminate()
Exit 0
EndFunc
Download The FileSubmitted by XGhozt, on Dec 30 2006, 11:57 PM
 |
|
|
0
|
Jordanv78 |
178 |
30th December 2006 - 11:54 PM Last post by: Jordanv78 |
CD Key TesterVersion: Unknown
Author: EUB Team
Category: Starcraft Bots
Screenshot:Description:Test your Starcraft Key to see if its Valid.
Download The FileSubmitted by Jordanv78, on Dec 30 2006, 11:54 PM
 |
|
|
0
|
XGhozt |
193 |
30th December 2006 - 11:54 PM Last post by: XGhozt |
Power upVersion: 1.52
Author: Snipeye
Category: Diablo II Bots
Screenshot:Description:This program allows you to hit a single key in a game and execute your various powerups like battle orders/energy shield/holy shield etc.
You can have 2 different sequences/hotkeys. Run this script once and it stays in the background. It will wait/not do much until you are in a game and actually want a hotkey. This program will work either running D2 in window or full screen mode. You must obviously be somewhere you can cast the skills. I.E. if Battle Orders you must not be in town etc. You can run this program either before or after you get in a game, or even bring up D2.
How it works in a nutshell: Simply run the program. It hides in the background. Now whenever you want to rebuff/refresh, simple hit the key you defined in ActionKey in the .ini file and wait for the sequence to finish, then resume your activities.
Note: if you have any support issues, when you ask, include your powerup.ini file and powerupdebugini.log file with the inquiry. It is hard enough to troubleshoot remotely even with this information but almost impossible without it.
AutoIt Version: 3.x
Language: English
Platform: Windows XP
powerup.au3
Written by: Snipeye [snipeye@golfc.com]
Download The FileSubmitted by XGhozt, on Dec 30 2006, 11:54 PM
 |
|
Madd0x
File Updated: 31 Dec 2006
|
0
|
Jordanv78 |
177 |
30th December 2006 - 11:05 PM Last post by: Jordanv78 |
Madd0xVersion: 1.03
Author: Unknown
Category: Starcraft Bots
Screenshot:Description:A spambot for SC
Setup:
------
1. Unzip the files WinningBot.exe, config.ini, and madchat.dll to a directory
2. Create the hash file folders inside your bot directory. Hash files for
Starcraft, Brood War, and Warcraft II: BNE are to be placed in STAR, SEXP,
and W2BN, respectively. You can find the hash files in your SC/WAR2 directory.
They are: StarCraft.exe, battle.snp, and storm.dll for SC/BW and
Warcraft II BNE.exe, battle.snp, and storm.dll for War2.
3. Open config.ini, fill out as many bot profiles as you want to load. Here
are the valid game results: WIN, LOSS, DRAW, and DISC. If you do not want
to load on a proxy then leave proxy= blank.
4. Go to the global settings and change them as needed.
Global Setting Explantions
------------------------------------------------------------------
MaxLoad - Number of bots to load.
Product - Product ID: STAR, SEXP, or W2BN.
Server - Server to connect to.
GameType - Melee, ladder, or ironman.
WaitTime - Number of seconds to wait in the game.
DNDMessage - Do not disturb message (Can be empty).
Reconnect - Reconnect on disconnect, 1 - yes / 0 - no.
MaxResults - Number of games to play, if this is set to 0.
then the bot will run forever.
LoadMap - Map profile to load.
------------------------------------------------------------------
If you choose to create a melee game you can set all the
game results to WIN, but if you choose ladder you will need
at least one bot with a result of LOSS. I haven't tried ironman
ladder yet, use that at your own risk.
Winning Bot Change Log
------------------------
/*---------------------.
| - is bug fix |
| + is new feature |
| * is anything else |
`---------------------*/
[> 1.03
- IronMan ladder now works
- Fixed a bug where some socks4 proxies would not connect
* Updated readme
[> 1.02
+ Added a system to load different configuration files
+ Added a new way to logon bots
* Updated readme
[> 1.01
+ The bot will now prompt upon exiting
+ Added menu item to return the current version
+ Added cdkey, username, password, and hash file checking
- Fixed a bug where pressing connect while connected would give a run-time error
- Fixed a bug where multiple clients would not connect properly
* Added a changelog, fixed up the readme
* Made ironman more similar to the warcraft2 client (still untested)
* The MaxResults field now works
Download The FileSubmitted by Jordanv78, on Dec 30 2006, 11:05 PM
 |
|
|
0
|
XGhozt |
151 |
30th December 2006 - 11:05 PM Last post by: XGhozt |
EasyBotVersion: Beta
Author: Jan Miller
Category: Diablo II Bots
Screenshot:Description:EasyBot Beta is a free plugin for EasyPlay Free 2.1+ and EasyPlay Gold 2.1+. EasyBot is a fully automated bot that will log onto battle.net, select a character, make a game, move through town, heal, stash and kill Mephisto.
Features:
-Stash items from anywhere in town (specify speed/stash type)
-Precast one weapon slot one and two
-Kill Mephisto (moat trick and regular tanking)
-Heal at ormus regularly
-Heal at ormus if attack skill unavailable for x miliseconds
-Refill townportals
-Chicken to town/exit game
-Logfile
-etc.
Requirements:
-WindowsXP+ ONLY
-Diablo II: Lord of Destruction v1.11b
-EasyPlay Free 2.1+ or EasyPlay Gold 2.1+
Installation:
1) Install EasyPlay and learn to use it properly
2) Start Diablo II and only EasyPlay. Now join a battle.net game with the character and difficulty settings you wish to use the bot with (if your Diablo II crashes, check the MODSIGS_INSTRUCTIONS.txt file in EasyPlay folder)
3) Move to act 3 town.
4) Select the left and right attack skills and type ".spell" as chat message. EasyPlay will print the numeric values of your left and right attack skill. Note down these numeric values. Do the same for all the precast skills you want to use.
5) Close Diablo II and open easybot.ini
6) Set the "LeftAttackSkill" and "RightAttackSkill" and "PreCast (..)" options to the numeric values that you retrieved with the ".spell" command.
7) Set the other options ("Account" and "Password" should be enough in most cases)
Copy "easybot.dll", "easybot.ini", "items.ini" and "houdini.ini" into your EasyPlay folder (replace the old houdini.ini file)
9) Now start Diablo II in window mode* and execute EasyLoad.exe while being in the main menu. The bot will now start running. If you want to run it in minimized mode, make sure the "ForceExecution" option in easybot.ini is set to TRUE.
*to start Diablo II in window mode make a shortcut of the executable and append the "-w" parameter to the pathway
It may sometimes help to use D2Loader if you have troubles loading EasyPlay.
Tips & Tricks:
Here is a few things you might want to consider:
1) Set the "ChickenMode" in easyplay.ini to make TP's when chickening. As soon as EasyPlay chicken's via TP in the attack sequence, EasyBot will automatically walk to Ormus, heal, and then continue the attack against mephisto.
2) Set the "SaveLastGame" and "SaveLastPass" options off. They may confuse the bot when creating games.
3) If you're having problems picking items after teleporting to them, increase the "InitDelay" in the items.ini from 150 ms to maybe 500 ms.
4) If you're having problems picking items after teleporting to them, you can simply turn the teleport feature off. As easybot will teleport to mephisto corpse after his death, it's not really necessary to use teleport for picking items. To disable teleport to pick items, simply set the "TeleMinRange" option in the items.ini main section to a very high value. Ex: TeleMinRange=100;
Note: It's easier to set the TeleMinRange high, because you don't need to change all the "Teleport=TRUE" settings for each item.
Known bugs/errors:
Changes:
_________
EasyBot v1.3 (22/01/2006)
-Added "ForceHeal" option
-Fixed small bug with the cycle count (for static gamenames)
EasyBot v1.2 (21/01/2006)
-Added "HealLifeNotFull", "HealManaNotFull", "HealMercNotFull" options
-Added "WaypointMaxRetries" option
-Added "DoRandomGame", "StaticGameName", "DoRandomPass", "StaticGamePass" options
-Stasher now only opens / closes stash if stash required
-Waypoint window now closes properly, after taking waypoint
-Fixed various other bugs
EasyBot v1.1 (14/01/2006)
-Fixed a takewaypoint bug
-Fixed a bug that didn't properly quit the game and start next cycle
-Fixed various other bugs
EasyBot v1.0 (13/01/2006):
-Public Beta Release
Download The FileSubmitted by XGhozt, on Dec 30 2006, 11:05 PM
 |
|
|
0
|
XGhozt |
287 |
30th December 2006 - 11:02 PM Last post by: XGhozt |
Andrew30p spambotVersion: 2.1
Author: D2event.net
Category: Diablo II Bots
Screenshot:Description:A simple bot use for spamming.
Changes:
v2.1
-made it so that diablo 2 didn't look all buggy. also caused errors with mouse movement after you turn the bot off
-fixed the time delay so that 1000 no longer meant 1 second
If there are any problems with this bot please e-mail me at Andyp3210@msn.com
Download The FileSubmitted by XGhozt, on Dec 30 2006, 11:02 PM
 |
|
|
0
|
XGhozt |
212 |
30th December 2006 - 11:00 PM Last post by: XGhozt |
D2sitterVersion: Unknown
Author: D2event.net
Category: Diablo II Bots
Screenshot:Description:DCSitter is a Clientless IPFinder bot created by LivedKrad.
Use this file to get other's ip address's
Download The FileSubmitted by XGhozt, on Dec 30 2006, 11:00 PM
 |
|
|
0
|
XGhozt |
244 |
30th December 2006 - 10:15 PM Last post by: XGhozt |
MulePermer 3bVersion: V3.02
Author: D2event.net
Category: Diablo II Bots
Screenshot:Description:Another bot for Diablo II
*** FireFly's (aka FireFlyPower) MulePermer V3.02 Beta ***
**************
Http://mulepermer.d2event.net **************
Features:
* Automatically perm's one full account in ~16+ hours
* Automatically restart game if some errors come up. (Example: disconnection in game...)
* Automatic selection of chars that need to be permed
* You can add multiple accounts to be permed (If one account is permed it will perm next one)
* Use end button to terminate bot
* Bot have Error logging and screenshot (you can enable/disable this future)
Configure Mule.ini and run MuleSetup.exe before using the bot.
The Diablo 2 screen resolution in game must be set to 800 * 600 resolutions
You must have first character with expiration! (New char)
Instruction:
Start MuleSetup.exe
Input how many accounts you planning to perm.
For each account provide account name and password.
You might need run colour setup if bot does not work properly.
Note: By default bot ready for 32bits colour desktop.
Colour setup:
Note: Computer will beep after each step is completed.
Step 1
Wait for game to load (try skip movies) then press any key so all buttons appear then press Alt&0
Step 2
When you at battle.net login screen press Alt&1
Step 3
Make sure character highlighted and OK button NOT grey out, press Alt&2
Step 4
When you in pre-chat window press Alt&3
Step 5
After mouse clicked create button in pre-chat screen press Alt&4
Step 6
When your character in a game press Alt&5
Note: Do not use other 3rd party programs for your safety. It will reduce risk to get you banned.
Download The FileSubmitted by XGhozt, on Dec 30 2006, 10:15 PM
|
|
|