9 lines
224 B
Plaintext
9 lines
224 B
Plaintext
|
#include "quest_inc"
|
||
|
void main()
|
||
|
{
|
||
|
string sDB = CharacterDB(GetPCSpeaker());
|
||
|
int nReward = GetCampaignInt(sDB, "QUEST_REWARD");
|
||
|
nReward = nReward + nReward/10;
|
||
|
SetCampaignInt(sDB, "QUEST_REWARD", nReward);
|
||
|
}
|