mirror of
https://github.com/JezuzLizard/t4sp_bot_warfare.git
synced 2025-04-23 15:05:43 +00:00
179 lines
1.3 KiB
Plaintext
179 lines
1.3 KiB
Plaintext
bot_movetoobjective()
|
|
{
|
|
|
|
}
|
|
|
|
bot_movetoobjective_process_order()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bot_should_movetoobjective()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bot_movetoobjective_on_completion()
|
|
{
|
|
|
|
}
|
|
|
|
bot_movetoobjective_should_cancel()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bot_movetoobjective_on_cancel()
|
|
{
|
|
|
|
}
|
|
|
|
bot_movetoobjective_should_postpone()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bot_movetoobjective_on_postpone()
|
|
{
|
|
|
|
}
|
|
|
|
bot_movetoobjective_priority()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bot_train()
|
|
{
|
|
|
|
}
|
|
|
|
bot_train_process_order()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bot_should_train()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bot_train_on_completion()
|
|
{
|
|
|
|
}
|
|
|
|
bot_train_should_cancel()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bot_train_on_cancel()
|
|
{
|
|
|
|
}
|
|
|
|
bot_train_should_postpone()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bot_train_on_postpone()
|
|
{
|
|
|
|
}
|
|
|
|
bot_train_priority()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bot_camp()
|
|
{
|
|
|
|
}
|
|
|
|
bot_camp_process_order()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bot_should_camp()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bot_camp_on_completion()
|
|
{
|
|
|
|
}
|
|
|
|
bot_camp_should_cancel()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bot_camp_on_cancel()
|
|
{
|
|
|
|
}
|
|
|
|
bot_camp_should_postpone()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bot_camp_on_postpone()
|
|
{
|
|
|
|
}
|
|
|
|
bot_camp_priority()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bot_flee()
|
|
{
|
|
|
|
}
|
|
|
|
bot_flee_process_order()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bot_should_flee()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bot_flee_on_completion()
|
|
{
|
|
|
|
}
|
|
|
|
bot_flee_should_cancel()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bot_flee_on_cancel()
|
|
{
|
|
|
|
}
|
|
|
|
bot_flee_should_postpone()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bot_flee_on_postpone()
|
|
{
|
|
|
|
}
|
|
|
|
bot_flee_priority()
|
|
{
|
|
return 0;
|
|
} |