Register for free, and make this box disappear!

Welcome to the BF Forums! Register Now, It's Free!


Welcome to the BF Forums; your source for the latest video game news, strategies, discussions, and resources. Join over 66,000 like-minded gamers to chat about your interests in our community.

You are currently viewing the forums as a guest user, which limits your access to certain content, contests, downloads, and more. By joining our free community, you will be able to respond in discussions/articles, contact members privately (PM), participate in regular-scheduled contests, see less advertisements, and have access to many other features. Registration is quick, easy, and completely free.



Have your questions answered. Share your thoughts about a topic. Take 2 minutes, Register Now!
BattleForums.com Forums > Diablo > Diablo General > Diablo Hacking

We're Half-Way There!! - BF Lotto: $50 Ebay or Amazon Gift Card - A Single Click is All It Takes...

Reply
 
Thread Tools Display Modes
Old 07-13-2003, 05:04 PM   #1 (permalink)
BattleForums Junior Member
 
Join Date: Jul 2003
Posts: 134
How To config Your d2jsp!

*******All This Info Has Came From The D2JSP website!*******


OK i know everone im a n00b so dont flame me because i want to help other n00bs lol, ok heres how d2jsp works.


d2jsp isn't a very hard program to setup, as some people lead you to belive. There is a few files that need edited/checked over to make sure they are setup correctly. This section's purpose is to guide you through the entire setup proccess, from downloading to running your bot the first time. We will also cover some other issues like multibotting (more then one bot on the same computer). Please select the topics below that you would like more help on.

Downloading - Covers where to get d2jsp and what to watch out for.

Installation - What to do once you've downloaded d2jsp.

Configuration - Once you've installed d2jsp, you WILL need to configure it.

Script installation - Instructions on how to install a script.

1) Downloading, go to http://www.d2jsp.org/index.php?a=wik...=djspreleases& to download the safest and best version of d2jsp

2) Installation, To install d2jsp after you have downloaded it, simply install it in the same directory you have Diablo II in or in your Program Files section(recommended).
C:\ Program Files \ Diablo II
C:\ Program Files \ Diablo II \ d2jsp

That is an example, but it may vary, depending on where you installed d2jsp.

You can do this, either by selecting this as the directory you want to install it while using the installer, or unzipping the .zip file to that location.

3)Configuration, now this is what gets tricky, There are 2 core related files that you must edit in order to set d2jsp up.

d2jsploader.ini is the file that contains settings for your account, what character you plan on using ect.

default.d2j is the file that controls what scripts your character will run.

OK well talk about configing the D2jsploader first,Accountname=
This is the account name you wish d2jsp to use to log in with.

Password=
This is the password for the account that you wish to log in with.

Realm=
This selects your realm. 0 simply logs into whatever realm you logged into last. If your char is on west, and you played in east, it will keep trying to log into east. Make sure that if you are using 0, to keep it in the correct realm. Using a number 1-4 will pick the realm that is in that slot on your list.

D2path=
This is the exe you use to start up the game. d2jsp will start the game in the same fashion you do.


D2jsp=
This is where the d2jsp.dll is on your computer. If you are unsure, find it, right click and select properties - this will tell you where its at

[My First Sorc] - This is the part that contains settings specific to the character you wish to run.

CharacterLocation=
This is the location 1-8 of the character you wish d2jsp to use. Reference the diagram to find the correct number.

Difficulty=
Set this to the difficulty you want the bot to run in.

GameName=
Set this to the name you want to be used when creating the game.

GamePass=
Set this to your password. If you do not specify a password, none will be used.

Enabled=
Set this to 1 to enable the character whose settings are defined in this section. 0 to disable. This is usefull if you have multiple accounts defined. If you dont know what this means, leave it at 1

Realm=
This is the realm you want to choose. Again 0 is skip to bnet - the last realm that you picked. 1-4 is for a specific realm, with the number corresponding to the one on the list.

Last edited by Nogoshema_123; 07-13-2003 at 05:11 PM.
Nogoshema_123 is offline   Reply With Quote
Beitrag Sponsored Links

__________________
Ads suck! Take 2 minutes to register for your free account, and GET RID OF THESE ADS!
Old 07-13-2003, 05:08 PM   #2 (permalink)
BattleForums Junior Member
 
Join Date: Jul 2003
Posts: 134
OK now well talk about configing the default file manualy, Fust follow this instruction....

How to manually configure your default.d2j
So you are a do it yourself kind of person eh? Well be warned, 1 simple mistake in this file causes all kinds of problems, so be carefull, and pay attention! I will give you a step by step to creating your own default.d2j.

First, find your default.d2j in d2jsp/scripts and open it with notepad. Delete all but one of the case / load statements - these are all examples, and can add to confusion. This is what your file should look like -

function main() {
switch(me.name) {

case "MyCharName":
load("bots/TheBot.d2j");
break;

}
}

When this is what the default.d2j looks like under the function main() part, there are only 2 things you need to do.

MyCharName is your character name. This is case specific, and must be spelled perfectly!

PindleRox / PinDLeROx / PindleROX are all different entries!! Also note the difference between an underscore _____ and a minus sign or dash ------- If you do not spell your characters name 100% correct, and use the proper case, it will not work.

TheBot is where your script name goes. Here are a few good examples -

load("bots/pwndefault.d2j"); (note the semicolon at the end of the line)
load("bots/IceCountessScript.d2j");
load("bots/scav_multi_mf.d2j");

Missing a " ( ) / or using a name that is misspelled will cause this file not to work, so be carefull here!

For each different character you want to add, this is what you will add for that character -

case "MyCharName":
load("bots/TheBot.d2j");
break;

This can be done for as many different characters as you want -

function main() {
switch(me.name) {

case "MyCharName":
load("bots/TheBot.d2j");
break;

case "MyCharName":
load("bots/TheBot.d2j");
break;

case "MyCharName":
load("bots/TheBot.d2j");
break;

case "MyCharName":
load("bots/TheBot.d2j");
break;

case "MyCharName":
load("bots/TheBot.d2j");
break;

}
}

Each entry defines a new character, and says what bot to use for that character. This is also the same way you set up this file for multiple bots, as this file simply recognizes which character you are using, and loads the right script. If you have 2 characters, define them both and even if they are both running at the same time, it will pick the script you told it to!

Now to config your file For n00bs,just dl one of these 2 files and replace it with ur default file and rename it to default

http://www.d2jsp.org/index.php?a=wik...ssdsdefaultdj&

or

http://www.d2jsp.org/index.php?a=wik...uarsdefaultdj&
Nogoshema_123 is offline   Reply With Quote
Old 07-13-2003, 05:10 PM   #3 (permalink)
BattleForums Junior Member
 
Join Date: Jul 2003
Posts: 134
Now this is the easy part,

Script installation
To install a script, first download the script. You will get a zip file. The zip file will contain several folders, and every folder coresponds to a folder in your scripts folder. Simply unzip to scripts, and overwrite old files, or manually copy the files into the folder they belong in.

For example, if the zip file has a folder in it called bots (doh! hehe)then whats in it, goes in the bots folder, found in scripts. Pretty straight forward.

**EXAMPLE**EXCTRACTION**
c:\program files\Gshock\d2jsp\scripts


*******All This Info Has Came From The D2JSP website!*******
PLz dont tolk :madatu :madatu :madatu PLz dont tolk

Last edited by Nogoshema_123; 07-13-2003 at 06:41 PM.
Nogoshema_123 is offline   Reply With Quote
Old 07-14-2003, 03:09 AM   #4 (permalink)
BattleForums Junior Member
 
Join Date: Jul 2003
Posts: 134
Do it

Just do it quake 3 style and dont tolk about it :madatu bec thats how lucifer dose it :lucifer Bam!:unlucky
Nogoshema_123 is offline   Reply With Quote
Old 07-14-2003, 05:42 AM   #5 (permalink)
Registered User
 
Join Date: Jun 2003
Location: Atlanta
Posts: 239
or u cud read the stickeys
plexuspunx is offline   Reply With Quote
Old 07-14-2003, 11:05 PM   #6 (permalink)
BattleForums Junior Member
 
Join Date: Jul 2003
Posts: 134
This is for ppl who are too laze to read it or find it
__________________
Nogoshema_123 is offline   Reply With Quote
Old 07-14-2003, 11:35 PM   #7 (permalink)
BattleForums Senior Member
 
Misterwhippy's Avatar
 
Join Date: Nov 2002
Location: Virginia
Age: 22
Posts: 2,773
Quote:
Originally posted by Nogoshema_123
This is for ppl who are too laze to read it or find it
Those people are blind bastards...
__________________
Misterwhippy is offline   Reply With Quote
Old 07-16-2003, 03:14 AM   #8 (permalink)
BattleForums Junior Member
 
Join Date: Jul 2003
Posts: 134
Do You KNow What! your right
__________________
Nogoshema_123 is offline   Reply With Quote
 
Reply

Get rid of all these ads! Take 30 seconds to register.

« Problems with Jed | What skills for pindle bot »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


All times are GMT +1. The time now is 04:30 AM.



Powered by vBulletin® Version 3.7.2 | Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0