Added a convo node to get the gold your henchman picks up

ran the external compiler just in case, and it made new .ncs
This commit is contained in:
EpicValor
2023-09-15 19:40:28 -05:00
parent a0d5f98f53
commit d8cc875ac4
24 changed files with 7187 additions and 6217 deletions

11
_module/nss/golemgold.nss Normal file
View File

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