PWE_PRC8/_module/nss/sc_db_pla_skill.nss

14 lines
236 B
Plaintext
Raw Permalink Normal View History

2025-04-03 10:29:41 -04:00
#include "sc_dart_include"
int StartingConditional()
{
int skill_diff = calcAttackBonus(GetPCSpeaker()) - calcAttackBonus(OBJECT_SELF);
if (skill_diff > 2) {
return TRUE;
}
else {
return FALSE;
}
}