-
Posts
642 -
Joined
-
Last visited
Everything posted by TheRPGAdventurer
-
an adult girl who plays video games? not hating tho, it's hard to find female gamers but an adult female gamer? YEAH! btw you can see the owner of that mod from minecraftforum.net. you can request him/her/them there.
-
HAHA I'm 24 and I still don't have a girlfriend. also to know if adults play minecraft.
-
I'm just curious if you are one of those kids below 18 who already have boyfriends.
-
some thingsare not what they seem to be, what is your age btw?
-
Are you the creator of this mod? If not we cannot help you, you must pass this to the mod's owner, because in here we help people who have trouble programming mods, not people who install mods, I think the term "Modder Support" is a bit confusing. Thank you beforehand.
-
1.10.2 Issues with jar file(SOLVED)
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
here it is https://github.com/PanzerTank101/rotd/tree/rotd-1.10.2 -
1.10.2 Issues with jar file(SOLVED)
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
ok gonna do some research be back in nest days. -
1.10.2 Issues with jar file(SOLVED)
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
What codes do I have to post? -
1.10.2 Issues with jar file(SOLVED)
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
Ok did some research on this site, my lang file is en_us.lang, changed it to en_US.lang -
1.10.2 Issues with jar file(SOLVED)
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
like what file names? on what Files? -
So I'm done making my mod, run gradlew build and when I try to install it on my own PC, It gives me errors like assets is not working and such I/ll show you screenshots. So my question is, what files cause this error what class, I did not post some source code yet because I am unsure where it is giving the errors.
-
1.10.2(SOLVED)help with language issues on my item
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
HAHAHAHA! I mean what command to turn it into a jar file. -
1.10.2(SOLVED)help with language issues on my item
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
thanks my mod is now done, now what do I do. -
1.10.2(SOLVED)help with language issues on my item
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
ok solved it thanks guys, just don't put spaces on =. -
1.10.2(SOLVED)help with language issues on my item
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
yes, trying to do it with no spaces. -
1.10.2(SOLVED)help with language issues on my item
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
1.10.2 en_uS.lang other languages work on other items tho, i think draco has a point. -
1.10.2(SOLVED)help with language issues on my item
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
umm, it's in the link -
1.10.2(SOLVED)help with language issues on my item
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
assets/MODID/lang other items work only on shears not. -
1.10.2(SOLVED)help with language issues on my item
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
the other items work tho. -
Regarding Minecraft 1.12, And policy changes.
TheRPGAdventurer replied to LexManos's topic in Site News (non-forge)
oh ok! -
Regarding Minecraft 1.12, And policy changes.
TheRPGAdventurer replied to LexManos's topic in Site News (non-forge)
yeah! no more of those kids with cool mods being greedy. There is no reason for my minecraft mods to be copyrighted. -
1.10.2(SOLVED)help with language issues on my item
TheRPGAdventurer posted a topic in Modder Support
My Item; https://pastebin.com/LzFb64rS My init https://pastebin.com/2xgR1UTv; My lang file https://pastebin.com/hUqY12D9; -
How to spawn structures in underground caves
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
public void generateNestUnderground(World world, Random random, int chunkX, int chunkZ, Random rand) { int x = chunkX * 16 + random.nextInt(16); int z = chunkZ * 16 + random.nextInt(16); int xy = x >> 4; int zy = z >> 4; int height = world.getChunkFromChunkCoords(xy, zy).getHeight(new BlockPos(x & 15, 0, z & 15)); int y = height - random.nextInt(55); //30; if(world.getBiomeForCoordsBody(new BlockPos(x,y,z)).getBiomeClass().equals(BiomePlains.class)) { if((random.nextInt(10) + 1) <= 1) { if(world.getBlockState(new BlockPos(x, y, z)).getBlock() == Blocks.AIR) { dragonNest.generate(world, random, new BlockPos(x,y,z)); } } } } update what do you think is wrong? when I add the method to spawn caves you guys suggested it will not work but if I remove it, it randomly spawns underground. -
How to spawn structures in underground caves
TheRPGAdventurer replied to TheRPGAdventurer's topic in Modder Support
I know it's just a pseudo code I mean how to implement it, Difficulty in understanding code remember.