Prolax Posted February 17 Share Posted February 17 Does someone have a source code for a simple Edgeville smelter script? Looking for something like the below script where "get" methods and "this" are used. (For learning purposes) Thanks! Quote Link to comment Share on other sites More sharing options...
Gunman Posted February 18 Share Posted February 18 @Prolax Key word "this" is to specify context. Can also be used to specify the current class context if passing as a parameter private int value = 0; public void setValue(int value) { this.value = value; } Quote Link to comment Share on other sites More sharing options...