13 lines
255 B
Plaintext
13 lines
255 B
Plaintext
// * Henchman levels up
|
|
#include "69_hench_lib"
|
|
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
if(GetCanLevelUp69(oPC, OBJECT_SELF))
|
|
{
|
|
LevelUpHenchman69(OBJECT_SELF, oPC);
|
|
}
|
|
DelayCommand(10.5, ExecuteScript("_golemstats", OBJECT_SELF));
|
|
}
|