20 lines
563 B
Plaintext
20 lines
563 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName xp_bugbear
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 3/24/2003 11:07:37 AM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
// Give the speaker some XP
|
||
|
RewardPartyXP(30, GetPCSpeaker());
|
||
|
|
||
|
// Modify the player's reputation
|
||
|
AdjustReputation(GetPCSpeaker(), OBJECT_SELF, 2);
|
||
|
SetIsDestroyable(TRUE);
|
||
|
DestroyObject(OBJECT_SELF);
|
||
|
}
|