12 lines
262 B
Plaintext
12 lines
262 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oDamager = GetLastDamager();
|
||
|
|
||
|
int nDamageType = GetDamageDealtByType(DAMAGE_TYPE_FIRE);
|
||
|
if(nDamageType >= 1)
|
||
|
{
|
||
|
ExecuteScript("suicidethentil", OBJECT_SELF);
|
||
|
DelayCommand(0.5, ExecuteScript("suicidethentil", oDamager));
|
||
|
}
|
||
|
}
|