Jump to content

Recommended Posts

Posted

Hey Forge community,

i am looking for a helpful Modder who can program a little mod for me, the mod should run on a Forge Server on 1.8.

It needs only one function, when one player (it does not matter how) died all player get kicked from the Server and get a Message like "*name of player how died* died"

I excuse me for my bad English, but i hope you understand what i want to say ^^

I would be really happy if someone can help me with this!

 

Joeigel

 

Posted

People normally don't make mods for those who request it like this. However since this was like one class file to achieve the functionality I think you wanted, I decided to waste some time making it cause I was bored.

 

GIF Preview: http://i.imgur.com/ANGAsNG.gifv I only tested the mod on a local hosted server with only me, and it did kick me when I died but it SHOULD kick anyone on the server. If not and it doesn't work properly let me know and if I've got the time I'll try to fix it. The mod is server side only so don't install it on clients. https://dl.dropboxusercontent.com/u/105870951/Kick%20Everyone%201.8.9%201.0.jar I probably won't leave this on my dropbox forever so save it in a safe place.

Posted

First thanks for your work! :)

When i try ro start the Server it Crashes with the following Error Report:

---- Minecraft Crash Report ----

// I'm sorry, Dave.

 

Time: 09.01.16 21:52

Description: Exception in server tick loop

 

net.minecraftforge.fml.common.WrongMinecraftVersionException: Wrong Minecraft version for KickEveryone

at net.minecraftforge.fml.common.Loader.sortModList(Loader.java:224)

at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:487)

at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:87)

at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:355)

at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:117)

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:438)

at java.lang.Thread.run(Unknown Source)

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- System Details --

Details:

Minecraft Version: 1.8

Operating System: Windows 7 (amd64) version 6.1

Java Version: 1.8.0_66, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 1972517584 bytes (1881 MB) / 2077753344 bytes (1981 MB) up to 12815171584 bytes (12221 MB)

JVM Flags: 5 total; -Xms1024M -Xmx5G -Xincgc -Xms2048m -Xmx12288m

IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

FML: MCP v9.10 FML v8.0.99.99 Minecraft Forge 11.14.4.1563 4 mods loaded, 4 mods active

States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

U mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)

U FML{8.0.99.99} [Forge Mod Loader] (forge-1.8-11.14.4.1563-universal.jar)

U Forge{11.14.4.1563} [Minecraft Forge] (forge-1.8-11.14.4.1563-universal.jar)

U KickEveryone{1.0.0} [Kick Everyone] (Kick Everyone 1.8.9 1.0.jar)

Loaded coremods (and transformers):

Profiler Position: N/A (disabled)

Is Modded: Definitely; Server brand changed to 'fml,forge'

Type: Dedicated Server (map_server.txt)

 

i done something wrong? ^^'

Posted

No you didn't do anything wrong, I assumed that it would work on Minecraft 1.8 even though I made it for 1.8.9 (Because everything should be the same) Apparently I made it require 1.8.9 however.

 

If you CAN use 1.8.9 then you should. 1.8 Stopped being supported when 1.8.8 came out and then the same should be true for 1.8.8 no longer being supported when 1.8.9 came out. If you can't use 1.8.9 however and have to use 1.8, I'll recompile the mod tomorrow for 1.8.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Whenever I click single player to start creating a new world, it crashes due to some client side error. https://paste.ee/p/AKtJ0oHj
    • If the CCL file is only 1kb sized, then there's the problem. That happened to me, you need to download the CCL file from other place (I don't remember from where I did, if you need it, tell me and I'll send u a drive link where I'll upload it ^^)
    • For this what worked for me was putting the LegacyJavaFixer file on the Forge folder, in versions folder, in .minecraft (.minecraft\versions\1.6.4-Forge9.11.1.1345).
    • Hi, I made this mod, inspired by my friends and various loud streamers, and it's perfect for YouTubers who want a little extra pizzaz when they scream in their videos.   The mod works by detecting a high sound level (which you can configure) through your computer’s audio input. Once the sound threshold is reached, your player character will instantly explode! It doesn't use any external APIs; it just relies on the built-in javax sampled package. Check it out!    
    • Good day, I know this is years later and I hate to necropost but I ran into this exact same issue today and yours was the only one that popped up in my search. Turns out my file system permissions were all kinds of messed up in my minecraft directory. Here's how I fixed it: 1. Open terminal 2. Navigate to the .minecraft directory using the cd command, it can be helpful to have your file explorer open next to your terminal if you're a more visual person like me 3. On my OS (PopOS) the folders with messed up permissions had a padlock on them 4. Ran the command  sudo chmod a+rwx [fileName] I also ran  sudo chmod 777 [fileName] and got the same results with both. However it turns out a lot of my sub folders were messed up too which meant I had to make the changes recursively, which in plain English means all of the sub-folders under the directory. So I ended up running the command  sudo chmod -R 777 [fileName] which then changed all of the subfolders and files and ended up saving me a LOT of time doing it one at a time like the first two commands do. 5. After fixing permissions in the various subfolders ran the installer with the command java -jar [latestForgeInstallerNameGoesHereWithoutSquareBrackets] 6. Installed and launched without a hitch! Hope this helps new Linux users as for most advanced users this breakdown isn't very helpful, I'm still learning a ton myself. Additional note that might clear up future confusion, do not include [ or ] in your commands that I've listed here, I just use [ and ] in my personal notes to denote that I need to put something from the file system in the command. If yours was anything like mine all of the files from /de/oceanlabs/mcp/mcp_config/1.18-20211130.085255/mcp_config-1.18-20211130.085255-mappings.txt all had the wrong permissions. -Zamorakphat
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.