Jump to content

jackmaster9000

Members
  • Posts

    14
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • Location
    Texas
  • Personal Text
    i am a compleat noob

jackmaster9000's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. i like playing on modded server but some times its a little annoying because if u are using a mod pack and it updates and u join a server that has a lower version some times its not a problem because server owners do display the mod pack name and version but have a way for forge to display the mod pack name and version and mabe link if the server dose use a mod pack
  2. so like this @Mod( modid = Tribes.MOD_ID, name = Tribes.MOD_NAME, version = Tribes.VERSION, serverSideOnly = true, acceptableRemoteVersions = "*" )
  3. is there a way i can mod server side only with forge and how would i go about it
  4. this mod is for mods like custom npc mod that save the server side files in the save/worldname becuse i get tiered manual transferring them.
  5. thanks this will help because what i am working on is folders/file sync between save like inventory or other files
  6. the mod i want to move files into the world save folder when new world is being created. how would go about this ?
  7. Then you didn't do it right. Do you ever call load()? ' Oops my bad i need to get some sleep well i need to put that in my notes thanks for the help.
  8. What?! And What?! Sorry i am a bit sleepy i meant to say did i do this right. i am trying to register a keybinding
  9. i home i did the right. package mymods; import net.minecraft.client.Minecraft; import net.minecraft.client.settings.KeyBinding; import net.minecraftforge.fml.client.registry.ClientRegistry; import org.lwjgl.input.Keyboard; public class KeyBindings { public static KeyBinding scrollModifier; public static void load() { scrollModifier = new KeyBinding("key.scrollModifier", Keyboard.KEY_LMENU, "key.category.main"); ClientRegistry.registerKeyBinding(scrollModifier); } public static int isHotbarKeyDown() { KeyBinding[] bindings = Minecraft.getMinecraft().gameSettings.keyBindsHotbar; for (int i = 0; i < bindings.length; i++) if (bindings[i].isPressed()) return i; return -1; } }
  10. one to slide in and another to slide out would be the best look
  11. What i am trying to Create Command Menu that allows the user to add more to the left click function insted of just attack/brake. so how it would work is that when you hit the Ctrl button and it will toggel scholl will from the hotbar to the command bar witch will allow you to switch The left Click on the mouse to ?? command that can be any thing. for example ---- | Command | | Atack/brake | This can have a sub command or a action ===> | ???? | |___________| and what by animate is i want to hight the commands useing the shollwhell
  12. i need a little help i am working on a mod that add a command menu i want it to be a stand alone mod that can be added to like the tabs but this will effect left clicking with the mouse with the attack/brake as the fiest command but i cant figer out how to animate the menu i have ben trying for two weeks to do this with out asking for help but i am stuck and i need help configing it with the key bord and heres is a image on how far i got. package mymods.my_hud; import mymods.MyMods; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.FontRenderer; import net.minecraft.client.gui.Gui; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.potion.Potion; import net.minecraft.util.ResourceLocation; import net.minecraft.world.World; import net.minecraftforge.common.model.animation.Clips.TriggerClip; import org.lwjgl.opengl.GL11; import java.text.DecimalFormat; /* * This is where the battle menu will be * just need to figer out the how this will work out * */ public class MyBattleHud extends Gui{ private final static ResourceLocation Menu = new ResourceLocation(MyMods.MODID,"/textures/gui/Menu2.png"); /* These two variables describe the size of the bar */ private final static int BAR_WIDTH = 90; private final static int BAR_HEIGHT = 15; private final static int BAR_SPACING_ABOVE_EXP_BAR = 3; // pixels between the BAR and the Experience Bar below it private static int x = 220; //this if for test private static String text = "Commands"; private static String text2 = "Attack"; private static String text3 = "?"; private static String text4 = "?"; private static String text5 = "?"; private Minecraft mc; public MyBattleHud(Minecraft mc) { this.mc = mc; } /* This helper method will render the bar */ public void renderStatusBar(int screenWidth, int screenHeight) { /* These are the variables that contain world and player information */ World world = mc.theWorld; EntityPlayer player = mc.thePlayer; /* This object draws text using the Minecraft font */ FontRenderer fr = mc.fontRendererObj; /* This object inserts commas into number strings */ DecimalFormat d = new DecimalFormat("#,###"); /* Saving the current state of OpenGL so that I can restore it when I'm done */ GL11.glPushAttrib(GL11.GL_ALL_ATTRIB_BITS); GL11.glPushMatrix(); /* I like to indent the code whenever I push. It helps me visualize what is * happening better. This is a personal preference though. */ /* Set the rendering color to white */ GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); /* This method tells OpenGL to draw with the custom texture */ mc.renderEngine.bindTexture(Menu); // we will draw the status bar just above the hotbar. // obtained by inspecting the vanilla hotbar rendering code final int vanillaExpLeftX = screenWidth / 2 - 91; // leftmost edge of the experience bar final int vanillaExpTopY = screenHeight - 32 + 3; // top of the experience bar /* Shift our rendering origin to just above the experience bar * The top left corner of the screen is x=0, y=0 */ GL11.glTranslatef(vanillaExpLeftX, vanillaExpTopY - BAR_SPACING_ABOVE_EXP_BAR - BAR_HEIGHT, 0); // this is for test drawTexturedModalRect(x, -30, 0, 3, BAR_WIDTH, BAR_HEIGHT); drawTexturedModalRect(x, -1, 0, 38, BAR_WIDTH, BAR_HEIGHT); drawTexturedModalRect(x, 14, 0, 38, BAR_WIDTH, BAR_HEIGHT); drawTexturedModalRect(x, 29, 0, 38, BAR_WIDTH, BAR_HEIGHT); //command select drawTexturedModalRect(215, -16, 0, 20, BAR_WIDTH, BAR_HEIGHT); drawCenteredString(fr, text, 265, -28, 255); GL11.glPushMatrix(); GL11.glTranslatef(1, 1, 0); GL11.glPushMatrix(); GL11.glPopMatrix(); GL11.glPopMatrix(); GL11.glPopMatrix(); GL11.glPopAttrib(); } }
×
×
  • Create New...

Important Information

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