13 lines
419 B
Plaintext
13 lines
419 B
Plaintext
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
// q_bounty_set - Set Guard Commander Bounty
|
||
|
// By Deva B. Winblood. September, 30th, 2008
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC=GetPCSpeaker();
|
||
|
int nParm=GetLocalInt(oPC,"nParm");
|
||
|
DeleteLocalInt(oPC,"nParm");
|
||
|
SetLocalInt(oPC,"nBountyQuest",nParm);
|
||
|
}
|