if so, how would I go about that?
also
do triggered conditions trigger within the calling function or at the end of the current ace element:
long ExtObject::aExampleAction(LPVAL params) { // ExtObject::CString Answer; Answer="The event triggered immediately."; TriggerEvent(1); Answer="The event triggered after the calling function returned"; return 0; } [/code:12b1wv6z] if OnEvent(1), you retrieved the value Answer, what would it be?
Develop games in your browser. Powerful, performant & highly capable.
Triggers run and complete inside the function call.
What do you mean by adding to an ExpStore? Why on earth would you want to do that? I'm almost certain you're thinking down the wrong lines. ExpStore is not meant to be modified, at all, period. You should stop trying to hijack the engine
sorry ash
I'm really not trying to do completely nuts things anymore
also I found a way so I don't need this anyway, but I'm still curious how it would work
I got arrays working for me (there really wasn't any reasonable alternative)
so let's say
MyFunc({"Array","goes","here"})[/code:2rwuesvh] I wanted to make an expression MyArrayRetExp that returns an array value, and I thought arrays were ExpStores so I wanted to do something like: [code:2rwuesvh]MyFunc(MyArrayRetExp)[/code:2rwuesvh] know what I mean?