-
Content Count
321 -
Joined
-
Last visited
-
Days Won
29
Everything posted by icanttellyou
-
Error when logging in+ (windows 98. First classicube startup.)
icanttellyou replied to Onwin98's question in I Need Help!
Try using latest nightly build which you can get from Github Actions (note: it requires a Github account). It fixes issues with SSL on older versions of Windows. -
I have chosen to write the plugin from scratch. You can see my implementation here. I have only implemented the first change as I didn't want to bother storing options for each player in regards to settings. In addition because of how I implemented the plugin existing player data is incompatible. Along with this you can make it so players don't join back to certain maps by adding -lastpos to the MOTD.
-
public override void Load(bool auto) { OnPlayerFinishConnectingEvent.Register(HandleOnPlayerFinishConnecting, Priority.High); } public override void Unload(bool auto) { OnPlayerFinishConnectingEvent.Unregister(HandleOnPlayerFinishConnecting); } private void HandleOnPlayerFinishConnecting(Player p) { if (!LevelInfo.AllMapNames().Contains(map)) { p.Message("&WThe map you were on no longer exists!"); return; } Level lvl = LevelInfo.FindExact(map); if (lvl == null) { if (!Server.Config.AutoLoadMaps) return; string propsPath = LevelInfo.PropsPath(map); LevelConfig cfg = new LevelConfig(); cfg.Load(propsPath); AccessController visitAccess = new LevelAccessController(cfg, map, true); if (!visitAccess.CheckDetailed(p, p.Rank)) return; lvl = LevelActions.Load(p, map, false); if (lvl == null) { p.Message("&WFailed to load the map you were on!"); return; } } bool canJoin = lvl.CanJoin(p); //We are joining a level right? As it's not the main level. OnJoiningLevelEvent.Call(p, lvl, ref canJoin); if (!canJoin) return; p.level = lvl; } Most of it is fluff for checking if player even has permissions to be in the map they were on or if the level exists and to load it if not loaded. Also this snippet doesn't work as-is because I have yet to complete the plugin, which is for making player join at previous location.
-
You're wrong. https://www.youtube.com/watch?v=lsA1Kr1wG3I
-
Um... Not really. All I know is that it was developed in the Czech Republic and it was translated to Lithuanian. And it clearly wasn't adapted to support Windows XP themes properly
-
I honestly forgot, but it was some old Windows software from maybe like the early 2000s.
-
What would that even do? I have no idea what a polar rose is. But I know what is turtle graphics as we had to go through using LOGO back in like basic school.
-
https://github.com/forkiesassds/MCGalaxy-Stuff/blob/master/MessageConsent.cs Here you go.
-
Because I'm so bored I have decided to make plugins for people (this is totally not because Venk opened plugin requests /j). I have made several plugins in the past for both public and private use. If you are interested please reply here suggesting what you want as long as it follows the guidelines. 1. Plugins must not be for malicious use or break ClassiCube TOS. 2. A plugin that is to be requested must not already exist. If it does exist then I will simply link to the existing one. If it requires fixing up I may be able to provide a fixed version or a rewritten version. 3. The request must not be of a fully featured plugin with various features (ex: entire games, survival, physics mechanics, etc.) because I'm doing all of this for free and out of my spare time. 4. The plugin may not be for an esoteric server software or software stack. (I will only be accepting requests for servers that run MCGalaxy using either Mono or .Net 8.)
-
bro i got banned cuz i lied to get out of trouble
icanttellyou replied to prestfromthewes's question in I Need Help!
... Why would you be embarrassed of being corrected. The definition of kid can be very loose in some cases. So you really shouldn't worry about it. -
bro i got banned cuz i lied to get out of trouble
icanttellyou replied to prestfromthewes's question in I Need Help!
Well for one don't be annoying. No one likes when you're annoying. As I had a similar encounter with an annoying person named "jolinhoarys" and everyone on that server kept voting them to be banned and constantly asked players on the server random questions and constantly griefed. I ended up banning them, and now they won't stop harassing me on other servers begging me to unban them. -
bro i got banned cuz i lied to get out of trouble
icanttellyou replied to prestfromthewes's question in I Need Help!
Who was even saying you are a kid? Yourself or who? Don't be embarrassed to be corrected on anything. -
bro i got banned cuz i lied to get out of trouble
icanttellyou replied to prestfromthewes's question in I Need Help!
Even if you are actually 14. DO NOT JOKE, LIE OR MISLEAD ABOUT YOUR AGE ANYWHERE. You may end up getting yourself banned from a server or a platform like Discord if you do something like this. But as Goodly has said in what scenario would one even lie to "get out of a situation"? -
Lighting suggestion. EDIT: The idea was scrapped...
icanttellyou replied to Survivor712's topic in ClassiCube Central
This was originally supposed to be in the ModernLighting branch but it got scrapped over performance and resource issues. Additionally it didn't look good in most cases which is older classic maps. -
I recommend against doing this. Using direct connect requires disabling authentication which means anyone can impersonate as any player. Instead what you can do is copy the link provided and send it to your friends. They can join using the link in 2 ways. One being by simply clicking and using the web client. Second being by pasting the URL in the "classicube.net/server/play/..." box (see attached image) and clicking connect. Otherwise you can make the server publicly listed and enable a whitelist instead.
-
How to view discord conversations on Classicube?
icanttellyou replied to Beratu77's question in I Need Help!
You mean to set up a Discord bridge? If so it's pretty simple to set up. Go here to learn how to set the bridge up. -
/os add is if the server is running MCGalaxy 1.9.5.0 (which is yet to come out, some servers run development versions however) or newer. If the server is running 1.9.4.9 then you should use /os map add instead.
-
You need to use a HandlePlace delegate instead and set that for the level you want the logic to work on using the following code //You want this to be called when the level is loaded. //BLOCK_ID is the block id you want to target. To target all simply make a for loop of range [0, 1024) level.UpdateBlockHandlers(BLOCK_ID); //This is an event which takes OnBlockHandlersUpdated delegates, you want to register this in your plugin //You may want to add a check to make sure this only sets the proper place handler. void OnBlockHandlersUpdated(Level lvl, BlockID block) { //Ensure if the map this event is called for is the one the plugin is targeting //Remove this if you want to target every map. if (lvl != pluginLevel) return; //You may want to retain the original place handler, so you might use a lambda here to invoke the original place handler. //I'm unsure if there is a different method to basically override the placement handler whilst retaining the original logic in place. lvl.PlaceHandlers[block] = PlaceHandler; } Some other advice to look through Zombie Survival code to see how they did finite blocks.
-
The “requires latest version of MCGalaxy” comment is false as 1.9.5.0 is not even out yet, and to be more correct is to specify that it needs a development build which version themselves as 1.9.4.9 annoyingly. A minor nitpick but whatever…
-
MCGalaxy Failed to send heartbeat to www.classicube.net
icanttellyou replied to WlodekM's question in I Need Help!
Why are you running the server as admin?- 1 reply
-
- 1
-
New and Exciting server "The Gaming Bunch" is out now!!
icanttellyou replied to Surepea's topic in ClassiCube Central
This is no other than some chrome server with a crappy PVP texture pack, unimpressive main, built together with only plugins found on public GitHub repos and advertisement of features that don't even exist -
Look into /help newlvl and /help os map
-
They won't do anything as the rules allow that. Basically it's best advice to not play on that server as it's a platform for hate speech.
-
The server has verify-names disabled which means anyone can join under any name, and thus you should know just because someone is playing under their name doesn't mean it's them. In most cases it's probably someone impersonating them.
-
This server seems to be poorly managed, and has verify-names disabled on the server. And the rules state that "Everything ( literally Everything ) is allowed except griefing", which implies slurs, bigotry and harassment are allowed alongside things disallowed by ClassiCube ToS.