Hey JV
I have a bot in a map that I want unarmed. In the AI paramaters window, I set his weapon as none but in the objective match game he spawns with a SMG. Would I set all his weapon priorities to 0 like you mentioned in the bot manual or is there an easier way to do this? Thank you and thanks for the bots, Goat
Weapon Priorities
Moderator: Moderators
Easiest way:
Create a .scr file in the global/jv_bots/ folder, for example goatweapon.scr.
In the file, write:
Then in your map's script type
All bots will be unarmed now.
Create a .scr file in the global/jv_bots/ folder, for example goatweapon.scr.
In the file, write:
Code: Select all
setup:
// no setup
end
shutdown:
// no shutdown
end
getweapon:
// always the same weapon
end
setweapon:
self weapon none
end
Code: Select all
level.jvbot_libweapon = goatweapon
-
MC Disgruntled Goat
- Lance Corporal
- Posts: 22
- Joined: Mon Sep 02, 2002 9:58 pm
