mirror of
https://github.com/ChocoTaco1/TacoServer.git
synced 2026-01-20 00:24:49 +00:00
100 lines
2.7 KiB
C#
100 lines
2.7 KiB
C#
|
|
//-----------------------------------------------
|
||
|
|
// AI functions for Spawn CtF >> LCTF
|
||
|
|
|
||
|
|
function LCTFGame::onAIRespawn(%game, %client)
|
||
|
|
{
|
||
|
|
//add the default task
|
||
|
|
if (! %client.defaultTasksAdded)
|
||
|
|
{
|
||
|
|
%client.defaultTasksAdded = true;
|
||
|
|
%client.addTask(AIEngageTask);
|
||
|
|
%client.addTask(AIPickupItemTask);
|
||
|
|
%client.addTask(AITauntCorpseTask);
|
||
|
|
%client.addtask(AIEngageTurretTask);
|
||
|
|
%client.addtask(AIDetectMineTask);
|
||
|
|
%client.addtask(AIDetectRemeqTask); // -- Lagg... ---- 1-9-2003
|
||
|
|
%client.addtask(AIPilotTask); // BotPilot: Josef "Werewolf" Jahn
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function LCTFGame::AIInit(%game)
|
||
|
|
{
|
||
|
|
// load external objectives files
|
||
|
|
loadObjectives();
|
||
|
|
|
||
|
|
for (%i = 1; %i <= %game.numTeams; %i++)
|
||
|
|
{
|
||
|
|
if (!isObject($ObjectiveQ[%i]))
|
||
|
|
{
|
||
|
|
$ObjectiveQ[%i] = new AIObjectiveQ();
|
||
|
|
MissionCleanup.add($ObjectiveQ[%i]);
|
||
|
|
}
|
||
|
|
|
||
|
|
error("team " @ %i @ " objectives load...");
|
||
|
|
$ObjectiveQ[%i].clear();
|
||
|
|
AIInitObjectives(%i, %game);
|
||
|
|
}
|
||
|
|
|
||
|
|
//call the default AIInit() function
|
||
|
|
AIInit();
|
||
|
|
}
|
||
|
|
|
||
|
|
function LCTFGame::AIplayerCaptureFlipFlop(%game, %player, %flipFlop)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
function LCTFGame::AIplayerTouchEnemyFlag(%game, %player, %flag)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
function LCTFGame::AIplayerTouchOwnFlag(%game, %player, %flag)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
function LCTFGame::AIflagCap(%game, %player, %flag)
|
||
|
|
{
|
||
|
|
//signal the flag cap event
|
||
|
|
AIRespondToEvent(%player.client, 'EnemyFlagCaptured', %player.client);
|
||
|
|
// MES - changed above line - did not pass args in correct order
|
||
|
|
}
|
||
|
|
|
||
|
|
function LCTFGame::AIplayerDroppedFlag(%game, %player, %flag)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
function LCTFGame::AIflagReset(%game, %flag)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
function LCTFGame::onAIDamaged(%game, %clVictim, %clAttacker, %damageType, %implement)
|
||
|
|
{
|
||
|
|
if (%clAttacker && %clAttacker != %clVictim && %clAttacker.team == %clVictim.team)
|
||
|
|
{
|
||
|
|
schedule(250, %clVictim, "AIPlayAnimSound", %clVictim, %clAttacker.player.getWorldBoxCenter(), "wrn.watchit", -1, -1, 0);
|
||
|
|
|
||
|
|
//clear the "lastDamageClient" tag so we don't turn on teammates... unless it's uberbob!
|
||
|
|
%clVictim.lastDamageClient = -1;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function LCTFGame::onAIKilledClient(%game, %clVictim, %clAttacker, %damageType, %implement)
|
||
|
|
{
|
||
|
|
if (%clVictim.team != %clAttacker.team)
|
||
|
|
DefaultGame::onAIKilledClient(%game, %clVictim, %clAttacker, %damageType, %implement);
|
||
|
|
}
|
||
|
|
|
||
|
|
function LCTFGame::onAIKilled(%game, %clVictim, %clAttacker, %damageType, %implement)
|
||
|
|
{
|
||
|
|
DefaultGame::onAIKilled(%game, %clVictim, %clAttacker, %damageType, %implement);
|
||
|
|
}
|
||
|
|
|
||
|
|
function LCTFGame::onAIFriendlyFire(%game, %clVictim, %clAttacker, %damageType, %implement)
|
||
|
|
{
|
||
|
|
if (%clAttacker && %clAttacker.team == %clVictim.team && %clAttacker != %clVictim && !%clVictim.isAIControlled())
|
||
|
|
{
|
||
|
|
// The Bot is only a little sorry:
|
||
|
|
if ( getRandom() > 0.9 )
|
||
|
|
AIMessageThread("ChatSorry", %clAttacker, %clVictim);
|
||
|
|
}
|
||
|
|
}
|