Jump to content

lukas2005

Forge Modder
  • Posts

    289
  • Joined

  • Days Won

    2

Everything posted by lukas2005

  1. hello i have this warning on console: and my item does not work please help code is on my github in repo MCI-Mod full log : EDIT: iknow why items are not working but what this warning means?
  2. i found out how to load classes but what about textures and jsons?
  3. [glow=red,2,300][/glow] i know that this can happen but i arelady found and fix for this database will be just to add/remove/update items and in case of db was down / user does not have the internet connection i will just load only items wich are arelady downloaded EDIT : i even tested this i shutdown a db for a sec and the only thing that happened is that items from db wasn't in the game but i will fix that as i said when db will be down then my mod will load all last known items and do not try to connect and messup whole world and can we stop wondering WHAT IF and go back to main topic?
  4. lol it works now for some resaon
  5. does not works log : and src is on my github
  6. Hello what the title says Code: https://github.com/lukas2005/MCI-Mod Log:
  7. i know that this can happen but i arelady found and fix for this database will be just to add/remove/update items and in case of db was down / user does not have the internet connection i will just load only items wich are arelady downloaded EDIT : i even tested this i shutdown a db for a sec and the only thing that happened is that items from db wasn't in the game but i will fix that
  8. yes i know that i'm not coding from today but people will do not have the acces to the server and my mod will be loading only specified classes and resources and also i will try to make security system to prevent people to modify the code
  9. Hello i am trying to load external classes into minecraft rutime. i have class in .minecraft/CustomExtClasses/myclass.(class/java i'm not sure what's correct) and i want to load it into minecraft and if you want a whole idea for my mod then: mod connects to a mysql database gets the list of items and the location in web of the "content pack" minecraft downloads it an loads it into runtime and registers evrything i do not want to modify the vanilla code
  10. is auto mining on skyblock counted as cheating?
  11. is there a way that i can notifiy the vanilla server about breaking a block ? EDIT: i will try to look at some vanilla code EDIT2: no succes
  12. and whats the event for death?
  13. Exactly what a topic says
  14. Hello i am deweloping 3 mods at time and thats so annoying that i need to switch workspace or open aanother eclipse window to look at code is there a way to move multiple projects to one workspace ?
  15. refresh
  16. i think dyspenser has separte model for up and dowt because it has other texture when you will place it up/down side facing
  17. but i dont have any client side code except that registerRender method my main mod class: package pl.minepack.warzone; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.Mod.Instance; import net.minecraftforge.fml.common.SidedProxy; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import pl.minepack.minelib.utils.utils; import pl.minepack.warzone.proxy.IProxy; @Mod(name = Reference.NAME, modid = Reference.MODID, version = Reference.VERSION) public class WarZone { @SidedProxy(clientSide = Reference.CLIENT_PROXY, serverSide = Reference.COMMON_PROXY) public static IProxy proxy; @Instance(Reference.MODID) public static WarZone modInstance; @EventHandler public void preInit(FMLPreInitializationEvent e) { utils.Println("Pre Init", Reference.NAME); } @EventHandler public void init(FMLInitializationEvent e) { utils.Println("Init", Reference.NAME); proxy.init(); } @EventHandler public void postInit(FMLPostInitializationEvent e) { utils.Println("Init", Reference.NAME); } } EDIT: i fixed this by myself now dedicated server runs withoout crash
  18. but then i would nedd to recreate all the models for almost all entities in Minecraft
  19. ok but how to fix this?
  20. Why dedicated server crashes on EMPTY pre init method in Mod class??? and tells me that entityplayersp class is not FOUND???
  21. but game does not crashes and this topic is all about somthing else
×
×
  • Create New...

Important Information

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