Hello there!!
Is been a while since I was scripting for the last time but I dicided to start doing it again : )
I found really usefull thing - mods.
I have simple question to advenced users of mods - Is it possible to share <config> zone with othere moduls? By that I mean function domodlib just copy <config> and paste it in proper place..
And If I want talkactions and actions share the same <config>?
For example :
( dont care about syntax errors
)
Thanks in advance for replies : )
Is been a while since I was scripting for the last time but I dicided to start doing it again : )
I found really usefull thing - mods.
I have simple question to advenced users of mods - Is it possible to share <config> zone with othere moduls? By that I mean function domodlib just copy <config> and paste it in proper place..
And If I want talkactions and actions share the same <config>?
For example :
( dont care about syntax errors
Code:
<config>
some value = 50
</config>
<movevents>
onStepIn
some value = 30
-- now I want to print value after death
print(some value) <<<------IS THAT POSIBLE???
<movevents>
<event 'death'>
onDeath
if something then
some value = 0
else
some value = 43
</event>
Thanks in advance for replies : )