Lewis Posted November 28, 2016 Posted November 28, 2016 how would you limit a script to only be able to used by the osbot user "Lewis", so anyone without the osbot username "Lewis" would not have permission to run the script
Vilius Posted November 28, 2016 Posted November 28, 2016 if(!getClient().getUsername().equals("Lewis")) stop; Place that in your on start and it should work. 2
Lewis Posted November 28, 2016 Author Posted November 28, 2016 if(!getClient().getUsername().equals("Lewis")) stop; Place that in your on start and it should work. thank you