On line 8 you are retrieving the values from the ini files into counter objects.
On line 12 you're testing against a global value that isn't used / set - so that global value is always going to be zero.
You would have to either change line 8 to retrieve the values from the ini file into global values
or
Change line 12 to read from the counter like this:
* ScoreOne Counter >= 300
Special : Set Global Value Text to 1
or
on frame 2 lvl - line 105 where you set score >= 300 - you can also insert there
Set Global Value Text = 1
It's not a good idea to read / write from ini files in Always or repeating events - they will slow your game down. Place them in events that only run once like End of Frame or Start of Frame events.