mirror of
https://github.com/Ragora/T2-BoL.git
synced 2026-01-19 19:14:45 +00:00
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
package Earth
|
|
{
|
|
function defineGeneralAI()
|
|
{
|
|
$Bot[0,"Name"] = "Jake Marvin";
|
|
$Bot[0,"Race"] = "Human";
|
|
$Bot[0,"Sex"] = "Male";
|
|
$Bot[0,"Skin"] = "Beagle";
|
|
$Bot[0,"Voice"] = "Male1";
|
|
$Bot[0,"VoicePitch"] = 1;
|
|
$Bot[0,"Team"] = 1;
|
|
$Bot[0,"Weapons"] = "Chaingun Disc Shocklance";
|
|
$Bot[0,"Pack"] = "AmmoPack";
|
|
$Bot[0,"Armor"] = "Light";
|
|
$Bot[0,"Objectives"] = false;
|
|
$Bot[0,"Ammo"] = "200 20 0";
|
|
$Bot[0,"RepairKits"] = 2;
|
|
$Bot[0,"Mines"] = 3;
|
|
$Bot[0,"Grenades"] = 3;
|
|
$Bot[0,"Transform"] = "442.099 -133.969 117.073 0 0 1 221.735";
|
|
$Bot[0,"Health"] = 1;
|
|
|
|
$Bot[1,"Name"] = "Luke Maverick";
|
|
$Bot[1,"Race"] = "Human";
|
|
$Bot[1,"Sex"] = "Male";
|
|
$Bot[1,"Skin"] = "Storm";
|
|
$Bot[1,"Voice"] = "Male3";
|
|
$Bot[1,"VoicePitch"] = 1;
|
|
$Bot[1,"Team"] = 1;
|
|
$Bot[1,"Weapons"] = "Blaster Shocklance";
|
|
$Bot[1,"Pack"] = "MiningTool";
|
|
$Bot[1,"UsePack"] = true;
|
|
$Bot[1,"Armor"] = "Light";
|
|
$Bot[1,"Objectives"] = false;
|
|
$Bot[1,"Ammo"] = "";
|
|
$Bot[1,"RepairKits"] = 2;
|
|
$Bot[1,"Mines"] = 0;
|
|
$Bot[1,"Grenades"] = 0;
|
|
$Bot[1,"Transform"] = "-1051.55 483.736 134.086 0 0 1 173.942";
|
|
$Bot[1,"Health"] = 1;
|
|
|
|
$BotCount = 2;
|
|
}
|
|
};
|