mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2025-12-16 13:47:18 -05:00
18 lines
442 B
Plaintext
18 lines
442 B
Plaintext
#include "prc_feat_const"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
if (GetLocalInt(oPC,"WeapEchant1")==TEMPUS_ABILITY_IMPROVINV)
|
|
return;
|
|
|
|
if(!GetLocalInt(oPC,"WeapEchant1"))
|
|
SetLocalInt(oPC,"WeapEchant1",TEMPUS_ABILITY_IMPROVINV);
|
|
else if(!GetLocalInt(oPC,"WeapEchant2"))
|
|
SetLocalInt(oPC,"WeapEchant2",TEMPUS_ABILITY_IMPROVINV);
|
|
|
|
SetLocalInt(oPC,"TempusPower",GetLocalInt(oPC,"TempusPower")-2);
|
|
|
|
|
|
}
|