mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-29 23:15:55 -04:00
22 lines
561 B
Plaintext
22 lines
561 B
Plaintext
|
|
include library.combat;
|
|
include library.sui;
|
|
include library.quests;
|
|
include library.ai_lib;
|
|
include library.money;
|
|
include library.chat;
|
|
include library.pclib;
|
|
include library.vehicle;
|
|
include library.ship_ai;
|
|
|
|
trigger OnShipInternalDamageOverTimeRemoved(int chassisSlot, float damageRate, float damageThreshold)
|
|
{
|
|
obj_id pilot = getPilotId(self);
|
|
|
|
if (pilot != null)
|
|
{
|
|
sendSystemMessageTestingOnly(pilot, "jwatson_ship IDOT removed slot=" + chassisSlot + ", damageRate=" + damageRate + ", threshold=" + damageThreshold);
|
|
}
|
|
|
|
return SCRIPT_CONTINUE;
|
|
} |