Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
16 lines
330 B
Plaintext
16 lines
330 B
Plaintext
#include "prc_feat_const"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if (GetLocalInt(oPC,"WeapEchant1")==TEMPUS_ABILITY_ENHANC3)
|
|
return;
|
|
|
|
if(!GetLocalInt(oPC,"WeapEchant1"))
|
|
SetLocalInt(oPC,"WeapEchant1",TEMPUS_ABILITY_ENHANC3);
|
|
|
|
SetLocalInt(oPC,"TempusPower",GetLocalInt(oPC,"TempusPower")-3);
|
|
|
|
}
|