Note: LucasForums Archive Project
The content here was reconstructed by scraping the Wayback Machine in an effort to restore some of what was lost when LF went down. The LucasForums Archive Project claims no ownership over the content or assets that were archived on archive.org.

This project is meant for research purposes only.

Bot-making Tutorial

Page: 1 of 1
 pitched_black
04-06-2002, 12:28 PM
#1
This is small, not-so-indepth tutorial at making mp bots.

To make a bot, first you need a working multiplayer skin. After that, you need to make a few extra files.

First you have to make the bot personality. Open /botfiles folder in the pk3 file and copy one of .jkb files. Rename it to the name of your bot and open with any text editor and edit it to your preferences.
Save this file into a botfiles directory in your mod.

Next, you have to make a .bot file. Make a new text file and name it the same name as your .jkb except .bot. Inside this file is where you tell Jedi Outcast that there is another bot.
An example:
{
name "name of your bot"
model usually the name of the folder
color1 lightsaber colour(0=red;4=green)
personality /botfiles/name of your .jkb file
}
End the file right before this line.
A completed example of a .bot file:
{
name "reborn_boss"
model reborn_boss
color1 0
personality /botfiles/reborn_boss.jkb
}
Remeber to put this file in a /scripts driectory.

So altogether, you should have:
*.pk3/models/players/your model
*.pk3/scripts/*.bot
*.pk3/botfiles/*.jkb

Hope this helps some people out there! If you have any questions, I'll do my best to answer them all!
 Oni Kage
04-06-2002, 9:45 PM
#2
You saved me alot of time investigating on my own :D

May the Force be with you,
:fett: Oni Kage
Page: 1 of 1