- Add an advanced /perbuild option.
-
CC crashing?
Posting the logs of the crash might be helpful, you might want to right click the page, click Inspect, and navigate to the Console tab, and screenshot the red exception part and upload it here. If not, no one will be able to assist you
-
first forum post with cef
Must have exposed your account password to everyone, that’s really fun Unless if it was /client, it is likely everyone saw your password in chat Even then, when CEF syncs the open windows it will also transfer your account password
-
Add Cows for Enhanced Mode.
https://imgur.com/a/mi8ZLuF
-
how can you make a free forever *kinda* server on lemehost without paying
As responded to you earlier, you can pay for hosting. Lemehost allows you to pay for hosting. Although I'd much prefer you to choose other reputable hosts like DigitalOcean, OVHCloud, or Linode (Akamai Cloud Computing), though you would need some Linux knowledge to set up the server properly Good luck!
-
I am accepting plugin requests
I deleted the last bit of code on accident. Gist has been updated again. https://gist.github.com/SpicyCombo/7c8355522042370d0dfa291e6f8653e1
- is it universally agreed that I am stupid
-
my first working custom cmd
the command itself looks really simple, all it does is it prints a wall of text, or fetches a text file and then prints what's from that text file. I think I can believe that you made it with the help of ChatGPT, but damn why do you have to let ChatGPT write the post for you? Having ChatGPT write the post is the funniest funny of the funnies I've seen today congrats bro
-
I am accepting plugin requests
Hey, as from Venk's response on the ClassiCube Discord, it was my fault earlier for asking you to change the database name from XP to Levels. I confused myself with my own plugins instead. Please use this version of XP.cs and FormatPrefix.cs, which should help solve these problems. I apologize for the confusions! https://gist.github.com/SpicyCombo/7c8355522042370d0dfa291e6f8653e1
-
I am accepting plugin requests
You also had to add p.SetPrefix(); for when the player doesn't exist in the database. Anyways, I've also done the following for you: added /XP give, /XP take, /XP code at the top, I updated the usage on how to issue player XP You can see the new version here: https://gist.github.com/SpicyCombo/dd0ec6e654e17c8462a2d8c2bb02fb88 I might also just make a pull request on Venk's repo, and the MCGalaxy-plugins repo
-
I am accepting plugin requests
yeah the plugin from Venk's repo has multiple problems It's meant to store and retrieve data from the XP database table, but instead it creates a database table named "Levels"... Change "Levels" to "XP" should fix it not sure if there are additional problems that you need to fix, but that's it
-
I am accepting plugin requests
-
I am accepting plugin requests
You need to call p.SetPrefix(); in the XP plugin each time the player’s level is updated.
-
I am accepting plugin requests
No. FormatPrefix adds to the player’s prefix, but Shortname changes the player’s nickname that is all
-
I am accepting plugin requests
It was not compiling because the plugin is missing the using statement for the Database class. Adding the below line at the top of the file should make it work. I've updated the GitHub Gist. using MCGalaxy.SQL;