|
From what I can tell, you are observing two problems here:
First, ACS vars are not synced between client and server, so GlobalVar in SBARINFO only works properly for vars that are only set in client side scripts.
Second, ACS in DECORATE is not handled properly online. Both client and server execute the script, which makes it look as if the script calls triggered by DECORATE are counted separately.
Unfortunately, both are structural problems that are not easy to fix. ZDoom's design of this features is incompatible with our client/server architecture.
Nevertheless, the global vars should be working exactly as intended on the server. You just don't see it since some of the values you see in the example are displayed by the client, some by the server. |
|