Maybe this has been answered and I just failed to find it. You know how in LoG1 we can override hooks by adding them to init.lua. Take this one for the party:
cloneObject{
name = "party",
baseObject = "party",
onMove = function(self, dir)
print("party moves in direction", dir)
end,
}
I think its now "defineObject" but I can't seem to figure out how to do it? Does anybody know?
How do we specify hooks in init scripts?
Re: How do we specify hooks in init scripts?
Think than Jgwman coded a hook for his Combat Log. Just called in the init.lua but seems to be a fine hook definition.
Re: How do we specify hooks in init scripts?
viewtopic.php?f=22&t=7642
so you don't have to test which of the old party-hooks do work and which don't.
so you don't have to test which of the old party-hooks do work and which don't.
- LoG Framework 2http://sites.google.com/site/jkoslog2 Define hooks in runtime by entity.name or entity.id + multiple hooks support.
- cloneObject viewtopic.php?f=22&t=8450
- cloneObject viewtopic.php?f=22&t=8450
Re: How do we specify hooks in init scripts?
Thanks!JKos wrote:viewtopic.php?f=22&t=7642
so you don't have to test which of the old party-hooks do work and which don't.
Re: How do we specify hooks in init scripts?
Thought I should mention-it seems that there is no longer an onUseItem hook. Just use onAttack and check if weapon.usableitem exists.
Re: How do we specify hooks in init scripts?
I just noticed that you can now define hooks dynamically in run time.
Example
party.party:addConnector("onMove", "hooks", "onPartyMove")
Nice! So I guess I don't have to write "LoG Framework" for LoG2.
Example
party.party:addConnector("onMove", "hooks", "onPartyMove")
Nice! So I guess I don't have to write "LoG Framework" for LoG2.
- LoG Framework 2http://sites.google.com/site/jkoslog2 Define hooks in runtime by entity.name or entity.id + multiple hooks support.
- cloneObject viewtopic.php?f=22&t=8450
- cloneObject viewtopic.php?f=22&t=8450