14 lines
236 B
Plaintext
14 lines
236 B
Plaintext
|
#include "sc_dart_include"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int skill_diff = calcAttackBonus(GetPCSpeaker()) - calcAttackBonus(OBJECT_SELF);
|
||
|
if (skill_diff > 2) {
|
||
|
return TRUE;
|
||
|
}
|
||
|
else {
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
}
|