Henchman work

Henchman work.
This commit is contained in:
Jaysyn904
2021-10-14 18:40:47 -04:00
parent 7fab5d1710
commit 2bef86b5bc
30 changed files with 33202 additions and 1383 deletions

View File

@@ -0,0 +1,11 @@
void main()
{
// Get the creature who triggered this event.
object oPC = GetLastUsedBy();
// Give 3000 experience to the PC.
GiveXPToCreature(oPC, 30000);
// Send a message to the player's chat window.
SendMessageToPC(oPC, "" + GetName(oPC) + " received XP");
}