Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. make a handler for OnPlayerCommandEvent like this, set p.cancelcommand = true; (so it dosent show Unknown command "secret") and p.lastCMD = ""; (to prevent the player from using / to run it again) but why do you even want to make a command that dosent appear on /help and hides itself?
  3. im sorryy i come here cuz its classicube forums but i need a system file. its in windows 10 or 11 (usually) in C:\Windows\Fonts\seguiemj.ttf. the file name is seguiemj.ttf (its a Segoe UI Emoji font file) can some give me that??? (edit) Bruhhhhhhhhhhhhhhhhhhhhhhh litrally is it a sin or smth like that if i ask for a system file i will just scan it with virustotal.com that uses 50 antiviruses to scan the file please help me .
  4. jshtab changed their profile photo
  5. JJKAY645 changed their profile photo
  6. woiiiiiiii changed their profile photo
  7. 1Lighty changed their profile photo
  8. nobhkybsh changed their profile photo
  9. Howling_cubist changed their profile photo
  10. JayTS_Gaming changed their profile photo
  11. Mon changed their profile photo
  12. 4LTIZ changed their profile photo
  13. Mr.anonymous_z changed their profile photo
  14. Today
  15. JTE’s software and Myne (aera’s software) were developed in parallel and were the first 2 common custom servers.
  16. cool, before this we had something? or mcsharp was the first server software for classic mc?
  17. Yesterday
  18. MCGalaxy was based on MCForge, which was based on MCLawl, which was based on MCZall, which was based on MCSharp
  19. Whats the history of mcgalaxy? where did it came from? what we had before it? ive really got into classic mc stuff and start to wonder about this stuff, i want to know how did we get where we are now thx
  20. I have a secret command on MCGalaxy, but I want to hide it from people so they can't do /help on it or accidentally find the command. Also, as a bonus, is there a way to prevent them from using / again to see the command?
  21. It’s generally not a good idea to ask strangers for system files.
  22. im sorryy i come here cuz its classicube forums but i need a system file. its in windows 10 or 11 (usually) in C:\Windows\Fonts\seguiemj.ttf. the file name is seguiemj.ttf (its a Segoe UI Emoji font file) can some give me that???
  23. Last week
  24. GreenAxol35 started following Goodly
  25. Arm thickness is entirely decided by the client and is based on the texture file, the website has no bearing on how the client will display your skin.
  26. I think there should be a toggle that makes it so your arm is thinner (or not) in the skin section of the account settings page. I recently encountered an issue where i used skin swatch to change my skin to a temporary one (so i wasn't using the default), and that skin had thin arms. When i later changed it to my new skin the thin arms remained and there was no toggle, so i had to change my skin to the default using SkinSwatch TWICE for the arms to return to normal. I don't know if there are preexisting checks to make arms thinner based on the texture but still, i think a toggle would make this less of a headache.
  27. I have a server at InfiniBuild, and I accidentally deleted all of the ranks and redid the perms and changed the commands to their respective ranks, it shows usable by 50+ when in the settings it shows usable by Guest. Can anyone help with this problem?
  28. Have you heard of something called 'Tact'?
  29. jasperDS joined the community
  30. A3AB started following mrsyrup
  31. mrsyrup started following A3AB
  32. No more search :D
  33. I was on a server on ClassiCube, and someone was on the server called A3AB. We chatted for a while, and it was fun, but he had to go. I would have liked to stay in touch! But I didn't want to like text him or something like that. So we could chat through forms! But sadly, I didn't know we could at the time, so I was thinking we could find him and reunite next time he's online! I sadly don't have a lot of evidence except a screenshot. So if any people could find him, I would be super happy!
  34. While I agree with your thoughts (mostly from experiences on other ports), I think you could've handled this better without the childish tantrum. You are getting ahead of yourself and forgetting that the Vita port was developed on an emulator. There aren't many Vita owners in the community that are active and contributing.
  35. The control scheme is horseshit. There isn't a proper way of using the hotbar, the d-pad could be mapped to something useful but apparently an analog stick wasn't enough and moving is mapped to the d-pad aswell. Same thing with the camera; it's mapped to the right analog stick AND front touchscreen when it could be used for easier access to hax for example. The shoulder buttons are flipped so the L button breaks and the R button places. That is an easy fix but might as well mention it here. Oh yeah, the rear touchpad PLACES out of all things. Why couldn't the controls be copy-pasted from the official PS Vita Minecraft? The keyboard is way too small, can't be controlled without the touchscreen, the flashing cursor glitches out the entire textbox and need to type the first letter of your message twice. The PS Vita doesn't have it's own tag. Absolute disgrace.
  36. A3AB joined the community
  37. RodrigoG4briel joined the community
  38. mrsyrup joined the community
  39. aahil833 joined the community
  40. When you see "Object reference not set to an instance of an object", that means it's trying to get the value of a variable in your code, but because that variable is null, it fails to find anything. The issue is that PlayerAwards.Get(p.name) can give you either: List<string>, a list of 0 or more awards that the player has got before null, if the player has never gotten an award before You cannot call .CaselessContains on a null variable because that function requires a valid string to run. The solution is not to call PlayerAwards.Get and CaselessContains in the same line, so that we can check if the list is null first. By the way, please make sure you indent the code (tab or four spaces) every time there is an open bracket {, otherwise the code will become extremely difficult to understand. An example of fixes is attached. CmdGiveInsane.cs
  41. Now there's this error when using /giveinsane [user]: !!!Error (Object reference not set to an instance of an object) - See Logs tab for more details The logs show this longer version: Type: NullReferenceException Source: MCGalaxy_ Message: Object reference not set to an instance of an object Trace: at MCGalaxy.Extensions.CaselessContains (System.Collections.Generic.List`1[T] items, System.String value) [0x00000] in <f309205a56554c158910ca5ef34fa632>:0 at CmdGiveinsane.Use (MCGalaxy.Player p, System.String message) [0x0000c] in <5bd5b930cfd5436dbb6e2f13c1219d68>:0 at MCGalaxy.UI.UIHelpers+<>c__DisplayClass3_0.<HandleCommand>b__0 () [0x00000] in <f309205a56554c158910ca5ef34fa632>:0 Please help! BTW, source code for reference attached CmdGiveInsane.cs
  42. You're missing a lot of code that's required for a custom command, for instance the command class itself. You can use /cmdcreate to generate a working template that you can change.
  43. I'm trying to use /compile on a custom command I made in MCGalaxy, and when I try to compile the below code(C#), it shows this error: Error #CS1525 on line 3 - Unexpected symbol 'void', expecting 'class', 'delegate', 'enum', interface', 'partial', 'ref', or 'struct' Code: using MCGalaxy.Modules.Awards; public override void Use(Player p, string message) { const string myAward = "Insane"; bool hasAwardAlready = PlayerAwards.Get(p.name).CaselessContains(myAward); if (hasAwardAlready) { p.Message("You have already claimed this award!"); return; // When we write return, that will quit running the command so that the code below doesn't run } //Give the player the award if they haven't already gotten it Command.Find("award").Use(Player.Console, "give "+p.name+" "+myAward); }
  44. what? (banned for 4 hours no 1 word posts)
  45. Goodly back at it again