A lazy Cat Posted August 1, 2013 Share Posted August 1, 2013 Need a drop.all (log) method please Could they post a example so i can work it out Link to comment Share on other sites More sharing options...
Wiz Khalifa Posted August 1, 2013 Share Posted August 1, 2013 this.client.getInventory().dropAll(); 1 Link to comment Share on other sites More sharing options...
Andrew Posted August 1, 2013 Share Posted August 1, 2013 client.getInventory().dropAll(LOG); 1 Link to comment Share on other sites More sharing options...
riet Posted August 1, 2013 Share Posted August 1, 2013 Why do all these noob scripters use this.client.blabla instead of client.blabla Link to comment Share on other sites More sharing options...
danimals Posted August 1, 2013 Share Posted August 1, 2013 Why do all these noob scripters use this.client.blabla instead of client.blabla You are suposed to use this when you have a param of the same name. Link to comment Share on other sites More sharing options...
Pseudo Posted August 1, 2013 Share Posted August 1, 2013 Why do all these noob scripters use this.client.blabla instead of client.blabla Lol, lookup the 'this' keyword... Link to comment Share on other sites More sharing options...
riet Posted August 1, 2013 Share Posted August 1, 2013 Why do all these noob scripters use this.client.blabla instead of client.blabla Lol, lookup the 'this' keyword... Thats no answer on my damn question lol Link to comment Share on other sites More sharing options...
danimals Posted August 1, 2013 Share Posted August 1, 2013 Why do all these noob scripters use this.client.blabla instead of client.blabla Lol, lookup the 'this' keyword... Sorry for double quote but, You are suposed to use this when you have a param of the same name not whenever you want. Link to comment Share on other sites More sharing options...
riet Posted August 1, 2013 Share Posted August 1, 2013 Why do all these noob scripters use this.client.blabla instead of client.blabla Lol, lookup the 'this' keyword... Sorry for double quote but, You are suposed to use this when you have a param of the same name not whenever you want. Got a example???? Link to comment Share on other sites More sharing options...
danimals Posted August 1, 2013 Share Posted August 1, 2013 (edited) Why do all these noob scripters use this.client.blabla instead of client.blabla Lol, lookup the 'this' keyword... Sorry for double quote but, You are suposed to use this when you have a param of the same name not whenever you want. Got a example???? EHm not sure if you are serious but eh i will post one: public final class Example { private String text; public Example(String text) { this.text = text; } } Code is ugly since i did it on the quote but w.e Edited August 1, 2013 by danimals Link to comment Share on other sites More sharing options...