• 0

    posted a message on [1.5 and UP] [Forge] TwitchTV IRC Mod v2.9 - TwitchTV Chat ingame!
    Hi
    My mod had an incompatibility with your mod... ...it could be the same issue with rei's minimap...

    If it helps: here is what I had to change in my mod for compatibility:


    before:
    [...]
    try {
      if(BuddyCamConfig.eclipse) {
        chatMessageList = (List) ModLoader.getPrivateValue(GuiNewChat.class, chat, "chatLines");
      } else {
        chatMessageList = (List) ModLoader.getPrivateValue(GuiNewChat.class, chat, "c");
      }
    } catch (IllegalArgumentException e) {
      e.printStackTrace();
    } catch (SecurityException e) {
      e.printStackTrace();
    } catch (NoSuchFieldException e) {
      e.printStackTrace();
    }
    [...]

    after:
    [...]
    try {
      if(BuddyCamConfig.eclipse) {
        chatMessageList = (List) ModLoader.getPrivateValue(GuiNewChat.class, chat, "chatLines");
      } else {
        if(chat.getClass().equals(GuiNewChat.class)) {
          chatMessageList = (List) ModLoader.getPrivateValue(GuiNewChat.class, chat, "c");
        } else {
          Class guiTwitchNewChat;
          try {
            guiTwitchNewChat = Class.forName("com.xigbclutchix.twitchirc.chat.GuiTwitchNewChat");
            if(chat.getClass().equals(guiTwitchNewChat)) {
              chatMessageList = (List) ModLoader.getPrivateValue(guiTwitchNewChat, chat, "chatLines");
            }
          } catch (ClassNotFoundException e) {
            e.printStackTrace();
          }
        }
      }
    } catch (IllegalArgumentException e) {
      e.printStackTrace();
    } catch (SecurityException e) {
      e.printStackTrace();
    } catch (NoSuchFieldException e) {
      e.printStackTrace();
    }
    [...]

    Perhaps if you make a variable "c" (which is the obfuscated name of "chatLines") which references "chatLines" there wouldn't be an issue... But I'm not sure.

    Greetings
    romibi
    Posted in: Minecraft Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from Trolololol45

    Heya i tested Shaders with it And i can minecraft to start up but when i click on the shaders pack it doesnt load so yeah it isnt compatible

    Ok. Thanks for the info...
    Quote from flarn2006

    If it's a clientside mod why would the other player need to give permission?

    Quote from zxmme_zimme

    the mod is supposed to be made for looking at teammate's or friend's screens not just looking at anybody's screen as it could be cheating in most or all cases.

    HINT: its called buddycam not enemycam so you have a cam of your buddy not an enemy

    if anything were it can look at there screen without permission it'll be for admin use only
    [...]

    Exactly. Technically it doesn't need permission. But it's not nice to spy...
    I'll try to make accepting requests easier if both use the mod. But I'm not sure yet how to do that...
    Quote from zxmme_zimme

    [...]
    also can you have a changelog of your additions to the mod romibi? or maybe a changelog for each update added by you if not a simple spoiler with changes in main post would work tooo

    Isn't this (in the main-post) enough: http://www.minecraft...-mod/#changelog ?
    It should contain all feature-changes/-additions...
    If you really want i could send you a git-commit-list where you find change-log-entries like "uncommented 1 unnecessary line" from the 18.8.2012 (I won't send any code...)
    Posted in: WIP Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    They just have to write "!bca" to you. Normal messages should work as well as private messages (/tell yourNick !bca)...
    Posted in: WIP Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from supermariokirby

    1.4.6

    I did some changes in the config-file-structure from 1.4.6 to 1.4.6_1.4.7_b & 1.5. If you've used the same config like in 1.5 with 1.4.6 that could be the reason. So you'll have to either reconstruct the old config or use 1.4.6_1.4.7_b or *_c which should be fully compatible with Minecraft 1.4.6...
    Quote from Rekrab

    Could you possibly update this to 1.5.1?

    Done. (Small reminder: Most mod-makers don't like it if someone asks for an update...)
    Posted in: WIP Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from zxmme_zimme

    anyway i have a suggestion. when finding who you want to autoaccept and who's screen to set up.

    if your in a server upon typing letters it will list players who have those letters in the beggining of the name or maybe something like pressing tab autocompletes the name?

    I'll try to do that...
    Quote from supermariokirby

    hey i have a bug when i was playing with this mod on 1.5 it worked fine but when i whent back to 1.4.6 it wouldnt work when my friend used /msg [my IGN] !bca do you know why? and for some help i was on a gulliver server using the mod by the same name the craftguide mod toomanyitems modloader blahblahblah

    Strange... ...did you use the 1.4.6 Version or the 1.4.6_1.4.7_b Version?
    Quote from DeutscherCrafter

    Thank you, you're top.

    Thanks, too.
    Quote from thefang12

    Hello there I get his error log in forge when I enter minecraft there's no crash but just to let you know

    2013-03-25 13:21:46 [SEVERE] [ForgeModLoader] Detected an attempt by a mod mod_buddycam to perform game activity during mod construction. This is a serious programming error.
    Complete log:
    http://pastebin.com/9Bvd5f9B

    Yea... ...I've seen this message, too...
    ...but I don't find any "game activity" in the "mod construction"...
    Posted in: WIP Mods
  • 1

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from zxmme_zimme

    i crashed upon changing some settings (auto ask for permissions set to yes and crash) so here in singleplayer ) as well
    [...]
    u: Updating screen events
    at net.minecraft.client.Minecraft.l(SourceFile:1085)
    at net.minecraft.client.Minecraft.K(SourceFile:572)
    at net.minecraft.client.Minecraft.run(SourceFile:524)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.NullPointerException
    at BuddyCamConfig.rewriteConfig(BuddyCamConfig.java:202)
    at BuddyCamConfig.setAutoAskForPermission(BuddyCamConfig.java:164)
    at BuddyCamMenuOptions.a(BuddyCamMenuOptions.java:37)
    at axl.a(GuiScreen.java:187)
    at axl.d(GuiScreen.java:274)
    at axl.m(GuiScreen.java:248)
    at net.minecraft.client.Minecraft.l(SourceFile:1076)
    [...]

    this is when i add someone to auto accept
    [...]
    u: Updating screen events
    at net.minecraft.client.Minecraft.l(SourceFile:1085)
    at net.minecraft.client.Minecraft.K(SourceFile:572)
    at net.minecraft.client.Minecraft.run(SourceFile:524)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.NullPointerException
    at BuddyCamConfig.rewriteConfig(BuddyCamConfig.java:202)
    at BuddyCamConfig.addAutoAccept(BuddyCamConfig.java:146)
    at BuddyCamMenuAutoAccepts.a(BuddyCamMenuAutoAccepts.java:86)
    at axl.a(GuiScreen.java:187)
    at BuddyCamMenuAutoAccepts.a(BuddyCamMenuAutoAccepts.java:108)
    at axl.d(GuiScreen.java:274)
    at axl.m(GuiScreen.java:248)
    at net.minecraft.client.Minecraft.l(SourceFile:1076)
    [...]

    Quote from zxmme_zimme

    lastly you misspeled click when you were describing how to define the screen


    Oh...
    Yea i did so many changes there had to be some things i've missed...

    Could you use Spoilers like this for the Crashlog, next time?
    [spoiler]
    Crashlog
    [/spoiler]


    Edit:
    Yea, at the moment changing general options when there aren't any screens defined crashes minecraft :P ...
    I'll wait a little bit if there are more bugs and then i'll do an fixed version...
    Posted in: WIP Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from Snowboi

    I just made a mod spotlight and installation guide for your mod :)
    [...]


    Thanks :D
    -----
    Update about the GUI: There are 2 things left to do:
    - Redoing the keybinding-Part of the GUI
    - Programming to save the edited config to the Harddisk
    ... um ... and i'll have to search for bugs :D
    Posted in: WIP Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from bloxxin

    About this mod, it works for 1.4.7.
    And one more thing, either it is a mod glitch or my mods are conflicting, but whenever a person comes in range, it lags EXTREMELY for ~15 seconds.
    No, I don't have a slow PC, mine is an ultra-high performance gaming desktop.
    This is quite annoying though.
    But it could be because of my mods.


    hm...
    ...thank you for your info...

    -----

    Yay: I've done about half of the GUI:
    I'll try to finish it before I have to update my mod to 1.5 so it will be in a 1.4.7 version, too.
    Posted in: WIP Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from zxmme_zimme

    [...]
    there should be three different modes
    1.admin/OP cam
    2. KillCam (sorta complicated)
    3. Original BuddyCam
    [...]


    Number 1 will be implemented into the mod as soon as I know a way how to check if the player is OP from client-side...
    (I already have something like a "checkForOpRights"-Function which returns at the moment false all the time...)
    Number 2 is a very nice idea and is now on my (private) Todo-List but with a very low priority... ...will be tricky to implement but not impossible
    Number 3 will always have top-priority :)
    Posted in: WIP Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from zxmme_zimme

    is it possible to have its where you press a button which opens up a gui for chosing a player in the server and all you do is click on the player you want to view.

    As mersumies said: It's on the todo-list... ...and it's the next thing I'd like to do... ...but I'm not sure how difficult it is...
    Quote from zxmme_zimme

    also is it possible to have buddycam transparent?
    I'm not sure... ...i'll have to try it out one day...
    Quote from zxmme_zimme

    also can you make it possible so the mod opens a new window showing only your freinds screen as i use two monitors and would like to use both for looking at freinds screen and mine as well
    Good Idea. It shouldn't be too difficult, but it isn't that important. I'll put it on my todo-list (which I should organize better) but with low priority...
    Quote from zxmme_zimme

    one more thing can there be support for seeing my buddies health, food, xp, hotbar, and if he is in his inventory, etc though i assume my buddy will need the mod for such support
    If all the important things are done i'll try to make this happen... ...but I don't know how to do this yet...
    Posted in: WIP Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from MrPokeDSDude

    If this has been answered somewhere else please tell me but...
    I want to add more than one persons screen to my screen. Anyway to do that?
    Thanks in advance
    MrPokeDSDude :)

    Just configure more than one Screen... ...you could use the Config-Generator linked in the installation instructions
    Posted in: WIP Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from Mr Nutt

    This mod will come in handy for my Minecraft channel! And to think, in the last video we made, we were talking about needing a mod did pretty much what this one does. Shame about the range limit though.

    Nice...
    Yes the range-limit is not a feature of my mod but a feature of Minecraft... ...it will be difficult to change that... (It has low priority on my todo-list.)

    But good news about the graphic-glitches: I found the reasons for the white sky and the ghosty Objects when using small/tiny-renderdistance :D. (But I don't think that it has something to do with the flickering terrain...)
    And: buddycam should be Forge-Compatible in the next Version...
    Posted in: WIP Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from mersumies

    Would it be possible to make a hotkey to open up a gui that would ask like "Whose screen would you like to see" and a field to enter the name below?

    Ingame Menu/GUI is on my todo-list...
    Quote from _PsyJp

    For some reason, I can't download the mod :\

    Try this link: https://www.dropbox....dycam-1.4.6.zip
    Quote from SCMowns

    Awesome Mod! I enjoy using this mod on my friends private server!

    I have made a review / tutorial for your mod =)

    Hope you like it:
    [youtube][/youtube]


    Thanks for making this Video...
    Some Notes:
    - For some reason Sky looks normal when Sky is OFF in Optifine-Settings...
    - more screens than 3 are possible... (...but it would lagg probably)
    - Config-Defaults don't get parsed (yet?) and you should copy/modify them in the screen-setting
    - Buddycam is in development since MC 1.2.3
    - There is a Config-Generator linked here in the first post
    Quote from ilovelotsofpie

    Nice mod man. Seems like a one of a kind!

    :D

    Oh My God Scmowns Ahhhhhhh I love your Vids I watch them Everday!!!

    Thanks
    Quote from BullitMagnet

    bit of a strange thing, its only showing the starting place, which is our house and not following the player around like its supposed to, any ideas?

    Strange. Did you or your friend die? Sometimes theres a bug when you die (if I didn't fix it yet)
    Posted in: WIP Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from alanX_DZ

    please make this mod a bukkit plugin

    This mod as a bukkit-only plugin is impossible... ...it needs Client-Modification which is impossible with bukkit!
    I could only try to make a bukkit-plugin which makes the radius bigger in which this mod works. But I don't have time at the moment.
    Quote from MineOSaurusRex

    Can't seem to get this mod to work when I try joining a server I get kicked for spamming chat

    Oh Sorry. In this case my mod is incompatible with this/these server(s) at the moment. I'll add a "disable auto-ask for screen-view"-Option in the next Version...
    (Perhaps not using "auto-allow" could help but I'm not sure)
    Quote from Redisded329

    This mod is good, but one problem. When I go to change screen.playerNick __________ Sometimes it doesn't work. But still, good mod! :Diamond: :Diamond: :Diamond: :Diamond: :Diamond:

    At the moment you'll have to restart Minecraft after each change to the config-file... ...I really need to learn how to make Menus...
    Quote from charsmud

    Nice, slick mod! :) Very useful!

    Thanks
    Posted in: WIP Mods
  • 0

    posted a message on [1.6.2] BuddyCam Minecraft-Mod by romibi
    Quote from ToddVee

    romibi, that would be awesome. thank you for considering this.

    I tried to code that... ...but I didn't find out how to check if you are op...
    ...i'll search for it later
    Quote from lowpro

    Great mod. Nice work.

    Thanks...
    Quote from DDRKhat

    This is a good mod, I enjoyed it. There are some problems though. It goes insane when there is a lot of terrain and both players are not looking AT the same terrain, for one.

    The large amount of latency is also a great issue.

    Yea... ...i really need someone who knows OpenGL (I'm bad in it...)
    I'm not sure if I should make the mod open source but there would be privacy issues...
    Posted in: WIP Mods
  • To post a comment, please .