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
  • matt1999rd

matt1999rd

Members
 View Profile  See their activity
  • Content Count

    126
  • Joined

    October 5, 2019
  • Last visited

    July 27, 2020

 Content Type 

  • All Activity

Profiles

  • Status Updates
  • Status Replies

Forums

  • Topics
  • Posts

Calendar

  • Events

Everything posted by matt1999rd

  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • Next
  • Page 1 of 5  
  1. matt1999rd

    [SOLVED][1.14-1.15] TER : how can I visualised my model ?

    matt1999rd replied to matt1999rd's topic in Modder Support

    it was not working because of the model json that was not placed. But now it works well thank you
    • July 24, 2020
    • 4 replies
  2. matt1999rd

    [1.14.4] problem in loading of minecraft

    matt1999rd replied to matt1999rd's topic in Modder Support

    what do you mean by pre-computed ? is a tab with model for each possibilities created when using multipart ? for my mod I deleted the attributes. Another strange bug happened with lag in loading in minecraft : when I add .doesnotblockmovement to my blocks it is loading really slowly.
    • July 24, 2020
    • 2 replies
  3. matt1999rd

    [1.14.4] [Solved] Bounding Box

    matt1999rd replied to BudRunBun's topic in Modder Support

    you can use blockbench to visualised your bounding boxes and then add them with block.makecuboidShape to get one box and then VoxelShapes.or to make a shape that is the sum of multiple voxelshapes.
    • July 21, 2020
    • 18 replies
  4. matt1999rd

    [1.14.4] [Solved] Bounding Box

    matt1999rd replied to BudRunBun's topic in Modder Support

    for voxelshape it is impossible to make diagonal shape unfortunately. But what you can do is make cuboid that match your form correctly but I don't know if it is what you want..
    • July 21, 2020
    • 18 replies
  5. matt1999rd

    [1.14.4] problem in loading of minecraft

    matt1999rd posted a topic in Modder Support

    Hello everyone, I am doing a mod involving a panel block class. This block has multiple blockstateproperties : @Override protected void fillStateContainer(StateContainer.Builder<Block, BlockState> builder) { builder.add( BlockStateProperties.HORIZONTAL_FACING, GridSupport.ROTATED, GRID, NORTH_EAST, NORTH_WEST, SOUTH_EAST, SOUTH_WEST, BlockStateProperties.NORTH, BlockStateProperties.SOUTH, BlockStateProperties.WEST, BlockStateProperties.EAST ); } I decided to add a new properties scale that do not change rendering of block. this property is a integer property that allow 4 values : 0,1,2,3 each for modifying pixel length when modifying panel image. Before doing it, minecraft was launching normally but after that it is not working at all and minecraft stop launching after this line : [18:43:11] [Client thread/INFO] [minecraft/AtlasTexture]: Created: 512x512 textures-atlas I don't know if there is any reason why it is suddenly lagging. Here is the commit of my code before adding scale with all others features implying it : https://github.com/matt1999rd/SignMod
    • July 21, 2020
    • 2 replies
  6. matt1999rd

    [SOLVED][1.14-1.15] TER : how can I visualised my model ?

    matt1999rd replied to matt1999rd's topic in Modder Support

    ok right but I don't know how to manage it and in fact it does not look right because when I place my block it replace the support by air instead of PanelBlock I don't understand why. I have done this both server and client side to avoid side problem and still the problem occurs. You can see here the code of my Registration : https://github.com/matt1999rd/SignMod/blob/master/src/main/java/fr/mattmouss/signs/fixedpanel/PanelRegister.java I put the block in the Packet send to server : https://github.com/matt1999rd/SignMod/blob/master/src/main/java/fr/mattmouss/signs/networking/PacketPlacePanel.java
    • June 23, 2020
    • 4 replies
  7. matt1999rd

    [SOLVED][1.14-1.15] TER : how can I visualised my model ?

    matt1999rd posted a topic in Modder Support

    Hello everyone, in my new mod I am trying the TER implementation and I have started an empty TE with a TER and run it to see if anythings happened but it looks like nothing is done. Here is the links to all my staff : https://github.com/matt1999rd/SignMod/tree/master/src/main/java/fr/mattmouss/signs/tileentity I register this TER into the proxy as you can see here : https://github.com/matt1999rd/SignMod/tree/master/src/main/java/fr/mattmouss/signs/setup I don't know what I need to add to make sure it render even incorrectly
    • June 22, 2020
    • 4 replies
  8. matt1999rd

    [solved][1-15] new block window not rendering correctly

    matt1999rd replied to matt1999rd's topic in Modder Support

    I am returning to this topic because I am about to upload my mod and the function does not work for 1.14.4 unfortunately do someone have an idea of how to do it ?
    • May 4, 2020
    • 8 replies
  9. matt1999rd

    [1.15] Bug in thread

    matt1999rd replied to matt1999rd's topic in Modder Support

    I finally found the error it was java error. In my te I am searching into the Map using HashMap#forEach and inside it I remove value in this same map. This is logically impossible and it crashes. I found the solution on using a List from outside function that register the value to delete. Thanks for your answer that was simplier than expected
    • April 25, 2020
    • 4 replies
  10. matt1999rd

    [1.15] Bug in thread

    matt1999rd posted a topic in Modder Support

    Hello everyone, in my mod, I am modifying a map to update it client side. At each tick, I am checking worldSavedData to match it with my te map on server side and then I put it to the client using a packet. But as I destroy two block I run into a very strange exception : ConcurentModificationException. Here is the code of the tile entity : Tile Entity I am using hashMap and here is the complete crash report : ---- Minecraft Crash Report ---- // Daisy, daisy... Time: 25/04/20 10:36 Description: Ticking block entity java.util.ConcurrentModificationException: null at java.util.HashMap.forEach(HashMap.java:1292) ~[?:1.8.0_231] {} at fr.mattmouss.gates.tileentity.CardGetterTileEntity.lambda$tick$7(CardGetterTileEntity.java:145) ~[?:?] {re:classloading} at net.minecraftforge.common.util.LazyOptional.ifPresent(LazyOptional.java:161) ~[?:?] {re:classloading} at fr.mattmouss.gates.tileentity.CardGetterTileEntity.tick(CardGetterTileEntity.java:137) ~[?:?] {re:classloading} at net.minecraft.world.World.tickBlockEntities(World.java:473) ~[?:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.world.server.ServerWorld.tick(ServerWorld.java:368) ~[?:?] {re:classloading} at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:841) ~[?:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:776) ~[?:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:112) ~[?:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:634) [?:?] {re:classloading,pl:accesstransformer:B} at java.lang.Thread.run(Thread.java:748) [?:1.8.0_231] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Server thread Stacktrace: at java.util.HashMap.forEach(HashMap.java:1292) at fr.mattmouss.gates.tileentity.CardGetterTileEntity.lambda$tick$7(CardGetterTileEntity.java:145) at net.minecraftforge.common.util.LazyOptional.ifPresent(LazyOptional.java:161) at fr.mattmouss.gates.tileentity.CardGetterTileEntity.tick(CardGetterTileEntity.java:137) -- Block entity being ticked -- Details: Name: gates:card_getter // fr.mattmouss.gates.tileentity.CardGetterTileEntity Block: Block{gates:card_getter}[facing=west] Block location: World: (51,4,153), Chunk: (at 3,0,9 in 3,9; contains blocks 48,0,144 to 63,255,159), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511) Block: Block{gates:card_getter}[facing=west] Block location: World: (51,4,153), Chunk: (at 3,0,9 in 3,9; contains blocks 48,0,144 to 63,255,159), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511) Stacktrace: at net.minecraft.world.World.tickBlockEntities(World.java:473) at net.minecraft.world.server.ServerWorld.tick(ServerWorld.java:368) -- Affected level -- Details: All players: 1 total; [ServerPlayerEntity['Dev'/276, l='New World', x=46.12, y=4.00, z=155.12]] Chunk stats: ServerChunkCache: 3019 Level dimension: DimensionType{minecraft:overworld} Level name: New World Level seed: -4566557193619946920 Level generator: ID 01 - flat, ver 0. Features enabled: true Level generator options: {} Level spawn location: World: (48,4,160), Chunk: (at 0,0,0 in 3,10; contains blocks 48,0,160 to 63,255,175), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511) Level time: 5794 game time, 5794 day time Level storage version: 0x04ABD - Anvil Level weather: Rain time: 127319 (now: false), thunder time: 47119 (now: false) Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: true Stacktrace: at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:841) at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:776) at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:112) at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:634) at java.lang.Thread.run(Thread.java:748) -- System Details -- Details: Minecraft Version: 1.15.1 Minecraft Version ID: 1.15.1 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_231, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 459278856 bytes (438 MB) / 1008205824 bytes (961 MB) up to 1411383296 bytes (1346 MB) CPUs: 4 JVM Flags: 1 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump ModLauncher: 5.0.0-milestone.4+67+b1a340b ModLauncher launch target: fmluserdevclient ModLauncher naming: mcp ModLauncher services: /eventbus-2.0.0-milestone.1-service.jar eventbus PLUGINSERVICE /forge-1.15.1-30.0.51_mapped_snapshot_20200213-1.15.1-launcher.jar object_holder_definalize PLUGINSERVICE /forge-1.15.1-30.0.51_mapped_snapshot_20200213-1.15.1-launcher.jar runtime_enum_extender PLUGINSERVICE /accesstransformers-2.0.0-milestone.1-shadowed.jar accesstransformer PLUGINSERVICE /forge-1.15.1-30.0.51_mapped_snapshot_20200213-1.15.1-launcher.jar capability_inject_definalize PLUGINSERVICE /forge-1.15.1-30.0.51_mapped_snapshot_20200213-1.15.1-launcher.jar runtimedistcleaner PLUGINSERVICE /forge-1.15.1-30.0.51_mapped_snapshot_20200213-1.15.1-launcher.jar fml TRANSFORMATIONSERVICE FML: 30.0 Forge: net.minecraftforge:30.0.51 FML Language Providers: javafml@30.0 minecraft@1 Mod List: client-extra.jar Minecraft {minecraft@1.15.1 DONE} main Gates {gates@1.15.1 DONE} forge-1.15.1-30.0.51_mapped_snapshot_20200213-1.15.1.jar Forge {forge@30.0.51 DONE} Player Count: 1 / 8; [ServerPlayerEntity['Dev'/276, l='New World', x=46.12, y=4.00, z=155.12]] Data Packs: vanilla, mod:forge (incompatible), mod:gates Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'forge'
    • April 25, 2020
    • 4 replies
  11. matt1999rd

    Multiple part obj problem

    matt1999rd replied to matt1999rd's topic in Modder Support

    I don't know why but I change the order of the different part of the obj model and it works : maybe it is due to placement of block
    • April 5, 2020
    • 3 replies
  12. matt1999rd

    Multiple part obj problem

    matt1999rd replied to matt1999rd's topic in Modder Support

    yes that is very good idea I have done it and it looks like it is reading the v part and the vn part of each part but it is reading all vertex for one of the not displayed part and I don't understand why it is not considering the others part. On the other hand I don't know why I need to move my block origin in blockbench to 8 8 8 instead of doing it with normal origin at 0 0 0. For further information I give you the obj file here (turn_stile_main.obj) and the followed json file model associated (turn_stile_main_0.json) turn_stile_main_0.obj turn_stile_main_0.json
    • April 5, 2020
    • 3 replies
  13. matt1999rd

    Multiple part obj problem

    matt1999rd posted a topic in Modder Support

    Hello everyone, I have implemented a obj file for the rendering of my block but the OBJLoader seems to only register the first part and ignoring the others three. I am very need to all this so I don't know how to modify obj file to let it work. I put here the rendering of my block and the rendering that I wanted with blockbench. what I want what I get...
    • April 4, 2020
    • 3 replies
  14. matt1999rd

    [1.14-1.15] [Solved]Problem in display name : yellow letter

    matt1999rd replied to matt1999rd's topic in Modder Support

    for this mod I have not upload it on git hub. I have posted it just now : https://github.com/matt1999rd/switchrail the block concerned is SwitchLever and oneWayPoweredRail. For switchLever it is using Rarity.UNCOMMON. That is it I have modified the rarity and I have change it to COMMON for the oneWayPoweredRail thank you !
    • April 2, 2020
    • 3 replies
  15. matt1999rd

    [1.14-1.15] [Solved]Problem in display name : yellow letter

    matt1999rd posted a topic in Modder Support

    Hello Everyone, I have upload one of my mod to add a new block and I was wondering why this block and an other item of my inventory are displayed in yellow instead of normal white. It does work properly but I don't know if this mean of uncomplete block or something else.
    • April 2, 2020
    • 3 replies
  16. matt1999rd

    [1.15] use of onMinecartPass

    matt1999rd posted a topic in Modder Support

    Hello everyone, in the update of one of my mod I want to add one direction powered rail but as I look at vanilla code I find really complex function especially in abstractMinecartEntity. Does anyone knows : 1.how to move a minecart on rail using onMinecartPass 2. how to stop a minecart when it is on a slope I try various things but nothing was really efficient.
    • March 31, 2020
    • 1 reply
  17. matt1999rd

    Making 2 rotation in model

    matt1999rd posted a topic in Modder Support

    Hello everyone, I want to make a turn stile with BakedModel. The objective is to make two rotation to get something like this : The problem is that two rotation are not supportedby json model so I don't know how to make it with bakedModel. I have looked at a tutorial that is not usable anymore. I don't know if I can possibly load obj file in order not to have any complex code to implement.
    • March 28, 2020
  18. matt1999rd

    [1-15] doing something when selected

    matt1999rd replied to matt1999rd's topic in Modder Support

    AlpVax are you sure this works ? because I try it in my mod (without condition on context and entity) and it did not work...
    • March 27, 2020
    • 6 replies
  19. matt1999rd

    [1-15] doing something when selected

    matt1999rd replied to matt1999rd's topic in Modder Support

    Ok this function looks interesting but in fact I don't know how to implement the event and what I really want to avoid is using method IEntityReader#getClosestPlayer because it is searching amongst all player and this is done in each tick which will lower the speed of minecraft
    • March 27, 2020
    • 6 replies
  20. matt1999rd

    [1-15] doing something when selected

    matt1999rd posted a topic in Modder Support

    Hello everyone, in my mod I need to do some action when selected by entity using ISelectionContext and EntitySelectionContext I try to do it with getShape but it is not called when the player is selecting the block and when the voxels appear. Is there a another way to do this as i just wanted the block to detect the player when it is in front of the block?
    • March 26, 2020
    • 6 replies
  21. matt1999rd

    [1.14.4] Growing Custom Seeds

    matt1999rd replied to VenelALEX's topic in Modder Support

    Why do you use a cube all json in your model files : tobacco_plant.json you needn't it as your blockstate only use the other model block. For th blockstate you need to put "age=7" instead of "age-7" see in wheat.json for example. Don't know if it will work...
    • March 22, 2020
    • 3 replies
      • 2
      • Thanks
      • Like
  22. matt1999rd

    custom display name

    matt1999rd replied to matt1999rd's topic in Modder Support

    thank you it works very well
    • March 22, 2020
    • 4 replies
      • 1
      • Thanks
  23. matt1999rd

    custom display name

    matt1999rd replied to matt1999rd's topic in Modder Support

    thank you for your response but I don't understand what I should write in en_us.json or others language file...
    • March 22, 2020
    • 4 replies
  24. matt1999rd

    custom display name

    matt1999rd posted a topic in Modder Support

    Hello everyone, I have got an item in my mod that change its name when one of its attribute is defined. I use Item#getDisplayName but the function doesn't recognize the translated name I put in the en_us.json file. I would like to see Card instead of item.gates.card_key in the second picture here is my function : https://github.com/matt1999rd/GatesMod/blob/master/src/main/java/fr/mattmouss/gates/items/CardKeyItem.java in line 65 to 73.
    • March 22, 2020
    • 4 replies
  25. matt1999rd

    Sides problem

    matt1999rd replied to matt1999rd's topic in Modder Support

    because this is what I used for tollkey and it work perfectly well but I want people to use same id with different toll gate... as a beginning definition I choose a random Id which can be modified on TechScreen at least I can do a 16-bit id instead of 32 because it allows almost 2^16 possible id which is sufficiently huge
    • March 20, 2020
    • 13 replies
  • Prev
  • 1
  • 2
  • 3
  • 4
  • 5
  • Next
  • Page 1 of 5  
  • All Activity
  • Home
  • matt1999rd
  • Theme

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