Jump to content

OzzzyGreen

Members
  • Posts

    12
  • Joined

  • Last visited

OzzzyGreen's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Oh, hard of course. Well, I'll sort it out. Thanks for the help
  2. My mod is the player's passport. It is realized on GUI. How can I then take data about the player to bring them to the GUI?
  3. My code @SubscribeEvent public void onJoin(FMLNetworkEvent.ClientConnectedToServerEvent event) { EntityPlayer player = (EntityPlayer) event.getEntity(); NBTTagCompound entityData = player.getEntityData(); player_name = player.getName(); if(!entityData.getBoolean("joinedBefore")) { job = 0; rank = 0; law = 6; entityData.setBoolean("joinedBefore", true); } } The server that is in the photo. Sorry, I just do not know the language well
  4. Now in this event I can not use the EntityPlayer :C
  5. I run the local server on the computer, but this event does not work. A server that is not in a single player game for 2-4 people, but global
  6. On server. I played on the server with the mod "OpenComputers" and as I understand it, the gaming book is given by the mod itself on the server and in a single game
  7. I want that when I enter the server, which in the "multiplayer" tab, my mod executed its code using this event.
  8. Hello friends! "PlaherLoggedInInvent" does not work on the server. What kind of replacement can I find?
  9. I'm just a beginner. If not difficult, can you show how it is applied in practice?
  10. Not quite I want something like this: if (received damage from the diamond sword) { // this ... }
  11. Hi guys! My english is not the best, but anyway. I need to track the damage received from a certain item, how can I do this? Thanks
×
×
  • Create New...

Important Information

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