Search results

  • 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
  1. J

    is there a way to force name tags to be off for admins? [mindcrack van or bukkitforge]

    The ultimate cloak from GT doesn't work either.. I have been trying to find a way to do this without plugins also and so far have had no luck.. I "thought" I remember fighus havnt invis command but looked it up recently and couldnt find anything
  2. J

    T5 spawner not spawning unless player is near.

    no one knows? hmm dang... this is kinda frustrating lol I guess its a vanilla mob mechanic.. they despawn if your further then 128 blocks away.. Finally found some info on it.. Was hoping that soul shards mobs would use there own rules.
  3. J

    T5 spawner not spawning unless player is near.

    I swear that T5 spawners were supposed to spawn mobs even if a player was not near it.. I have a t5 Skelly spawner and the area is chunk loaded but when I leave the area the mods stop spawning.. Come to think of it the spawner is going much much slower since I upgraded my server to version...
  4. J

    working FTP BackUp Plugin MCPC+

    I have actually been wanting to ask something like this myself. Except I have my server hosted through Creeper Host. And I don't use Bukkitforge or Mcpc+.. Is there any way I can maybe set WinSCP to automatically download the server files.. Or is there any way that you know of to do...
  5. J

    Headaches of updating server with mods added.

    Well I've been running a small server for some friends and myself using the Mindcrack Pack. I have the server hosted through Creeperhost which has worked out great so far. THing is tho I added a few mods to the server myself like mystcraft,bibliocraft,additionalpipes & forgeessentials...
  6. J

    Casual Server "The Shack" |Mindcrack | Looking for 1 or 2 Friends with vent or skype to play on my server.

    Just an update I'm still Looking for 1 or 2 folks and I'm adding Thaumic Bees to the server today. I might add Applied Energistics but for now I'm atleast adding thaumic bees. If your not sure how to install a mod into the mod pack I can help you out its really easy. EDIT: Well looks like...
  7. J

    Pros/Cons of Mindcrack to Ultimate

    Yah I guess nether ores would be alright I would probably keep that one but the others I listed I would remove from my server for sure. Im not sure if its worth making the switch for me since I dont want all the mods in the ultimate just a few that I don't currently have in Mindcrack
  8. J

    Pros/Cons of Mindcrack to Ultimate

    Looking at the mods included in the Ultimate pack I am thinking about switching if I can remove certain mods without any issues since Some of them I was going to add to my mindcrack server anyways or already have added... Could I remove these mods from the ultimate pack when I switch from...
  9. J

    Additional buildcraft objects

    I've been using, AdditionalPipes-2.1.3u37-1.4.6 It has been working great Its not an official release but I"ve been using it since the mindcrack pack came out with any issues. I mainy use it for the phased pipes and insertion pipes. WIth tesseracts now I can use them instead of phased pipes...
  10. J

    Casual Server "The Shack" |Mindcrack | Looking for 1 or 2 Friends with vent or skype to play on my server.

    I have my own very small server that is just 1 of my IRL friends, 1 guy I brought in from the forums and Me. They don't really play as often as me so things get pretty lonely lol. I play pretty much every day for many hours a day and really enjoy Modded minecraft. But I also enjoy having friends...
  11. J

    Quick question

    Its forge essentials that has those commands I have it installed on my server. Or you could installed bukkitforge or MCPC+ and install a plugin with those commands. But the easiest way is to just use Forgeessentials.
  12. J

    What if there was only 1 Mod?

    I would cheat and install ic2 and gregtech. Or thaumcraft.. since it can do alot out of the box by its self.
  13. J

    how to craft chips

    Put a laser or a few above the table or very close to it and power the laser with MJ. Then you put the ender pearl or redstone in the left area of the table and on the right it should show you what items you can make with the ingredients. Click on the item you want to craft on the right and it...
  14. J

    Pros/Cons of Mindcrack to Ultimate

    I was debating doing this at first but then I thought about the balance and feel of the pack.. I like the mindcrack pack the mods in it work well together. the ultimate pack honestly just has to much in it for me.. Well not really that it has to much in it its that the mods that are in it, some...
  15. J

    computercraft, quick question.

    So far I have this: m = peripheral.wrap("right") m.setAutoCollect(true) enchanted = m.enchant(30) while enchanted == false do m.enchant(30) sleep (10) end It seems to work and keeps trying to enchant until it has 30 levels. Now to put in the code to get the books and dump the books into a...
  16. J

    computercraft, quick question.

    This works but like you said It will keep trying constantly I would like to have it check ever like 5 seconds instead.
  17. J

    computercraft, quick question.

    Yah I have th ya Ive had that page bookmarked actually :) I have the functions that can be used on the xpturtle but Im not sure how to say in lua when m.getLevels is = or gretter then 30 then... if m.getLevels() == > 30 then .. Will that work?
  18. J

    computercraft, quick question.

    will this work instead of what you had there? enchanted = m.enchant(30) while enchanted == false do m.enchant(30) end
  19. J

    computercraft, quick question.

    How can I write if m.enchant is equal or greater then 30? this code below doesnt seem to work for some reason; In not sure it I totally understand this piece of code. I know the first part says While the variable Enchanted equals false then do.... but the next line confuses me.. is the next...
  20. J

    computercraft, quick question.

    Yah I figured that I would have to put the whole thing into a loop and that part of the code would be first.. Can you put a while loop inside a loop? I've never programmed before like I said im learning as I go. I did do some research but the extent of my programming with anything is some autoit...