Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • yarrmateys

yarrmateys

Members
 View Profile  See their activity
  • Content Count

    42
  • Joined

    August 22, 2012
  • Last visited

    September 7, 2017

Community Reputation

7 Neutral

About yarrmateys

  • Rank
    Tree Puncher

Converted

  • Gender
    Undisclosed
  1. yarrmateys

    mod id replaced with <PROFILE NAME> if it matches username in multimc.

    yarrmateys replied to yarrmateys's topic in Modder Support

    if it's just that then it should be fine. i didn't think that it may simply be multimc's attempt to mask my username and anything referring to it, though by masking the mod id it draws attention to it anyway.
    • April 23, 2015
    • 2 replies
  2. yarrmateys

    mod id replaced with <PROFILE NAME> if it matches username in multimc.

    yarrmateys posted a topic in Modder Support

    when loading a mod through eclipse (and so, with a random name) it shows the modid correctly, when loaded through vanilla it sets the user to my name so everything seems fine too (though the replacing might be happening there too, just invisible to me), but if i load it through multimc, i'm getting the mod name switched to <PROFILE NAME>. eclipse/vanilla: [21:05:47] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, yarrmateys_cutemobmodels] at CLIENT multimc: [21:06:39] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, <PROFILE NAME>_cutemobmodels] at CLIENT i'm not sure if this is a feature or a bug, and i wonder if it'll cause any problems for other mods that may search for specific mod id and not find it because it's called differently after loading. should it act that way? this is on 11.14.1.1390, but it happened with every 1.8 version. before that the mod id was slightly different so it didn't change. no crashes, just a strange behavior i haven't seen before.
    • April 23, 2015
    • 2 replies
  3. yarrmateys

    Forge: It's time to say...

    yarrmateys replied to LexManos's topic in Releases

    it probably will, since 1.8.1 was mostly a bugfix release. that said, 1.8.2 is probably going to be released sometime soon, if it's not too long from now 1.8.1 might even get skipped or something.
    • February 1, 2015
    • 85 replies
  4. yarrmateys

    CRASH MINECRAFT FORGE 1.7.2 - 10.12.2.1147 [LATEST]

    yarrmateys replied to ArtutoGamerYT's topic in Support & Bug Reports

    1.7.2 is no longer supported, you should probably consider upgrading to 1.7.10 if possible. most 1.7.2 mods should be compatible with it. that said, you have a mod installed twice. delete one of them, preferably the one with (1) in its filename.
    • January 26, 2015
    • 2 replies
  5. yarrmateys

    latest versions of Forge 1.8 beta

    yarrmateys replied to TheGreyGhost's topic in Support & Bug Reports

    http://files.minecraftforge.net/minecraftforge/1.8
    • January 11, 2015
    • 1 reply
  6. yarrmateys

    Perhaps a server is already running on that port ERROR and more ram (server)

    yarrmateys replied to eyalgi11's topic in Support & Bug Reports

    how much ram do you have? as far as i remember, with 4 or less gb of ram or on 32 bit systems you can assign only up to half of your total ram to a running program, and that's in good conditions when nothing else runs. back when i had 4 gb ram, i could only assign up to 1536 mb of ram, anything above that would crash. i had to turn everything else off, especially browsers, otherwise even that didn't work. if you use a built in gpu like intel hd or such, that will further drain your ram since it reserves some (about half a gb) for itself as vram.
    • January 10, 2015
    • 6 replies
  7. yarrmateys

    Launch server through local network

    yarrmateys replied to Kamigaku's topic in Support & Bug Reports

    without the logs the answer will always be "a wizard did it". a server should create a log under logs/fml-server-latest.log in your server folder. it should contain all data the server outputs, including the reason for a crash. don't forget to open eula.txt and change false to true for newer minecraft versions. you won't be able to play it without agreeing to the eula. also note that unless it's 1.7.10 or 1.8, forge devs won't help since the older versions are already abandoned.
    • December 25, 2014
    • 7 replies
  8. yarrmateys

    ConcurrentModificationException in 1.8 with java 8

    yarrmateys replied to yarrmateys's topic in Support & Bug Reports

    in this case it was the entity prinny spawned through spawn egg, but when i had the event replacer replace vanilla mobs with custom ones, any one of them would cause that as soon as the world was started if there already were a few replaceable mobs present. most of those custom entities were nearly blank extensions to original mob, only having the main class that would modify their hitbox size. code for the prinny entity: https://dl.dropboxusercontent.com/u/62600417/Minecraft/etc/ent1.txt code for the blank entity: https://dl.dropboxusercontent.com/u/62600417/Minecraft/etc/exmob.txt stuff for the event, in preinit: EntityRegistry.registerModEntity(EntityCMMSpider.class, "Spider", 18, YarrCuteMobModels.instance, 40, 1, true); render, in init: if (YarrCuteMobModels.SpiderReplaceModel == true) RenderingRegistry.registerEntityRenderingHandler(EntityCMMSpider.class, new RenderCMMSpiderCMM(new ModelCMMSpider(), 0.3F)); and in EntityJoinWorldEvent if (event.entity.getClass() == net.minecraft.entity.monster.EntitySpider.class)//.getSimpleName() == "EntitySpider")// { EntityCMMSpider spawnEntity = new EntityCMMSpider(event.world); Entity entitySrc = event.entity; spawnEntity.setPosition(event.entity.posX, event.entity.posY, event.entity.posZ); // spawnEntity.setAngles(event.entity.rotationPitch, event.entity.rotationYaw); event.world.spawnEntityInWorld(spawnEntity); spawnEntity.func_180432_n(entitySrc); event.entity.setDead(); }
    • December 13, 2014
    • 2 replies
  9. yarrmateys

    ConcurrentModificationException in 1.8 with java 8

    yarrmateys posted a topic in Support & Bug Reports

    i spawned several mobs in lava, and as they died (i think it was on their death. they explode if they die in fire/lava. it could be from spawning them too), the game crashed. it happened in other cases too though, such as event replacing entity on spawn before i disabled that. https://dl.dropboxusercontent.com/u/62600417/fml-client-latest_201412130310.log note, this doesn't happen in java 7.
    • December 13, 2014
    • 2 replies
  10. yarrmateys

    Is there a way to pick which mods you want to use?

    yarrmateys replied to LadyGrelka's topic in Support & Bug Reports

    the easiest way would be to use multimc launcher. making separate profiles manually may sound easy for an advanced user, but for regular player it rarely is. you can create a profile for both you and your kids (or even one for each kid if they wanted different mods), then add mods you chose and then copy the saves over to the right folders/profiles, or just start new worlds. to run those all you'd have to do is click the appropriate profile icon. they come with their own mod list, own save folders, everything is separate for each profile. http://multimc.org/
    • December 8, 2014
    • 6 replies
  11. yarrmateys

    Forge's Liquid ISBRH doesn't render backfaces

    yarrmateys replied to Draco18s's topic in Support & Bug Reports

    the wait's probably until 1.8 is out of beta phase and has a recommended version, so that there's no problems with unfinished stuff, un-renamed classes and such.
    • December 6, 2014
    • 3 replies
  12. yarrmateys

    Updating your mod to 1.8

    yarrmateys replied to Eternaldoom's topic in User Submitted Tutorials

    is there something specific needed for entity textures? i've been fighting with this for a while, but each time i attempt to spawn an entity, all i get is a crash: i'm pretty sure i have the texture defined with private static final ResourceLocation and later on a ResourceLocation getEntityTexture that refers to it, but i still get that the moment the entity's spawned. edit: apparently i should've waited a few more hours before posting this. i didn't initialize the rendering correctly, my old method doesn't seem to work anymore. i fixed the problem.
    • November 30, 2014
    • 42 replies
  13. yarrmateys

    [1.8] Need help updating my mod

    yarrmateys replied to daniel_stephen's topic in Modder Support

    note, the forgesrc files will be in snapshot_nodoc/date/ rather than main folder as in 1.7.10 and earlier.
    • November 30, 2014
    • 9 replies
  14. yarrmateys

    Forge: It's time to say...

    yarrmateys replied to LexManos's topic in Releases

    no need for etas, unless you're some kind of corporation who does things for money, they exist to be broken. you either do things ahead of time and then release it sooner, or don't make it in time and delay or release buggy version. everyone hates delays, glaringly obvious bugs and such, and always blames it on the dev. he gave us something much more valuable, a "what's left" list.
    • November 23, 2014
    • 85 replies
  15. yarrmateys

    Microsoft buys Mojang/Minecraft ... FAQ for Forge Team/LexManos

    yarrmateys replied to Aridhol's topic in General Discussion

    modding on xbox and on pc are two different things, so i doubt xbox tos means anything for a pc game. on xbox modding usually requires you to mod your xbox first, which itself is against their tos. most of the times when you mod a console, you unlock it for online cheating and piracy, and they really don't like either. doesn't help that when people think of mods on a console, it's almost always for online cheating/hacking. on a pc modding is usually more true to the title, since most pc game mods are actual game modifications to add or change content, not just an invincibility hack that disrupts online play and affects other players' opinions of the game and the company that owns it. it also mentions single player, probably because of its requirement of connecting to mojang/future microsoft servers. it would mean most likely every client and server having to run in offline mode, so no more skins, no uuids and such. or alternatively a custom host for those.
    • September 15, 2014
    • 38 replies
      • 1
      • Like
  • All Activity
  • Home
  • yarrmateys
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community