EpicValor d8cc875ac4 Added a convo node to get the gold your henchman picks up
ran the external compiler just in case, and it made new .ncs
2023-09-15 19:40:28 -05:00

12 lines
241 B
Plaintext

//golemgold
#include "69_inc_henai"
void main()
{
object oMaster = GetMaster();
int gGold = GetGold (OBJECT_SELF);
ActionDoCommand (GiveGoldToAllEqually (oMaster, gGold));
TakeGold (gGold, OBJECT_SELF, TRUE);
}