Results 1 to 3 of 3
  1. #1
    john404's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    352
    Reputation
    69
    Thanks
    842
    My Mood
    Doh

    Save ingame chat logs code

    I wrote this real fast, give credits if you use

    Basically it saves chat logs of all ingame messages, so if u wanted to view something and it disappeared just go to the text file and search for it

    Its useful in some way IMO
    Code:
    /*written by iolaka but not tested yet :D idea from flipyblitz*/
    package net.minecraft.src;
    
    import java.io.*;
    import net.minecraft.client.Minecraft;
    
    public classname(Minecraft minecraft, File file)
    {
    chatlogs = new File(file, "chatlogs.txt" /* + ".exevirus" loljk*/);
    }
    
    public void saveOptions()
        {
      try
      {
        PrintWriter printwriter = new PrintWriter(new FileWriter(chatlogs));
        printwriter.println((new StringBuilder()).append("Message logs:").append(ChatLine.message).toString()); // if chatline.message doesn't work, find the correct variable/where chat messages are stored, and apply it to this.
        printwriter.close();
      }
      catch(Exception exception)
      {
    	    if(error)
        System.out.println("unable to save logs, error.");
        exception.printStackTrace();
      }
    	// booleans
    	public boolean error= true;
    	public File chatlogs;
        }

  2. #2
    iMexi's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Behind my PC
    Posts
    2,026
    Reputation
    32
    Thanks
    288
    Could you explain how this works?

    And it clearly says : "written by iolaka"
    Last edited by iMexi; 11-06-2011 at 04:58 AM.

  3. #3
    john404's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    352
    Reputation
    69
    Thanks
    842
    My Mood
    Doh
    Quote Originally Posted by iMexi View Post
    Could you explain how this works?

    And it clearly says : "written by iolaka"
    i am iolaka , john404 is my other alias

Similar Threads

  1. [Help Request] radar and ingame chat problem
    By cacheat in forum Call of Duty Modern Warfare 2 Help
    Replies: 4
    Last Post: 05-02-2011, 12:06 PM
  2. Chat logs
    By wescooldude3 in forum Combat Arms Discussions
    Replies: 4
    Last Post: 08-25-2010, 01:17 AM
  3. [Request] could someone make a ingame chat box?
    By chainsawdaz in forum Battlefield Heroes Hacks
    Replies: 4
    Last Post: 01-26-2010, 11:18 AM
  4. V, B, N INGAME CHAT (CA)
    By Tall kiwi in forum Combat Arms Help
    Replies: 4
    Last Post: 11-11-2009, 12:52 AM
  5. Nexon Fails got Lobby Chat/Ingame/Clanchat ban 7000 hours
    By Wiirtuallca in forum Combat Arms Hacks & Cheats
    Replies: 38
    Last Post: 06-28-2009, 03:07 PM