Jump to content

Damian3395

Members
  • Posts

    4
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Damian3395's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. i am using 3 libraries for my mod: CodeChickenLib-dev.jar, Mantle-dev.jar, mysql-connector.jar-bin.jar the game works fine when i run it in eclipse, but when I try to gradlew build it, those dependencies are not being included into my mods' compiled jar. The libraries are located in the root project folder, inside of a folder named 'libs' I tried adding this to the build.gradle file: dependencies{ compile files('libs/CodeChickenLib-1.7.10-1.1.3.140-dev.jar', 'libs/Mantle-1.7.10dev.jar', 'libs/mysql-connector-java-5.1.38-bin.jar') } but it still won't added the dependencies.
  2. Thank you for the answers, I will try looking into ASM, otherwise my team will use spigot cauldron to develop the mod.
  3. I was trying to use the PotionBrewEvent event, but it does not provide the information on which player has created the potion, only the items created. My group has decided to use 1.7.10 for stability and tutorials. Is there a way to implement custom events, such as interacting with an enchantment table and getting its output?
  4. Hello, I am creating a mod for my school project and I need to log player events into a mysql database. I have logged things such as killing an living entity or crafting an item. Mostly the events from this page: https://dl.dropboxusercontent.com/s/h777x7ugherqs0w/forgeevents.html I am trying to look into getting events such as brewing potions, creating enchanted items, riding an entity, going through a portal, etc... Is there a mod that already exists for these extended events or do I have to create them?
×
×
  • Create New...

Important Information

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