roguehippo Posted December 20, 2016 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.
Explv Posted December 20, 2016 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.
Juggles Posted December 20, 2016 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
roguehippo Posted December 20, 2016 Author Posted December 20, 2016 X_X i knew it was something stupid. thanks guys ;_; its been a while..
sudoinit6 Posted December 20, 2016 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