-
Posts
326 -
Joined
-
Last visited
Everything posted by thebird
-
You have a better chance of someone helping you if you post this in the right place.
-
No Update For Tekkit Lite Found??
thebird replied to xXJohnnySwagAlotXx's topic in Tekkit Lite Discussion
Tekkit Lite hasn't ever been running on 1.5.1, I think that you probably started playing Tekkit and accidentally changed to Tekkit Lite. -
EDIT: The AutoIt script I posted earlier was stupid, here is a better one. Use Task Scheduler to start this one when you want the server to reboot. Use Task Scheduler to start the minecraft server after the computer reboots. WinActivate("C:\Windows\system32\cmd.exe") Send("s") Send("t") Send("o") Send("p") Send("{ENTER}") Sleep(10000) Shutdown(6)
-
Server nub just a few simple questions..
thebird replied to bloodshedderxxi's topic in Server Op Swap Shop
You forwarded the correct port to the right IP address and made sure that there is an exception in your firewall right? -
You can use Bukkit plugins if you use BukkitForge but you can't make a Tekkit Lite Bukkit server.
-
Server nub just a few simple questions..
thebird replied to bloodshedderxxi's topic in Server Op Swap Shop
Usually this means that you're not running the same version as the server. What mods does it say are missing? -
Issue with Tekkit 0.6.5 Applied Energistics
thebird replied to Thomere's topic in Tekkit Lite Discussion
Did you use a battery with a charge when you made the pattern? I just made a generator pattern with a partially charged battery and gave the system a pattern for making new RE-Batteries, it said it was missing a partially charged RE-Battery. It needs batteries that are identical to the ones you used when you made the pattern. The damage values on a RE-battery change when you charge it so the auto-crafting system doesn't see it as the same item. -
Just in case these suggestions make it worse, backup your %AppData%\.technic\tekkitlite folder before you try what I post below. Try the following four steps first, they fixed this problem for someone else. 1. Go to %AppData%\.technic\tekkitlite\saves 2. Delete the NEI folder 3. Delete NEI.dat 4. See if the problem persists If that doesn't work then try these. 1. Delete the tekkitlite folder 2. Start TekkitLite so that a fresh copy is downloaded, then turn it back off. 3. Copy your world folder from your backup and put it in %AppData%\.technic\tekkitlite\saves 4. Start TekkitLite and see if the problem persists. 5. If the problem still exists, please post again saying that none of this worked, otherwise you should be fine restoring your texture packs folder and options.txt. I am assuming that the problem is with NEI, that you are running Windows, and that you are playing singleplayer. Do not forget to make a backup first.
-
I found out why it wasn't working for you, the file that maxis010 linked is actually for the vanilla server. You need to get the forge version. I used the 1.4.6 version and it worked fine. You just drop it in the mods folder.
-
Well, from the little bit of research that I just did it seems like this isn't a problem. Unless you are experiencing crashes of course. It is apparently MFR changing the way some vanilla blocks work, like glass panes so that they can connect to stained glass panes.
-
Your log shouldn't be empty, is the size of your log file greater than 0 at any point? I am going to try to install that mod later to see if I can help you figure out what is wrong with yours, I won't be able to do it till later tonight when everybody gets off my server though.
-
I meant to try to make one of these when I first saw this thread but got busy and forgot. Here is one for Kerbal Space Program, it is animated (2 frames) and has a file size of 908 bytes.
-
You're trying to carry rovers on a space plane? That seems insane to me, my space planes keep trying to become submarines. Also, here is a screenshot from my recent experiments with those ion engines.
-
How do I make a H/M server with the new launcher?
thebird replied to deathrogue1997's topic in Hack/Mine Discussion
Did you guys read the sticky? The steps in it still work fine. -
Read this thread to resolve your issue with NEI, and try /gamemode [username] 0. Use a one instead of a zero for creative mode. Remember that Tekkit Classic is running on Minecraft 1.2.5, I am pretty sure that the gamemode command that you are trying only works in later versions.
-
What version of the launcher are you using? I just downloaded a new copy of it (build 203) and Tekkit Lite 0.6.1 is selectable but it is at the bottom of the list, instead of at the top.
-
You probably have build 3.1.3 selected in the launcher while your server is running 3.1.2, try selecting build 3.1.2 in the launcher.
-
You're right, the links on the hack/mine wiki are out of date. The hack/mine thread on minecraftforum.net has the current version and it is also the first result I get when I search for it. Still easy to find.
-
where can i download plugins for tekkit classic
thebird replied to jaster895's topic in Server Op Swap Shop
Can you really not find these on your own? It took me less than a minute to find the download pages for both of these plugins. I'm not going to help you configure these but make sure that you aren't trying to use anything that was added since the 1.2.5 versions of factions or towny. -
You gave up way to quickly man. I just searched for "hack/mine" on Google and the first two results get you pages with the download you want. The hack/mine wiki even has the links on the first page!
-
where can i download plugins for tekkit classic
thebird replied to jaster895's topic in Server Op Swap Shop
Dude, my last post had a link to their download page. You can get the version you want there. -
where can i download plugins for tekkit classic
thebird replied to jaster895's topic in Server Op Swap Shop
Did you even try looking for the factions plugin? -
Wrong version of mods - SERVER ISSUES
thebird replied to 123a169's topic in Tekkit Classic Discussion
You should post this in the bug board for the modpack next time. Make sure that your client is running version 3.1.2. If you are running 3.1.2 then try disabling your anti-virus program and re-downloading Tekkit. -
You have three errors. Here are some hints that will help you fix them. 1. if THEN else 2. You call something twice but left part off the first time. 3. Lua is cAsE-SeNsiTiVe The FALSE in "redstone.getInput("back", false)" does nothing by the way.
-
'java' is not recognized as an internal or external command, ....
thebird replied to grigorec's question in Tekkit Lite
Windows hides file extensions by default, the .bat is there but you can't see it. The error you are getting means that Java isn't installed or Java isn't in your PATH system variable. Try starting your server with the following batch file. @ECHO OFF set TEKKITDIR=%CD% IF NOT EXIST "C:Program Files (x86)Javajre7bin" GOTO SECONDDIR CD "C:Program Files (x86)Javajre7bin" @ECHO ON java -Xmx2G -Xms1G -jar %TEKKITDIR%Tekkit.jar nogui --nojline PAUSE GOTO END :SECONDDIR IF NOT EXIST "C:Program FilesJavajre7bin" GOTO ERROR @ECHO ON java -Xmx2G -Xms1G -jar %TEKKITDIR%Tekkit.jar nogui --nojline PAUSE GOTO END :ERROR ECHO "CANNOT FIND JAVA.EXE OR JAVA DIRECTORY. :END