Jump to content

Request to be unbanned from #minecraftforge IRC


aidancbrady

Recommended Posts

    Hello.  I'm fairly new to the Forge community, so I was fairly disappointed when I was banned from the #minecraftforge IRC channel.  I've been making Minecraft mods for quite some time now and just recently converted all my mods to Forge, so I've wanted to get to know some other fellow modders, preferably on your IRC channel. 

 

    One day, I saw a linux user talking about how the MCP pre-release should have had a different format for it's non-windows users.  At this point, I didn't know that SeargeDP had included a '.zip' format in his release, so I commented that I agreed with the linux user.  As a mac user, I didn't think it was possible to extract '.7z' files on my OS.  A few seconds after commenting about this, LexManos himself called me a 'mac fag' and that we, as in all mac owners, are always wanting everyone else to cater to us.  I quickly responded that this was not the case, and that I didn't (think) I had a way to use the MCP pre-release. 

 

    LexManos then kicked me with the message 'To Google!".  I searched, and realized that there was a way to extract '.7z' files on OS X.  Therefore, I logged back in to the #minecraftforge IRC and said that Lex was right, and that there was a way to use MCP on my computer.  I also posted that I was sad I wasn't able to start off on good terms with LexManos, and that I was sorry about my question.  LexManos then banned me with the message "Does this?", and I have not been able to log into the channel since.  It's been about 5 days now.

 

    If LexManos happens to read this, please realize I'm sorry if I did anything wrong, and if there's anything I can do to fix the problem, please tell me.  I appreciate your work so much, and I hate to be looked upon as a disappointment to to the community.

 

Thanks for your time.

 

-aidancbrady

Link to comment
Share on other sites

You probably didn't do anything. Everybody is banned until they get approval to keep out noobs spamming about updates and why forge for 1.2.5 doesn't work for minecraft 1.3.1.

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Link to comment
Share on other sites

Correct.  The forge channel tends toward modders for forge rather than modders using forge, so when he sees things like that he tends to ban, it is expected, happens to many, do not take it bad.  :)

More modders that 'use' forge rather than working on forge tend to hang out in #Direwolf20 or here on these forums.  The forums are good, since records are good.  :)

Link to comment
Share on other sites

Thank you very much for your kind response and clarification.  I've been so used to chatting on #risucraft, where actual code talk is extremely rare.  I will definitely partake in conversation here on the forums, but do you know how long the ban is in place for?  I'd much prefer to chat on #minecraftforge than the other modding channels.

 

Thanks.

-aidancbrady

Link to comment
Share on other sites

Thanks so much.  As I said before, I appreciate what you guys do so much.

 

-aidancbrady

We appreciate somebody who isn't a complete and total idiot asking for stuff like:

"When is the 1.3.1 update?"

"How do I install forge?"

"HOW DO I MAKE A MOD?!?!"

but they do ask questions nicely.

So, what would happen if I did push that shiny red button over there? ... Really? ... Can I try it? ... Damn.

Link to comment
Share on other sites

#minecraforge is for both forge modders and forge devs

I just don't pander to mac fags as they are indeed retarded.

Anyone who doesn't take 10 seconds to do a small bit of research, but instead takes time out of my day by bitching about it should not be in there.

Hence the ban.

And the ban if for however long I feel like it. I clear the banlist ever now and again.

Requests to be unbanned typically just end up with me marking you down for longer time.

 

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I have a problem, I am trying to put two different effects to two different armors but when I run it only the emerald armor effect works. This is the code public class ModArmorItem extends ArmorItem{ private static final Map<ArmorMaterial, MobEffectInstance> MATERIAL_TO_EFFECT_MAP = (new ImmutableMap.Builder<ArmorMaterial, MobEffectInstance>()) .put(ModArmorMaterials.EMERALD, new MobEffectInstance(MobEffects.HERO_OF_THE_VILLAGE,200, 1,false,false, true)) .put(ModArmorMaterials.OBSIDIAN, new MobEffectInstance(MobEffects.FIRE_RESISTANCE,200, 1,false,false, true)).build(); public ModArmorItem(ArmorMaterial pMaterial, Type pType, Properties pProperties) { super(pMaterial, pType, pProperties); } @Override public void onArmorTick(ItemStack stack, Level world, Player player){ if (!world.isClientSide()) { if (hasFullSuitOfArmorOn(player)) { evaluateArmorEffects(player); } } } private void evaluateArmorEffects(Player player) { for (Map.Entry<ArmorMaterial,MobEffectInstance> entry : MATERIAL_TO_EFFECT_MAP.entrySet()){ ArmorMaterial mapArmorMaterial = entry.getKey(); MobEffectInstance mapStatusEffect = entry.getValue(); if (hasCorrectArmorOn(mapArmorMaterial, player)) { addStatusEffectForMaterial(player, mapArmorMaterial, mapStatusEffect); } } } private void addStatusEffectForMaterial(Player player, ArmorMaterial mapArmorMaterial, MobEffectInstance mapStatusEffect) { boolean hasPlayerEffect = player.hasEffect(mapStatusEffect.getEffect()); if (hasCorrectArmorOn(mapArmorMaterial, player) && !hasPlayerEffect) { player.addEffect(new MobEffectInstance(mapStatusEffect)); } } private boolean hasCorrectArmorOn(ArmorMaterial material, Player player) { for (ItemStack armorStack : player.getInventory().armor){ if (!(armorStack.getItem() instanceof ArmorItem)) { return false; } } ArmorItem helmet = ((ArmorItem)player.getInventory().getArmor(3).getItem()); ArmorItem breastplace = ((ArmorItem)player.getInventory().getArmor(2).getItem()); ArmorItem leggins = ((ArmorItem)player.getInventory().getArmor(1).getItem()); ArmorItem boots = ((ArmorItem)player.getInventory().getArmor(0).getItem()); return helmet.getMaterial() == material && breastplace.getMaterial() == material && leggins.getMaterial() == material && boots.getMaterial() == material; } private boolean hasFullSuitOfArmorOn(Player player){ ItemStack helmet = player.getInventory().getArmor(3); ItemStack breastplace = player.getInventory().getArmor(2); ItemStack leggins = player.getInventory().getArmor(1); ItemStack boots = player.getInventory().getArmor(0); return !helmet.isEmpty() && !breastplace.isEmpty() && !leggins.isEmpty() && !boots.isEmpty(); } } Also when I place two effects on the same armor, the game crashes. Here is the crash file. The code is the same, only this part is different   private static final Map<ArmorMaterial, MobEffectInstance> MATERIAL_TO_EFFECT_MAP = (new ImmutableMap.Builder<ArmorMaterial, MobEffectInstance>()) .put(ModArmorMaterials.EMERALD, new MobEffectInstance(MobEffects.HERO_OF_THE_VILLAGE,200, 1,false,false, true)) .put(ModArmorMaterials.EMERALD, new MobEffectInstance(MobEffects.FIRE_RESISTANCE,200, 1,false,false, true)).build(); I hope you guys can help me. Thanks.
    • I removed all related embeddium and oculus mods, i just tested it by disconnecting and the error happened again. heres the report https://pastebin.com/1kcR5wAt   EDIT: i tried removing xaeros and also smoothboot thinking there may be an issue there, nothing, heres that report too. https://pastebin.com/zQS7i9rM
    • Hi, I need suggestions. I am a beginner in Minecraft Modding. I would like to apply custom effects to some armors, something like: more chance to drop seeds, change zombie awareness, drop more pieces of wood when chopping logs, and things like that. How would you recommend me to do it, is there any library that has something similar and which ones would you recommend me?.
    • "downloading minecraft server failed, invalid Checksum. try again, or manually place server.jar to skip download"    
    • You have to create an Entity class called PlayerPart and use multiple of them to make the different parts of the player. See EnderDragonPart.java source code. The green hitboxes of the dragon are all EnderDragonParts
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.