Direwolf 20 Server 1.7.10 not all items

  • Tech Support section is for getting help with FTB related problems. If there's a repeatable issue that can be labeled as a bug, then please use the issue tracker for the pack or the app at GitHub issue trackers - If there's no repository for a pack that means that the pack is old and/or will not be updated. Bugs for older packs will not be fixed, unless they are critical.
  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

markusbreitenstein

New Member
Jul 29, 2019
24
0
0
Title:
Direwolf 20 Server 1.7.10 not all items
Launcher Version:
1.2.1
Modpack:
Direwolf 20
Modpack Version:
1.7.10
Log Link:
Details of the issue:
I did try to start up the server. all standart items are there, but all the mod items are missing or not collectable. System is windows 7 64 bit with jre7_80 on a dell poweredge 1850. 2 xeon processors with 16 GB of ram. hopy anyone can help to fix this problem.....
 
looks like nobody has a answer..... what a surprise....

Unfortunately, with that outlook, no one will want to give you answers :/ Instead, I'm here now so I will try. The log you uploaded looks like the fml log. Could you instead upload output-server-latest.txt? That should give a better clue to people as to what may be happening.

So, you state the items are missing/noncollectable. Am I to assume you see this within NEI? Is there any sort of worldgen like copper or aluminium? Let me see that other log and I'll try helping out!
 
Unfortunately, with that outlook, no one will want to give you answers :/ Instead, I'm here now so I will try. The log you uploaded looks like the fml log. Could you instead upload output-server-latest.txt? That should give a better clue to people as to what may be happening.

So, you state the items are missing/noncollectable. Am I to assume you see this within NEI? Is there any sort of worldgen like copper or aluminium? Let me see that other log and I'll try helping out!
Hello Likero

Yes, in the NEI, all items are there, but when i want to get one, for example an ore bush, minecraft sey, there is no item with this ID.
Also, when i start sthe server to configurate and build a world, i have many warnings like the following:
codechicken.core.launch.DepLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
when i start the server the first time, it loks very good, but after a restart he skip a lot of items when he rebuild the word at startup...

at the moment i use a forge server, wher i did copy all the mods and configs of direwolf20... till now, anything work well, but is not a perfect solution ;)

i did place all the logfiles at www.breitenstein.ag

thank you

Markus
 
Greetings Markus. I believe I understand what may be happening. It sounds like you are typing the command to give yourself an item wrong, as it's the only way I can duplicate the error. Everything in your logs seems fine as well from what I see. The command is as follows:

Code:
/give <User> <item> <amount>

For example, to give yourself 1 oreberry bush

Code:
/give Markus 1564:11 1

Note the number after the colon is usually needed as well and will matter on what you get. Additionally, you can change NEI settings to cheat mode, and click the item to get it. Left click for a stack, right click for 1. As for the error you pointed out, from my understanding it is normal and won't affect anything.

One last thing, you may want to make sure you've /op yourself. Hope this helps in some way!
 
Greetings Markus. I believe I understand what may be happening. It sounds like you are typing the command to give yourself an item wrong, as it's the only way I can duplicate the error. Everything in your logs seems fine as well from what I see. The command is as follows:

Code:
/give <User> <item> <amount>

For example, to give yourself 1 oreberry bush

Code:
/give Markus 1564:11 1

Note the number after the colon is usually needed as well and will matter on what you get. Additionally, you can change NEI settings to cheat mode, and click the item to get it. Left click for a stack, right click for 1. As for the error you pointed out, from my understanding it is normal and won't affect anything.

One last thing, you may want to make sure you've /op yourself. Hope this helps in some way!


Hi Linkero

I did try again today, but still nearly all mods are not available. thei are shown in the NEI, but the server can not find...
I still think it is a problem if the direwolf20 pack.. maybe there is something wrong inside it... or the install routines are not as good as possible....

with the forge server, it is all working, i keep going like this till i see a solution here in the forum....

thanks and regards

Markus
 
How are you starting the server?
is the mods folder empty?
are there any files you think are missing or you think that don't belong there?
 
How are you starting the server?
is the mods folder empty?
are there any files you think are missing or you think that don't belong there?
hello lencas

The mods are all in the folder... but when i first start up the server, i get many warnings in the console... i can connect the server and play, but i see only the normal minecraft and some parts of some mods...

i did try with linuxmint/java 7, Windows 7/Java 7 and windows server 2003/java 7...

always same problems....

regards

markus
 
I can't see the log files could you use pastebin or something else the http://www.breitenstein.ag/server.txt gives a 404 error.

With how you start the server I actually meant what is in the .bat/.sh file you open or if you don't use .bat/sh files what it is how you run it.
 
I can't see the log files could you use pastebin or something else the http://www.breitenstein.ag/server.txt gives a 404 error.

With how you start the server I actually meant what is in the .bat/.sh file you open or if you don't use .bat/sh files what it is how you run it.

first i use FTBInstall.bat
libraries\wget.exe -O minecraft_server.1.7.10.jar https://s3.amazonaws.com/Minecraft.Download/versions/1.7.10/minecraft_server.1.7.10.jar
libraries\wget.exe -O libraries\net\minecraft\launchwrapper\1.11\launchwrapper-1.11.jar https://libraries.minecraft.net/net/minecraft/launchwrapper/1.11/launchwrapper-1.11.jar

then i use ServerStart.bat
if NOT "%FTB_VERBOSE%"=="yes" (
@Echo off
)

if NOT EXIST minecraft_server.1.7.10.jar (
echo running install script!
call FTBInstall.bat
)

REM Check if java in path
where java > NUL 2>&1

if %ERRORLEVEL% NEQ 0 (
echo No java binary in path. Can't run server, exiting...
pause
exit /B
)

REM Test JVM
REM e.g. 32-bit JVM does not have server\jvm.dll library
java -server -version > java-test.log 2>&1

if %ERRORLEVEL% NEQ 0 (
echo Detected following JVM error:
echo =======================================
cat java-test.log
echo =======================================
echo JVM test failed. Can't run server, Exiting...
pause
exit /B
)

if not exist eula.txt (
echo Missing eula.txt. Startup will fail and eula.txt will be created
echo Make sure to read eula.txt before playing!
goto startserver
)

find "eula=false" eula.txt 1 > NUL 2>&1
if %ERRORLEVEL% EQU 0 (
echo Make sure to read eula.txt before playing! Exiting.
pause
exit /B
)

:startserver
java -server -Xms2048m -Xmx3072m -XX:PermSize=256m -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -jar FTBServer-1.7.10-1291.jar nogui
echo Server process finished
pause

an then i start server with
java -server -Xms2048m -Xmx3072m -jar minecraft_server.1.7.10.jar
 
Ok that is one possible problem down.
I am going to start a server my self to compare the logs.
 
I have found a few differences first of all in fmlserverlatest.txt your log ends with
[00:35:18] [Server thread/INFO] [FML/]: The state engine was in incorrect state ERRORED and forced into state SERVER_STOPPED. Errors may have been discarded.
[00:35:18] [Server thread/INFO] [FML/]: The state engine was in incorrect state ERRORED and forced into state AVAILABLE. Errors may have been discarded.

mine does not. when you tested it on other machines did you re download it? at least I think you tried it on different machines because earlier post.
The thing is looking at that error I would suspect it does not run at all. Maybe another server process is running on your machine?

I am right now just guessing as I have never experienced anything like this. I guess I am going to do a bit more log digging in the hope to find something.
 
I have found a few differences first of all in fmlserverlatest.txt your log ends with
[00:35:18] [Server thread/INFO] [FML/]: The state engine was in incorrect state ERRORED and forced into state SERVER_STOPPED. Errors may have been discarded.
[00:35:18] [Server thread/INFO] [FML/]: The state engine was in incorrect state ERRORED and forced into state AVAILABLE. Errors may have been discarded.

mine does not. when you tested it on other machines did you re download it? at least I think you tried it on different machines because earlier post.
The thing is looking at that error I would suspect it does not run at all. Maybe another server process is running on your machine?

I am right now just guessing as I have never experienced anything like this. I guess I am going to do a bit more log digging in the hope to find something.
i did look, but i did not found another server process or java process....
 
i did look, but i did not found another server process or java process....
another difference
[HatStand/]: Skipping event FMLServerStoppedEvent and marking errored mod HatStand since required dependency Hats has errored
can you restart the server without hats and hatstands? I don't think it is the issue as I would have suspected it to just crash instead of running vanilla but you never know.
 
another difference
[HatStand/]: Skipping event FMLServerStoppedEvent and marking errored mod HatStand since required dependency Hats has errored
can you restart the server without hats and hatstands? I don't think it is the issue as I would have suspected it to just crash instead of running vanilla but you never know.

how i can do this ?
 
go to the mods folder and remove Hats-4.0.1.jar and HatStand-4.0.0.jar
I also saw in the log something about someone wanting to connect with missing mods this is the log of the server right? Because if any of the mods are missing from the client the client should not be able to connect. Unless I misread the log which I doubt
Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, Aroma1997Core, CodeChickenCore, InfiniBows, MobiusCore, NotEnoughItems, ThaumicTinkerer-preloader, OpenModsCore, <CoFH ASM>, act, aobd, appliedenergistics2, Aroma1997CoreHelper, BiblioCraft, BiblioWoodsBoP, BiblioWoodsForestry, BiblioWoodsNatura, BigReactors, Botany, BinnieCore, ExtraBees, ExtraTrees, Genetics, BiomesOPlenty, AWWayofTime, Botania, BuildCraft|Silicon, BuildCraft|Core, BuildCraft|Transport, BuildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Compat, CarpentersBlocks, ChickenChunks, chisel, CoFHCore, CompactSolars, ComputerCraft, debug, denseores, EnderIO, EnderStorage, EnderTech, EnderZoo, ExtraUtilities, factorization.misc, factorization.notify, factorization.dimensionalSlice, factorization, FastCraft, FlatSigns, Forestry, funkylocomotion, Hats, HatStand, HelpFixer, IC2NuclearControl, iChunUtil, IC2, inpure|core, inventorytweaks, IronChest, JABBA, JourneyMapServer, MagicBees, Mantle, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTConstruct, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineTweaker3, powersuits, Morph, Morpheus, Mystcraft, Natura, NEIAddons, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NotEnoughCodecs, numina, ObsidiPlates, OpenBlocks, OpenMods, OpenPeripheral, OpenPeripheralCore, OpenPeripheralIntegration, PneumaticCraft, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Exploration, Railcraft, RedstoneArsenal, StevesCarts, StevesFactoryManager, TConstruct, Thaumcraft, ThaumicExploration, ThaumicTinkerer, ThermalDynamics, ThermalExpansion, ThermalFoundation, TiCTooltips, TMechworks, Translocator, TwilightForest, Waila, witchery, WR-CBE|Core, WR-CBE|Addons, WR-CBE|Logic, Baubles, ForgeMicroblock, ForgeMultipart, McMultipart, MrTJPCoreMod] at CLIENT
[00:34:29] [Server thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, Aroma1997Core, CodeChickenCore, InfiniBows, MobiusCore, NotEnoughItems, ThaumicTinkerer-preloader, OpenModsCore, <CoFH ASM>, act, aobd, appliedenergistics2, Aroma1997CoreHelper, BiblioCraft, BiblioWoodsBoP, BiblioWoodsForestry, BiblioWoodsNatura, BigReactors, Botany, BinnieCore, ExtraBees, ExtraTrees, Genetics, BiomesOPlenty, AWWayofTime, Botania, BuildCraft|Silicon, BuildCraft|Core, BuildCraft|Transport, BuildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Compat, CarpentersBlocks, ChickenChunks, chisel, CoFHCore, CompactSolars, ComputerCraft, debug, denseores, EnderIO, EnderStorage, EnderTech, EnderZoo, ExtraUtilities, factorization.misc, factorization.notify, factorization.dimensionalSlice, factorization, FastCraft, FlatSigns, Forestry, funkylocomotion, Hats, HatStand, HelpFixer, IC2NuclearControl, iChunUtil, IC2, inpure|core, inventorytweaks, IronChest, JABBA, JourneyMapServer, MagicBees, Mantle, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTConstruct, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineTweaker3, powersuits, Morph, Morpheus, Mystcraft, Natura, NEIAddons, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NotEnoughCodecs, numina, ObsidiPlates, OpenBlocks, OpenMods, OpenPeripheral, OpenPeripheralCore, OpenPeripheralIntegration, PneumaticCraft, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Exploration, Railcraft, RedstoneArsenal, StevesCarts, StevesFactoryManager, TConstruct, Thaumcraft, ThaumicExploration, ThaumicTinkerer, ThermalDynamics, ThermalExpansion, ThermalFoundation, TiCTooltips, TMechworks, Translocator, TwilightForest, Waila, witchery, WR-CBE|Core, WR-CBE|Addons, WR-CBE|Logic, Baubles, ForgeMicroblock, ForgeMultipart, McMultipart, MrTJPCoreMod] at SERVER
]
 
go to the mods folder and remove Hats-4.0.1.jar and HatStand-4.0.0.jar
I also saw in the log something about someone wanting to connect with missing mods this is the log of the server right? Because if any of the mods are missing from the client the client should not be able to connect. Unless I misread the log which I doubt
Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, Aroma1997Core, CodeChickenCore, InfiniBows, MobiusCore, NotEnoughItems, ThaumicTinkerer-preloader, OpenModsCore, <CoFH ASM>, act, aobd, appliedenergistics2, Aroma1997CoreHelper, BiblioCraft, BiblioWoodsBoP, BiblioWoodsForestry, BiblioWoodsNatura, BigReactors, Botany, BinnieCore, ExtraBees, ExtraTrees, Genetics, BiomesOPlenty, AWWayofTime, Botania, BuildCraft|Silicon, BuildCraft|Core, BuildCraft|Transport, BuildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Compat, CarpentersBlocks, ChickenChunks, chisel, CoFHCore, CompactSolars, ComputerCraft, debug, denseores, EnderIO, EnderStorage, EnderTech, EnderZoo, ExtraUtilities, factorization.misc, factorization.notify, factorization.dimensionalSlice, factorization, FastCraft, FlatSigns, Forestry, funkylocomotion, Hats, HatStand, HelpFixer, IC2NuclearControl, iChunUtil, IC2, inpure|core, inventorytweaks, IronChest, JABBA, JourneyMapServer, MagicBees, Mantle, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTConstruct, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineTweaker3, powersuits, Morph, Morpheus, Mystcraft, Natura, NEIAddons, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NotEnoughCodecs, numina, ObsidiPlates, OpenBlocks, OpenMods, OpenPeripheral, OpenPeripheralCore, OpenPeripheralIntegration, PneumaticCraft, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Exploration, Railcraft, RedstoneArsenal, StevesCarts, StevesFactoryManager, TConstruct, Thaumcraft, ThaumicExploration, ThaumicTinkerer, ThermalDynamics, ThermalExpansion, ThermalFoundation, TiCTooltips, TMechworks, Translocator, TwilightForest, Waila, witchery, WR-CBE|Core, WR-CBE|Addons, WR-CBE|Logic, Baubles, ForgeMicroblock, ForgeMultipart, McMultipart, MrTJPCoreMod] at CLIENT
[00:34:29] [Server thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, appliedenergistics2-core, Aroma1997Core, CodeChickenCore, InfiniBows, MobiusCore, NotEnoughItems, ThaumicTinkerer-preloader, OpenModsCore, <CoFH ASM>, act, aobd, appliedenergistics2, Aroma1997CoreHelper, BiblioCraft, BiblioWoodsBoP, BiblioWoodsForestry, BiblioWoodsNatura, BigReactors, Botany, BinnieCore, ExtraBees, ExtraTrees, Genetics, BiomesOPlenty, AWWayofTime, Botania, BuildCraft|Silicon, BuildCraft|Core, BuildCraft|Transport, BuildCraft|Builders, BuildCraft|Energy, BuildCraft|Factory, BuildCraft|Compat, CarpentersBlocks, ChickenChunks, chisel, CoFHCore, CompactSolars, ComputerCraft, debug, denseores, EnderIO, EnderStorage, EnderTech, EnderZoo, ExtraUtilities, factorization.misc, factorization.notify, factorization.dimensionalSlice, factorization, FastCraft, FlatSigns, Forestry, funkylocomotion, Hats, HatStand, HelpFixer, IC2NuclearControl, iChunUtil, IC2, inpure|core, inventorytweaks, IronChest, JABBA, JourneyMapServer, MagicBees, Mantle, MineFactoryReloaded, MineFactoryReloaded|CompatAppliedEnergistics, MineFactoryReloaded|CompatAtum, MineFactoryReloaded|CompatBackTools, MineFactoryReloaded|CompatBuildCraft, MineFactoryReloaded|CompatChococraft, MineFactoryReloaded|CompatExtraBiomes, MineFactoryReloaded|CompatForestry, MineFactoryReloaded|CompatForgeMicroblock, MineFactoryReloaded|CompatIC2, MineFactoryReloaded|CompatMystcraft, MineFactoryReloaded|CompatProjRed, MineFactoryReloaded|CompatRailcraft, MineFactoryReloaded|CompatRP2, MineFactoryReloaded|CompatSufficientBiomes, MineFactoryReloaded|CompatThaumcraft, MineFactoryReloaded|CompatThermalExpansion, MineFactoryReloaded|CompatTConstruct, MineFactoryReloaded|CompatTwilightForest, MineFactoryReloaded|CompatVanilla, MineTweaker3, powersuits, Morph, Morpheus, Mystcraft, Natura, NEIAddons, NEIAddons|Botany, NEIAddons|Forestry, NEIAddons|CraftingTables, NEIAddons|ExNihilo, neiintegration, NotEnoughCodecs, numina, ObsidiPlates, OpenBlocks, OpenMods, OpenPeripheral, OpenPeripheralCore, OpenPeripheralIntegration, PneumaticCraft, ProjRed|Core, ProjRed|Compatibility, ProjRed|Integration, ProjRed|Transmission, ProjRed|Illumination, ProjRed|Exploration, Railcraft, RedstoneArsenal, StevesCarts, StevesFactoryManager, TConstruct, Thaumcraft, ThaumicExploration, ThaumicTinkerer, ThermalDynamics, ThermalExpansion, ThermalFoundation, TiCTooltips, TMechworks, Translocator, TwilightForest, Waila, witchery, WR-CBE|Core, WR-CBE|Addons, WR-CBE|Logic, Baubles, ForgeMicroblock, ForgeMultipart, McMultipart, MrTJPCoreMod] at SERVER
]
The Mods are all there in the mods directory, but thei are all loaded with error when creating the world.. i try the thing with the Hats first...
 
I would suggest to just re download it and check if the client and server versions match.
Maybe its an permission problem at least it could be on Linux not sure on windows.
 
I would suggest to just re download it and check if the client and server versions match.
Maybe its an permission problem at least it could be on Linux not sure on windows.

i did download manytimes from launcher... is release 1.2.1 both.... just start server again.. have a look...