Need help on this EA

 

Need help on checking this EA with thanks. What is wrong with it?

errors as follow:

'}' - unexpected end of program 179 4

'{' - unbalanced parentheses 45 3


Files:
 

For thos problems I am using (still) Notepad++ (search & count "{")

1) OnInit has no closing } ~ line 71

2) add { (for what) at line 55 (not closed as well)

 
gooly:

For thos problems I am using (still) Notepad++ (search & count "{")

1) OnInit has no closing } ~ line 71

2) add { (for what) at line 55 (not closed as well)


Hopefully it is that simple because I feared it is even worst as my guts telling me some lines are missing.


Well, just a guess. :)

 

Line 55, you have a { that does not have a closing }

Void on tick should have a closing } at line 71

In your functions there are sooooo many lines that are missing the ;

You have 2 bool functions that do not return a value, they should be void

Reason: