37 lines
944 B
Plaintext
37 lines
944 B
Plaintext
#include "utl_i_sqluuid"
|
|
#include "prc_x2_itemprop"
|
|
|
|
void main()
|
|
{
|
|
object oPC;
|
|
object oItem;
|
|
int iQuestPoints;
|
|
int iProp;
|
|
itemproperty ip;
|
|
string sTag;
|
|
|
|
|
|
oPC=GetPCSpeaker();
|
|
sTag = SQLocalsUUID_GetString(oPC,"QPTag");
|
|
oItem = GetItemPossessedBy(oPC, sTag);
|
|
|
|
if(GetIsObjectValid(oItem) != 0)
|
|
{
|
|
iProp=SQLocalsUUID_GetInt(oPC,"QP_Freedom");
|
|
if (iProp==0)
|
|
{
|
|
iQuestPoints = SQLocalsUUID_GetInt(oPC,"QuestPoints");
|
|
iQuestPoints = iQuestPoints - 10;
|
|
SQLocalsUUID_SetInt(oPC,"QuestPoints",iQuestPoints);
|
|
SQLocalsUUID_SetInt(oPC,"QP_Freedom",1);
|
|
ip=ItemPropertyFreeAction();
|
|
IPSafeAddItemProperty(oItem,ip);
|
|
DelayCommand(1.0,AssignCommand(OBJECT_SELF,ActionCastFakeSpellAtObject(SPELL_CURE_SERIOUS_WOUNDS,oPC)));
|
|
} else {
|
|
SendMessageToPC(oPC,"You already have that enhancement.");
|
|
}
|
|
} else {
|
|
SendMessageToPC(oPC,"Could not find item.");
|
|
}
|
|
}
|