Jump to content

ejer

Members
  • Posts

    40
  • Joined

  • Last visited

Everything posted by ejer

  1. ejer

    cps

    see? thats what i was just trying to find... how to learn simple stuff but these guys didnt understand. thank you
  2. ejer

    cps

    you are not answering my question.
  3. ejer

    Idk

    Wot ok wait int totalCoins = 0; is not supose to be there lol i was just messing around with the code to try to make it work
  4. ejer

    Idk

    yea i thought of that bc the other method doesnt even know what "total coins" is...
  5. ejer

    cps

    So thats what im asking... how am i going to learn simple stuff if you will only help with the complicated stuff
  6. ejer

    Idk

    lol idk its not my project its from a forum post i just wanted to know whats wrong ;p https://hypixel.net/threads/guide-start-coding-minecraft-forge-mods.551741/ (scroll down to the very bottom of the first post)
  7. ejer

    cps

    Yea i told him the same... " ok accually... what are we talking about? we spammed this thread with posts about cps and pvp... i just wanted to count clicks... thats it..."
  8. ejer

    cps

    Those two statements DOESNT EVEN HAVE ANYTHING WITH the idea. I AM NOT TELLING YOU THAT IM doing this for PvP... "oh and one more thing... who said i wanted to do pvp... maybe i just want to make a clicker minigame for minecraft... " maybe i just really wanna do a gui clicker or something... "lol ppl for example on hypixel get diamond division on ranked skywars and they are not the best at pvp... im not saying that cps matters more than aim " this is just an answer for your "YEA BC CPS DOESNT MATTER MORE THAN AIM AND YOU THINK THE OTHER WAY BC IM GOD AND I CAN LOOK INTO YOUR MIND" im just answering to you... no i dont think cps matters more (you dont even need to have god aim) its just tactic
  9. ejer

    cps

    THATS WHAT IM THALING ABOUT YOU LITERALLY QUOTED "YES" AND SAID IT SAYS "NO" because im asking how do i learn easy stuff if you only wanna help me with the complicated things
  10. ejer

    Idk

    public class Coins { @SubscribeEvent public void xd(ClientChatReceivedEvent event) { String message = event.message.getUnformattedText(); //message is the message which the client receives. if(message.startsWith("+") && message.contains("coins") && !message.endsWith("for being generous")) { //Checks if the coin message you got isn't the tip message String[] splittedMessage = message.split("coins"); message = splittedMessage[0].replace("+", ""); message = message.replace(" ", ""); int coins = Integer.parseInt(message); int totalCoins = 0; totalCoins = totalCoins + coins; } } @SubscribeEvent public void render(RenderGameOverlayEvent event) { if (event.isCancelable() || event.type != ElementType.EXPERIENCE) { return; } FontRenderer fRender = Minecraft.getMinecraft().fontRendererObj; fRender.drawString(EnumChatFormatting.GREEN + "Coins: " + EnumChatFormatting.WHITE + totalCoins, 5, 5, 0); } } totalCoins = totalCoins + coins; totalCoins cannot be resolved to a variable fRender.drawString(EnumChatFormatting.GREEN + "Coins: " + EnumChatFormatting.WHITE + totalCoins, 5, 5, 0); totalCoins cannot be resolved to a variable
  11. ejer

    cps

    lol ppl for example on hypixel get diamond division on ranked skywars and they are not the best at pvp... im not saying that cps matters more than aim ok accually... what are we talking about? we spammed this thread with posts about cps and pvp... i just wanted to count clicks... thats it... oh and one more thing... who said i wanted to do pvp... maybe i just want to make a clicker minigame for minecraft...
  12. ejer

    cps

    ok ok how am i going to learn any freaking simple thing if i go here for complicated code i wouldnt even get to execute it because i dont know crap about java
  13. ejer

    cps

    yea yea but u still said its possible to count clicks so if on latest ver you can get 1-2 cps then if you do it on lower vers you can get the cps still
  14. ejer

    cps

    1.8.9
  15. ejer

    cps

    1st Who said its the newest version 2nd 0? I mean i can understand when ur not clicking... 1 or 2? who are you? a 4 kid? normal clicking 5-8 jitter 9-12 butterfly 13-17 "MAYBE you'd get a 2 once in a while." lol ur talking like 2 cps is so rare its almost as rare as 17 cps 2nd Ohhh Yesss Im A Spam Click Noob
  16. ejer

    cps

    im over exaggerateing ohh my god dont tell me ur that stupid to not understand an example. modding is not a waste of time when im f*cking starting to learn omg what do you not understand i just wanna do it thats it. "unless you're implementing it with other unique features in the mod, then I would understand" so understand then yeah but if u have 70 mod modpack you maybe wanna know whats ur fps or ram usage "usually very concerned with their FPS than other" yeah but "very concerned" "than other" doesnt mean vanilla players don't care and all pvpers do..
  17. ejer

    cps

    wait... how is fps pvp related? maybe i just wanna make a hud to monitor certain things not only for pvp huh?
  18. ejer

    cps

    Yes, the name gives it away... I wanna count how many clicks you can click per a second
  19. ejer

    Text

    Same thing... read my newest thread...
  20. ejer

    cps

    Oh yea? How about your opinions on my first thread? " 2. Please don't. Tutorials have an end, then all you do is mess up your mod further on. Your mod will get harder and more intense as you progress and if you do not know Java, then you will get lost. I would recommend you have some basic knowledge of Java before you begin with your project. " Right... so thats what im trying to do... Your baisiclly telling the opposite... Before you were telling me to make my own code, dont use others work(tutorials), try to learn, but now ur telling me: Give up, just use others work, dont even try to code, uninstall eclipe, unplug your computer, throw it in the trash...
  21. ejer

    cps

    I was searching google but it didnt help... So i don't even have anything
  22. ejer

    cps

    i want to somehow get the cps and then display it as a text on hud (i already know how to diplay it i just want to know how to check the clicks per second)
  23. wait... it seems like its just crashing my game whenever i joint the world ill stick to 00FF00 ;p
  24. sorry i forgot that lol
  25. nvm i got it: int fps = Integer.valueOf(Minecraft.getDebugFPS()); drawString(mc.fontRendererObj, "FPS: \247f" + fps, width / 24, (height / 20) - 4, Integer.parseInt("00FF00", 16));
×
×
  • Create New...

Important Information

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