Cyber_Hawk Posted May 7, 2020 Posted May 7, 2020 Can someone help me with setting up the environment, I used a lot of tutorials. But the client won't show the script. I'm new to this. Thanks in advance!
Lol_marcus Posted May 7, 2020 Posted May 7, 2020 What seems to be the issue? Which IDE are you using?
ExtraBotz Posted May 7, 2020 Posted May 7, 2020 I started a YouTube series yesterday that answers this exact question I look forward to making more videos in the future! 1
Cyber_Hawk Posted May 7, 2020 Author Posted May 7, 2020 1 hour ago, Lol_marcus said: What seems to be the issue? Which IDE are you using? I'm using Intellij 38 minutes ago, ExtraBotz said: I started a YouTube series yesterday that answers this exact question I look forward to making more videos in the future! Thanks, it helps a lot!
Cyber_Hawk Posted May 7, 2020 Author Posted May 7, 2020 It only shows Kotlin file/class, instead of the Java class.
ExtraBotz Posted May 7, 2020 Posted May 7, 2020 13 minutes ago, Cyber_Hawk said: It only shows Kotlin file/class, instead of the Java class. You might notice in your file manager that “OSBot Scripts” has a different icon than a package. That’s because your package name contains a space which is a violation of the package naming conventions. According to the java code conventions: Package names are all lowercase, with consecutive words simply concatenated together (no underscores). Sorry I didn’t mention that in the video!
Cyber_Hawk Posted May 7, 2020 Author Posted May 7, 2020 18 minutes ago, ExtraBotz said: You might notice in your file manager that “OSBot Scripts” has a different icon than a package. That’s because your package name contains a space which is a violation of the package naming conventions. According to the java code conventions: Package names are all lowercase, with consecutive words simply concatenated together (no underscores). Sorry I didn’t mention that in the video! Thanks for the information, I didn't know that.