PWE_PRC8/_module/nss/sc_db_pla_skill.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

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;
}
}