Hello everyone,
This might be a realy silly problem but still is a problem, i’m calling a global variable. which works perfectly. but at the point where if do this:
`if(somescript.somevar == "0") {
///do stuff the var was 0
} else {
print("it wasn't 0 but it was "+somescript.somevar);
}
`
It is recieved but isn’t regonized for some weird reason, in the example ‘print’ above it does actualy show the 0 value. Why isn’t it regonized while comparing it?