In Control!

In Control!

72M Downloads

Basic comands not working. Don't know how to get this to work, please help!

EnochTheSeer opened this issue ยท 17 comments

commented

Hi everyone, I'm trying to remove Zombies, Witches, Skeletons and a few other mobs from the game but for some reason when I load the game nothing happens?

Here is my code:

[{
"mob": [
"Zombie",
"Skeleton"
],
"result": "deny"
},
{
"result": "default"
}
]

I have InControl in the same folder as an OPtifine 1.15.2 version I found and thought that was the problem but when I removed it I got an error and when I put it back there is no error. I've tried BadMobs, but that didn't work either. All I want to do is remove some mobs because I am a Jehovah's Witness and the Bible tells us not to get involved with the undead, witches that sort of thing. I want to play minecraft, but I don't want to play without any mobs, but these specific mobs I can't remove in order to play happily. I've been at this for days and nothing seems to work. Optifine, Shaders and forger all seem to be working but these mob mods don't seem to like me for some reason, haha. Please, please help if anyone knows a solution.

commented

Use "minecraft:zombie" instead of "Zombie"

commented

Use "minecraft:zombie" instead of "Zombie"

I tried that and they are still spawning :-/ thanks for your quick reply!

Code:

[{
"mob": [
"minecraft:zombie",
"minecraft:skeleton"
],
"result": "deny"
},
{
"result": "allow"
}
]

commented

Do you have other mods? Did you get rid of all mobs after changing the rule? Did you restart minecraft?

commented

Do you have other mods? Did you get rid of all mobs after changing the rule? Did you restart minecraft?

Yes, yes and yes! Nothing seems to change anything?

commented

Hi McJty - thanks for your suggestions so far. Please could you give me some more help? I uninstalled whole game, reinstalled forge 1.15.2 and InControl, and still nothing. I've tried everything. I've uninstalled java, put forge in a seperate directory from vanilla, installed both Java 64-bit and regular. I restart the game every time I make a change. But... nothing. Please help! ๐Ÿ˜ญ Thanks.

commented

Oh btw, where are you putting that rule file? Also can you give me the entire log?

commented

Not sure why it isn't working. What other mods do you have btw? Other mods that might have something to do with spawning

commented

Hmm weird. No idea what's going on at the moment

commented

Me neither! What do you suggest I do?

commented
  • Only InControl is in the mods folder, no other mod.
  • I have the spawn rule file in it's normal folder, the / config/ incontrol folder.
  • I wasn't sure which log you wanted as I don't know much about logs (sorry!) so I attached both the logs and debug files. Attatched also is a screen shot of the logs folder if there's a more appropriate file for me to send! Thanks again.

logs

debug.log

latest.log

commented

Can you show me your config/incontrol folder too (screenshot like you did above)

commented

Yeah, sure!
Rule file folder

commented

Hi McJty, I hope you're well. Just wondering what you suggest I do? I'm sort of at my wits end at this point. I'd prefer not to play completely peaceful mode, although I would if I had to, but if not I would deeply appreciate anything you can think of? Thanks for your help so far! Have a good day.

commented

I really have no idea. This is working for other people so I'm out of clues atm. Sorry :-(

commented

If you can come on my discord (https://discord.gg/dRTtrdK) there are other people there that may be able to sort out your problem

commented

Hey, thanks for your help. I've just decided to use command blocks and edit the level.dat file to remove cheats and play like that, haha. It's working fine, now :-) ๐Ÿ‘

Have a lovely day all the same! :-D

commented

[{
"mob": [
"minecraft:zombie",
"minecraft:skeleton"
],
"result": "deny"
},
{
"result": "allow"
}
]

having 'result: default' or 'result: allow' at the end might be causing the zombie and skeleton to slip through
try removing it.

this below should work if it doesn't try the second one

[{
"mob": [
"minecraft:zombie",
"minecraft:skeleton"
],
"result": "deny"
}
]

[
{
"mob": [
"minecraft:zombie",
"minecraft:skeleton"
],
"result": "deny"
}
]