MMD_PRC8/_module/nss/vtw_chargecost.nss
Jaysyn904 adeff59f82 Initial commit
Initial commit.
2024-08-02 23:18:00 -04:00

20 lines
554 B
Plaintext

int StartingConditional()
{
object oPC = GetPCSpeaker();
object oItem = GetLocalObject(oPC, "MODIFY_ITEM");
int iCurrentValue = GetGoldPieceValue(oItem);
int iCurrentCharges = GetItemCharges(oItem);
int iCost;
if (iCurrentCharges < 1) iCost = 0;
else iCost = ((iCurrentValue * 50)/iCurrentCharges) - iCurrentValue;
int iChargesToAdd = 50 - iCurrentCharges;
SetLocalInt(oPC, "iModifyCost", iCost);
SetCustomToken(101, IntToString(iCost));
SetCustomToken(103, IntToString(iChargesToAdd));
return TRUE;
}