roguehippo Posted December 20, 2016 Share Posted December 20, 2016 Hello all after a bit of a break from coding to due finals and stuff I am back practicing scripting. I am trying to Define an area and it just says that "The method Area(int, int, int, int) is undefined for the type main". the exact line is just this: public Area AreaName = Area(2582,9493,2594,9484); i'm starting to wonder if the constructor for Area has been changed since i last used it. am i doing something wrong. Quote Link to comment Share on other sites More sharing options...
Explv Posted December 20, 2016 Share Posted December 20, 2016 Hello all after a bit of a break from coding to due finals and stuff I am back practicing scripting. I am trying to Define an area and it just says that "The method Area(int, int, int, int) is undefined for the type main". the exact line is just this: public Area AreaName = Area(2582,9493,2594,9484); i'm starting to wonder if the constructor for Area has been changed since i last used it. am i doing something wrong. You missed the "new" keyword. Quote Link to comment Share on other sites More sharing options...
Juggles Posted December 20, 2016 Share Posted December 20, 2016 (edited) public Area AreaName = Area(2582,9493,2594,9484); --> public Area AreaName = new Area(2582,9493,2594,9484); Missing "new" Edited December 20, 2016 by Juggles Quote Link to comment Share on other sites More sharing options...
roguehippo Posted December 20, 2016 Author Share Posted December 20, 2016 X_X i knew it was something stupid. thanks guys ;_; its been a while.. Quote Link to comment Share on other sites More sharing options...
sudoinit6 Posted December 20, 2016 Share Posted December 20, 2016 X_X i knew it was something stupid. thanks guys ;_; its been a while.. And I have been informed that you should begin variable names with lower case letters Quote Link to comment Share on other sites More sharing options...