Posted January 23, 20196 yr Hi! I want to add JEI and Waila support to my mod, but I don't know how to do it and I didn't find anything about it. Could somebody explain me how does this work? Thanks! Edited January 24, 20196 yr by Legenes procedure WakeMeUp(Integer plusTime); var I: Integer; begin for I := 0 to plusTime do begin println('One more minute!'); Sleep(1000); end; println('Okay, nothing to worry, I''m alive!'); println('So... somebody can give me a coffee?'); println('I know it''s Pascal, and not Java, but I love it :D.'); end;
January 23, 20196 yr I don't know it is the best way to do but it will be helpful for you. Developing Kodev Minecraft Hardcore Mod! If You're Wondering, My Mod Page. http://minecraft.curseforge.com/projects/minecraft-hardcore-mod
January 23, 20196 yr Author Thanks, now I only need a tutorial for waila/hwyla. procedure WakeMeUp(Integer plusTime); var I: Integer; begin for I := 0 to plusTime do begin println('One more minute!'); Sleep(1000); end; println('Okay, nothing to worry, I''m alive!'); println('So... somebody can give me a coffee?'); println('I know it''s Pascal, and not Java, but I love it :D.'); end;
January 24, 20196 yr 5 hours ago, Legenes said: Thanks, now I only need a tutorial for waila/hwyla. I know DeepResonace has support for both TheOneProbe and HWYLA, you can see how he implements them here. You can also reference his build.gradle to install the APIs into your environment, you can see this here, and here for the dependencies. If you'd like more functionality, both have open source APIs you can view. You can see HWYLA here, and TOP here. Currently developing: https://github.com/unassignedxd/Dynamic-Quarries
January 24, 20196 yr Author 13 hours ago, unassigned said: I know DeepResonace has support for both TheOneProbe and HWYLA, you can see how he implements them here. You can also reference his build.gradle to install the APIs into your environment, you can see this here, and here for the dependencies. If you'd like more functionality, both have open source APIs you can view. You can see HWYLA here, and TOP here. Whoa! Thank you very much! procedure WakeMeUp(Integer plusTime); var I: Integer; begin for I := 0 to plusTime do begin println('One more minute!'); Sleep(1000); end; println('Okay, nothing to worry, I''m alive!'); println('So... somebody can give me a coffee?'); println('I know it''s Pascal, and not Java, but I love it :D.'); end;
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.