[FINAL] I need Help with bots
Posted: Sun Feb 04, 2018 11:52 pm
OK, so Ive done a lot of google searching and cant find an answer. Ive gotten pretty familiar with decorate, so that wont be an issue. I have already coded bots to use on my doomseeker server, but every time i add a bot with the defined name, it replaces it with a basic zandronum bot. I have custom skins for the bots i would like to use, but i cant figure out how to do this. My question is, how do i add the bots in the code below to my server, along with the skins.
Code: Select all
{
name = "Crash"
script = HUMANBOT
chatlump = BOTS1
gender = male
color = "6B 42 16"
railcolor = "red"
skin = base
class = "Doomguy"
revealed = true
accuracy = 3
intelect = 1
evade = 1
anticipation = 0
reactiontime = 3
perception = 1
chatfrequency = 1
}
{
name = "Phobos"
script = HUMANBOT
chatlump = BOTS1
gender = male
color = "FF 90 00"
railcolor = "red"
skin = Phobos
class = "Doomguy"
revealed = true
accuracy = 3
intelect = 1
evade = 1
anticipation = 0
reactiontime = 4
perception = 1
chatfrequency = 1
}
{
name = "BrutalDoomguy"
script = HUMANBOT
chatlump = BOTS1
gender = male
color = "94 00 00"
railcolor = "red"
skin = BrutalDoomguy
class = "Doomguy"
revealed = true
accuracy = 3
intelect = 1
evade = 0
anticipation = 0
reactiontime = 4
perception = 1
chatfrequency = 1
}
{
name = "DukeNukem"
script = HUMANBOT
chatlump = BOTS1
gender = male
color = "00 00 00"
railcolor = "red"
skin = DukeNukem
class = "Doomguy"
revealed = true
accuracy = 3
intelect = 1
evade = 0
anticipation = 0
reactiontime = 4
perception = 1
chatfrequency = 1
}