How To config Your d2jsp!

Nogoshema_123

Member!
Joined
Jul 9, 2003
Messages
134
Reaction score
0
Website
Visit site
*******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=wiki&s=4&p=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.
 

Nogoshema_123

Member!
Joined
Jul 9, 2003
Messages
134
Reaction score
0
Website
Visit site
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=wiki&s=4&p=krissdsdefaultdj&

or

http://www.d2jsp.org/index.php?a=wiki&s=4&p=njaguarsdefaultdj&
 

Nogoshema_123

Member!
Joined
Jul 9, 2003
Messages
134
Reaction score
0
Website
Visit site
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
 

Nogoshema_123

Member!
Joined
Jul 9, 2003
Messages
134
Reaction score
0
Website
Visit site
Do it

Just do it quake 3 style :shoot and dont tolk about it :madatu bec thats how lucifer dose it :lucifer Bam!:unlucky
 

NewPosts

New threads

Top