Jump to content

75

Member
  • Joined

  • Last visited

  1. something like /tempperbuild and /temppervisit like /temprank that does not require intense rewriting but rather console auto remove the person once time is up Sounds like a great idea! Could also be accomplished with a plugin if it’s not becoming a built in feature
  2. 75 replied to Jadiator's topic in I Need Help!
    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
  3. 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
  4. https://imgur.com/a/mi8ZLuF
  5. 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!
  6. I deleted the last bit of code on accident. Gist has been updated again. https://gist.github.com/SpicyCombo/7c8355522042370d0dfa291e6f8653e1
  7. 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
  8. 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
  9. 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
  10. 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
  11. Line 133 of XP.cs
  12. You need to call p.SetPrefix(); in the XP plugin each time the player’s level is updated.
  13. No. FormatPrefix adds to the player’s prefix, but Shortname changes the player’s nickname that is all
  14. 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;