:global not set?

Hi,

i will made a simple tx-power script, but the global are not set:

:global txold [/interface wireless registration-table get number=0 tx-signal-strength];
:log info $txold;

becomes a zero in script - no data. Why?
With cli it works.

regards
Christian

Yes the same problem with my routers after upgraded to 6.10
Please Mikrotik do something in next Ros .

Hi,

this is not an ROS Problem.
I have mailed the support (!!!Answer in 5 min!!!)

Hello,

You cannot user get number=0 in scripts.
Use find command to find specific entry.

Regards,
Maris

you should use:
:global txold [/interface wireless registration-table get [ find interface=wlan1 ] tx-signal-strength];
:log info $txold;

in script. Works. tested.