If you have some variables with the same name but some use an underscore, you cannot refer to the variable that does not use an underscore, for example, if you have these variables:
name_player
name_room
nametest
The automatic reference works with the first two variables but will not work with "nametest".
To solve it you will have to add a hyphen to "nametest":
name_player
name_room
name_test
Another option is to eliminate the low hyphens of the other variables to do so:
nameplayer
nameroom
nametest
In this gif (gif with scroll bar) you can see how the reference does not work with "nametest"
CAPX
https://www.dropbox.com/s/nrbo9zy8n9n02py/testVariablesNames.capx?dl=0
VERSION C2
R270 64b
Win10 64b