Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • XeliteXirish

XeliteXirish

Forge Modder
 View Profile  See their activity
  • Content Count

    30
  • Joined

    February 2, 2014
  • Last visited

    May 19, 2016

Community Reputation

1 Neutral

About XeliteXirish

  • Rank
    Tree Puncher
  • Birthday 09/23/1998

Converted

  • Gender
    Male
  • URL
    http://www.xelitexirish.com/
  • Location
    Kildare, Ireland
  • Personal Text
    New-ish Minecraft Modder!
  1. XeliteXirish started following Trying to update to Minecraft forge - 10.13.0.1152 and [1.7.2] Check if player is operator February 1, 2017
  2. XeliteXirish

    Can't get chat from multiplayer

    XeliteXirish replied to Orfby's topic in Modder Support

    That sounds good, I'd like to chat to you about a few things, is this your twitter? https://twitter.com/Orfby/ If so could you follow me back and il send you a message?
    • October 24, 2015
    • 6 replies
  3. XeliteXirish

    Can't get chat from multiplayer

    XeliteXirish replied to Orfby's topic in Modder Support

    I have a work in progress mod that looks very similar to the one your creating (it has the exact same name) so I'm just wondering were abouts you got the idea for it? I posted a Alpha version of my mod a few weeks back, information is available on http://www.xelitexirish.com/chat-notifier/
    • October 24, 2015
    • 6 replies
  4. XeliteXirish

    [1.8] Changing a server chat message

    XeliteXirish replied to XeliteXirish's topic in Modder Support

    I've done a little research, could you use the ClientRecievedChat to change the chat? By the looks of it I think that it might. I don't think there is a way to send a server message to everyone but a specific player and send them another message, without changing too much.
    • September 24, 2015
    • 9 replies
  5. XeliteXirish

    [1.8] Changing a server chat message

    XeliteXirish replied to XeliteXirish's topic in Modder Support

    I need to modify the incoming chat for a player when their name is in that message. I already can check for their name and get their player instance. Its just changing the chat they see.
    • September 22, 2015
    • 9 replies
  6. XeliteXirish

    [1.8] Changing a server chat message

    XeliteXirish posted a topic in Modder Support

    I want to be able to take a server message and change what it looks like for ONE player to see. I have an instance of the player i want it to see. I'm completely confused on how to do it haha Thanks, ~XeliteXirish (Shaun O'Neill)
    • September 22, 2015
    • 9 replies
  7. XeliteXirish

    Chat messages and sounds

    XeliteXirish replied to XeliteXirish's topic in Modder Support

    Just out of curiosity, can you not just split the chat by every space and just check everything after the first word which is always the player name? Thats what I did and it seems to be okay.
    • September 16, 2015
    • 8 replies
  8. XeliteXirish

    Chat messages and sounds

    XeliteXirish replied to XeliteXirish's topic in Modder Support

    Sorry forgot to mention that haha, its Minecraft 1.8 with newest forge version.
    • September 15, 2015
    • 8 replies
  9. XeliteXirish

    Chat messages and sounds

    XeliteXirish replied to XeliteXirish's topic in Modder Support

    Scratch the top one off the list, sorry I managed to figure out how to do it. Just need a way to play a sound overriding the sound settings?
    • September 15, 2015
    • 8 replies
  10. XeliteXirish

    Chat messages and sounds

    XeliteXirish posted a topic in Modder Support

    I know this is a silly question to ask but is there a way to get the chat right after the players name? I need to check if the players name is in chat and it keeps firing when that user sends a message. Its a client ONLY mod so I cant use any server methods. Also, is there a way to play a sound that overrides the minecraft sound settings and plays even if sound is turned off? Thanks, ~Shaun O'Neill
    • September 15, 2015
    • 8 replies
  11. XeliteXirish

    Needing helpers for a mod.

    XeliteXirish posted a topic in Minecraft General

    Hello, my name is Shaun (XeliteXirish) and not too long ago I met two very nice people online (bcwadsworth) and (deliSk) right here on these forums. They introduced me to this mod idea they had and we started. We called it Immersion. Sadly DeliSK doesn't seem to be active any more and myself and bcwadsworth don't have enough time to keep the mod rolling (we still get work done, just not as fast as we would like). So that is why I'm here, I'm looking for a few modders (around 3ish) that could lend us a hand. (All our current code is up on our GitHub repo here - https://github.com/MCDTeam) I have been studying Java for a number of years and have been doing modding on and off for about 3 years. Bcwadsworth is a very talented programmer, I amn't too sure on his programming details but he's very good. What we're looking for is someone who has the capability's to provide good and functional code and is able to do so some-what regularly. Your probably wondering what Immersion is about, well in some ways it consists of an API that we have also been working on called the FeatureAPI (you will also be able to work on this) that enables features that are written for it to be FULLY customisable. For example, we add something that you don't like, your able to just disable it, everything is customisable. We had a somewhat alpha version of this available for 1.7.10 that allowed users to join a server, which also had the FeatureAPI, and the server TELLS the client, which mods to enable and which to disable. -If your interested please leave a reply with the following information: -Your prepared means of comunication (please note it, if you feel uncomfortable about leaving emails, skype etc - pm it to me here on the forums) -Your maturity level. I don't believe in judging people by how old you are, but I don't work well with very immature people. -Roughly how often you can work. -Experience with programming and level of skill.
    • June 28, 2015
  12. XeliteXirish

    addInformation method help!

    XeliteXirish replied to Toxic_Herobrine's topic in Modder Support

    You don't check if the key is being held at first- @Override public void addInformation(ItemStack itemStack, EntityPlayer player, List list, boolean par3) { if(GuiScreen.isShiftKeyDown()){ list.add("Damage mob: Instant kills any mob with life of 10 hearts"); list.add("Ability: Smoke screen for pvp."); list.add("Upgrade: none (W.I.P)"); }else{ list.add("Herobrines sword."); list.add("Press shift for more info"); } }
    • December 16, 2014
    • 10 replies
  13. XeliteXirish

    [1.7.10] Modifying a vanilla blocks hardness

    XeliteXirish replied to XeliteXirish's topic in Modder Support

    Oh thank you!! I don't know how I missed that so easily haha
    • December 7, 2014
    • 2 replies
  14. XeliteXirish

    [1.7.10] Modifying a vanilla blocks hardness

    XeliteXirish posted a topic in Modder Support

    I was wondering, is it possible to change a blocks hardness though any event (which event?) and how would I go about doing it? I want to be able to change vanilla stones hardness depending on a few factors, but I don't really want to use reflection. I know I can just replace stone with a new custom block, but is that really a good idea for other mod comparability?
    • December 6, 2014
    • 2 replies
  15. XeliteXirish

    Making pig zombies attack a player

    XeliteXirish replied to XeliteXirish's topic in Modder Support

    Addition^^ Is it the same method "setPrivateValue" to set it to public? I dont see any setPublicValue in reflection helper. Edit: I just want to set EntityPigZombie.becomeAngryAt public
    • November 17, 2014
    • 11 replies
  16. XeliteXirish

    Making pig zombies attack a player

    XeliteXirish replied to XeliteXirish's topic in Modder Support

    Oh.. that seems a lot easier then I taught, so you just put ReflectionHelper(blabla) were ever you want in your mod? I taught it was something to do with accesstransformer or something Im confused haha
    • November 17, 2014
    • 11 replies
  • All Activity
  • Home
  • XeliteXirish
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community