
thebest108
Members-
Posts
503 -
Joined
-
Last visited
Everything posted by thebest108
-
Just to check if it is a chunk problem, start a new world so a bunch of chunks will generate at the same time.
-
Question about EntityPlayer.getItemInUse() being Side.CLIENT
thebest108 replied to ShetiPhian's topic in General Discussion
Why do you need to have getItemInUse? There may be an alternate solution. -
Check IPlayertracker
-
Inventory item ban mod needed (edit: i made one)
thebest108 replied to GameMakerWorld's topic in General Discussion
I see what you did there -
Event for block placement and breaking by mods or non-players
thebest108 replied to Evert's topic in Suggestions
Even if this is added, you'd need to have mod cooperation to do something like blockDestroyedByMod=true in the mods -
Remember to add kb.unPress
-
Hmm, add a Minecraft.thePlayer.addChatMessage("derp") and check if it out puts the message once or twice when you shift, if once, that means that it's only being called by client and that you should change to cast to EntitPlayerMP, otherwise try adding a tick handler in a proxy so you can check players inventory there.
-
Inventory item ban mod needed (edit: i made one)
thebest108 replied to GameMakerWorld's topic in General Discussion
Here's the link http://www.minecraftforum.net/topic/1419836-131-forge-4x-events-howto/ Ps all the events are located in the minecraft forge package -
There is a support section you know, also... WHERE'S THE LOG???
-
Inventory item ban mod needed (edit: i made one)
thebest108 replied to GameMakerWorld's topic in General Discussion
AtomStricker has an event tutorial on the mc forums. It's a little outdated, but overrall things still work the way he shows it -
What's wrong with 2 for loops?
-
A little bit more explaining please?
-
Installation Guide on Installing Minecraft Forge API
thebest108 replied to connormcwood's topic in General Discussion
Ahem, wrong forum! -
IC2 recipe remover/changer needed
thebest108 replied to GameMakerWorld's topic in General Discussion
If you still can't get it working by friday, then I'll just make it. I've been busy with school lately so I haven't gotten any time to code -
Need a Forge mod, willing to pay for the development
thebest108 replied to MrHedgehog's topic in General Discussion
Which plugin? -
IC2 recipe remover/changer needed
thebest108 replied to GameMakerWorld's topic in General Discussion
Just rename it to "z*Insert what you named it here*" -
IC2 recipe remover/changer needed
thebest108 replied to GameMakerWorld's topic in General Discussion
Step 1: decompile minecraft with forge Step 2: make a basic mod file(be sure to set client required and server required to false) Step 3: install the ic2 API in the src package Step 4: look for the part of the ic2 API that handles recipes Step 5: on preint disable whatever recipies you want Step 6: run the .bat recompil Step 7: run the .bat reObsfucate Step 8: get the mod file from the reObsfucate folder Step 9: put in your servers mod folder (be sure to have it load after ic2) Step 10: Please give me a thank you EDIT: just so you know the mod will not work in eclipse. It'll either crash or not do anything. This is simply because the API doesn't actually do anything itself, it instead redirects the requests to other files AKA ic2. This is nothing to worry about, as it should run normally within a compiled version of minecraft. -
IC2 recipe remover/changer needed
thebest108 replied to GameMakerWorld's topic in General Discussion
Lol thats ridiculously easy. Just spend an hour or two of learning and you'll probably be all set to do it -
Inventory item ban mod needed (edit: i made one)
thebest108 replied to GameMakerWorld's topic in General Discussion
I see, your one of those server owners who likes to ban all the fun stuff. It wouldnt necassaraly be too hard. It's really as simple as checking a players inventory on playerEvent so it's probably simple enough for you to code yourself -
Procedural dungeon generation Mod - expert opinion
thebest108 replied to MasterRoland's topic in General Discussion
I doubt you would need to make it a core mod. Unless there's some protected variable that you really need access to, you should be fine. Nbt is what minecraft uses to store custom data to an ItemStack ex. Tool enchantments. It is also used for things like storage blocks ex. A Chest containing items. You could be able to make a key have a custom pair of information so when you use it on a lock, it will read the nbt, and if it matches the lock it will unlock the lock. But still, for that you would need to generate the nbt randomly and in pairs. -
Qn - Upgrading Forge with same Minecraft
thebest108 replied to deadwoods's topic in General Discussion
You didn't know? You don't have to put anything in the jars folder anymore. It'll download them automaticly -
IC2 recipe remover/changer needed
thebest108 replied to GameMakerWorld's topic in General Discussion
You'll have to ask the mod makers to add a config setting for that -
In your block class, be sure to put setBlockName="aName" Also make sure no other blocks have that same name
-
How to decompile a forge mod properly?
thebest108 replied to pitman-87's topic in General Discussion
Why dont you just distribute the API upon request?