Prolax Posted February 17, 2024 Posted February 17, 2024 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!
Gunman Posted February 18, 2024 Posted February 18, 2024 @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; }