Results 1 to 5 of 5
  1. #1
    Bamber's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0

    Need help with a script that can read chat messages

    What would be the simplest way of creating a script that could read chat messages and send them to a text file for example?

  2. #2
    Gravitir3.14's Avatar
    Join Date
    Feb 2018
    Gender
    male
    Location
    Russia - Moscow
    Posts
    548
    Reputation
    92
    Thanks
    9,935
    Quote Originally Posted by Bamber View Post
    What would be the simplest way of creating a script that could read chat messages and send them to a text file for example?
    If you need save them on-play, then use custom client or k-relay plugin.
    If you want to log something from nexus/bazaar/realms, then use nrelay.

  3. The Following User Says Thank You to Gravitir3.14 For This Useful Post:

    Bamber (06-10-2018)

  4. #3
    willfuttbuck's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    235
    Reputation
    28
    Thanks
    6,029
    Quote Originally Posted by Bamber View Post
    What would be the simplest way of creating a script that could read chat messages and send them to a text file for example?
    basically as already said by grav, if it's just one client one place you wanna leave it running, krelay plugin MILA has a text logger you can enable that records all chat to a txt file and is in the releases area.

    if you're looking for an overall chat recording solution over many servers or areas or just wanna use less resources you can go the clientless route and look into nrelay.

  5. The Following User Says Thank You to willfuttbuck For This Useful Post:

    Bamber (06-10-2018)

  6. #4
    Bamber's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    Is there any tutorial on using nrelay? it sounds exactly like something I'm looking for

  7. #5
    Gravitir3.14's Avatar
    Join Date
    Feb 2018
    Gender
    male
    Location
    Russia - Moscow
    Posts
    548
    Reputation
    92
    Thanks
    9,935
    Quote Originally Posted by Bamber View Post
    Is there any tutorial on using nrelay? it sounds exactly like something I'm looking for
    ******, ReadMe, docs.

    - - - Updated - - -

    @Bamber, create messages.json in nrelay folder => add staples {} into messages.json => create new plugin in src/plugins/chat-loger.ts =>
    copy & paste it to new plugin:
    Code:
    import {Client, HookPacket, NrPlugin, PacketType} from "../core/plugin-module";
    import {TextPacket} from "../networking/packets/incoming/text-packet";
    import {Storage} from "../services/storage";
    import * as fs from "fs";
    
    const PLUGIN_NAME = `Chat Logger`;
    const LOG = require(`${getLog(`.json`)}`); //Create messages.json in your nrelay folder and add {} into
    const SAVE_LOG_INTERVAL = 30000; //Interval to saving log
    
    function getLog(postfix: string): string {
        return Storage.makePath((`messages${postfix}`)).toLowerCase();
    }
    
      @NRPlugin({
        name: PLUGIN_NAME,
        author: 'Gravitir3.14',
        enabled: true
    })
    class MessageLogger {
        
        constructor() {
            setInterval(() => this.writeLog(), SAVE_LOG_INTERVAL); // Save log from memory to disk
        }
        
         @hookPacket(PacketType.TEXT)
        onText(client: Client, textPacket: TextPacket): void {
            if (textPacket != null && textPacket.numStars > 10) { // Get message from players who have more than 10 stars
                LOG[`${(new Date).toLocaleTimeString()}.server`] = client.server.name;
                LOG[`${(new Date).toLocaleTimeString()}.name`] = textPacket.name;
                LOG[`${(new Date).toLocaleTimeString()}.text`] = textPacket.text;
            }
        }
    
        private writeLog():void {
            fs.writeFile(`${getLog(`.json`)}`, JSON.stringify(LOG), (err) => console.error);
        }
    
    }
    Setup your settings,accounts,etc and start your nrelay.


     

    {
    "00:38:49.server": "USWest2",
    "00:38:49.name": "LethalVoid",
    "00:38:49.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:38:50.server": "USWest2",
    "00:38:50.name": "NobleEros",
    "00:38:50.text": "Selling T6 Scepter 1 Life @NObleEros Selling T6 Scepter 1 Life @NObleEros",
    "00:38:51.server": "USWest2",
    "00:38:51.name": "NobleEros",
    "00:38:51.text": "Selling T6 Scepter 1 Life @NObleEros Selling T6 Scepter 1 Life @NObleEros",
    "00:38:52.server": "USWest2",
    "00:38:52.name": "LethalVoid",
    "00:38:52.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:38:53.server": "USWest2",
    "00:38:53.name": "SLAYERRVV",
    "00:38:53.text": "selling deca or pixxie for 8 life ",
    "00:38:54.server": "USWest2",
    "00:38:54.name": "SLAYERRVV",
    "00:38:54.text": "selling deca or pixxie for 8 life ",
    "00:38:55.server": "USWest2",
    "00:38:55.name": "SLAYERRVV",
    "00:38:55.text": "selling deca or pixxie for 8 life ",
    "00:38:56.server": "USWest2",
    "00:38:56.name": "SLAYERRVV",
    "00:38:56.text": "selling deca or pixxie for 8 life ",
    "00:38:57.server": "USWest2",
    "00:38:57.name": "SLAYERRVV",
    "00:38:57.text": "selling deca or pixxie for 8 life ",
    "00:38:58.server": "USWest2",
    "00:38:58.name": "Ahjfdk",
    "00:38:58.text": "BUYING T5 TOME FAST @ AHJFDK",
    "00:38:59.server": "USWest2",
    "00:38:59.name": "SLAYERRVV",
    "00:38:59.text": "selling deca or pixxie for 8 life ",
    "00:39:00.server": "USWest2",
    "00:39:00.name": "Ahjfdk",
    "00:39:00.text": "BUYING T5 TOME FAST @ AHJFDK",
    "00:39:01.server": "USWest2",
    "00:39:01.name": "Quazis",
    "00:39:01.text": "B> SPEED 2:1 ATT @quazis",
    "00:39:02.server": "USWest2",
    "00:39:02.name": "PELMEN",
    "00:39:02.text": "b>agate b>griffon @pelmen",
    "00:39:03.server": "USWest2",
    "00:39:03.name": "PELMEN",
    "00:39:03.text": "b>agate b>griffon @pelmen",
    "00:39:04.server": "USWest2",
    "00:39:04.name": "PELMEN",
    "00:39:04.text": "b>agate b>griffon @pelmen",
    "00:39:05.server": "USWest2",
    "00:39:05.name": "Ahjfdk",
    "00:39:05.text": "BUYING T5 TOME FAST @ AHJFDK",
    "00:39:06.server": "USWest2",
    "00:39:06.name": "PELMEN",
    "00:39:06.text": "b>agate b>griffon @pelmen",
    "00:39:07.server": "USWest2",
    "00:39:07.name": "Ahjfdk",
    "00:39:07.text": "BUYING T5 TOME FAST @ AHJFDK",
    "00:39:08.server": "USWest2",
    "00:39:08.name": "Ahjfdk",
    "00:39:08.text": "BUYING T5 TOME FAST @ AHJFDK",
    "00:39:09.server": "USWest2",
    "00:39:09.name": "PELMEN",
    "00:39:09.text": "b>agate b>griffon @pelmen",
    "00:39:10.server": "USWest2",
    "00:39:10.name": "LethalVoid",
    "00:39:10.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:39:11.server": "USWest2",
    "00:39:11.name": "Buzzleball",
    "00:39:11.text": "selling gcookie 3L, bane 2L and foul 1L @buzzleball",
    "00:39:12.server": "USWest2",
    "00:39:12.name": "Phoboy",
    "00:39:12.text": "selling vixen skin",
    "00:39:13.server": "USWest2",
    "00:39:13.name": "UUBOSSUU",
    "00:39:13.text": "selling 3 att for 6 wis",
    "00:39:14.server": "USWest2",
    "00:39:14.name": "Totoototot",
    "00:39:14.text": "Buy T11 dagger",
    "00:39:15.server": "USWest2",
    "00:39:15.name": "Ecookied",
    "00:39:15.text": "BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED ",
    "00:39:16.server": "USWest2",
    "00:39:16.name": "Ahjfdk",
    "00:39:16.text": "BUYING T5 TOME FAST @ AHJFDK",
    "00:39:17.server": "USWest2",
    "00:39:17.name": "Totoototot",
    "00:39:17.text": "Buy T11 dagger",
    "00:39:18.server": "USWest2",
    "00:39:18.name": "UUBOSSUU",
    "00:39:18.text": "selling 3 att for 6 wis",
    "00:39:19.server": "USWest2",
    "00:39:19.name": "PELMEN",
    "00:39:19.text": "b>agate b>griffon @pelmen",
    "00:39:20.server": "USWest2",
    "00:39:20.name": "Innotheum",
    "00:39:20.text": "BUY AGATE AND PARA HP @InnoTHEUM",
    "00:39:21.server": "USWest2",
    "00:39:21.name": "LethalVoid",
    "00:39:21.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:39:22.server": "USWest2",
    "00:39:22.name": "NobleEros",
    "00:39:22.text": "Selling T6 Scepter 1 Life @NObleEros Selling T6 Scepter 1 Life @NObleEros",
    "00:39:23.server": "USWest2",
    "00:39:23.name": "GhostReact",
    "00:39:23.text": "SELLING EXA DEF",
    "00:39:24.server": "USWest2",
    "00:39:24.name": "AutumnLuv",
    "00:39:24.text": "BUY EXAHP",
    "00:39:25.server": "USWest2",
    "00:39:25.name": "UUBOSSUU",
    "00:39:25.text": "selling 3 att for 6 wis",
    "00:39:26.server": "USWest2",
    "00:39:26.name": "UUBOSSUU",
    "00:39:26.text": "selling 3 att for 6 wis",
    "00:39:27.server": "USWest2",
    "00:39:27.name": "Moobimon",
    "00:39:27.text": "S> UBMP! S> Masamune! S> WC! S> Exa def! B> Penguin! @moobimon",
    "00:39:28.server": "USWest2",
    "00:39:28.name": "Ahjfdk",
    "00:39:28.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:39:29.server": "USWest2",
    "00:39:29.name": "NobleEros",
    "00:39:29.text": "Selling T6 Scepter 1 Life @NObleEros Selling T6 Scepter 1 Life @NObleEros",
    "00:39:30.server": "USWest2",
    "00:39:30.name": "Ahjfdk",
    "00:39:30.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:39:31.server": "USWest2",
    "00:39:31.name": "Ahjfdk",
    "00:39:31.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:39:32.server": "USWest2",
    "00:39:32.name": "Ahjfdk",
    "00:39:32.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:39:33.server": "USWest2",
    "00:39:33.name": "Totoototot",
    "00:39:33.text": "Buy T11 dagger",
    "00:39:34.server": "USWest2",
    "00:39:34.name": "Ahjfdk",
    "00:39:34.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:39:35.server": "USWest2",
    "00:39:35.name": "UUBOSSUU",
    "00:39:35.text": "selling 3 att for 6 wis",
    "00:39:36.server": "USWest2",
    "00:39:36.name": "UUBOSSUU",
    "00:39:36.text": "selling 3 att for 6 wis",
    "00:39:37.server": "USWest2",
    "00:39:37.name": "Totoototot",
    "00:39:37.text": "Buy T11 dagger",
    "00:39:38.server": "USWest2",
    "00:39:38.name": "Totoototot",
    "00:39:38.text": "Buy T11 dagger",
    "00:39:39.server": "USWest2",
    "00:39:39.name": "Totoototot",
    "00:39:39.text": "Buy T11 dagger",
    "00:39:40.server": "USWest2",
    "00:39:40.name": "JesteMagie",
    "00:39:40.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:39:41.server": "USWest2",
    "00:39:41.name": "Ahjfdk",
    "00:39:41.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:39:42.server": "USWest2",
    "00:39:42.name": "Buzzleball",
    "00:39:42.text": "selling gcookie 3L, bane 2L and foul 1L @buzzleball",
    "00:39:43.server": "USWest2",
    "00:39:43.name": "PELMEN",
    "00:39:43.text": "b>agate b>griffon @pelmen",
    "00:39:44.server": "USWest2",
    "00:39:44.name": "PELMEN",
    "00:39:44.text": "b>agate b>griffon @pelmen",
    "00:39:45.server": "USWest2",
    "00:39:45.name": "Martinoxd",
    "00:39:45.text": "sell wand t11",
    "00:39:46.server": "USWest2",
    "00:39:46.name": "PELMEN",
    "00:39:46.text": "b>agate b>griffon @pelmen",
    "00:39:47.server": "USWest2",
    "00:39:47.name": "Motarno",
    "00:39:47.text": "buying life 1:4 with mana @motarno",
    "00:39:48.server": "USWest2",
    "00:39:48.name": "LethalVoid",
    "00:39:48.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:39:49.server": "USWest2",
    "00:39:49.name": "Totoototot",
    "00:39:49.text": "Buy T11 dagger",
    "00:39:50.server": "USWest2",
    "00:39:50.name": "PELMEN",
    "00:39:50.text": "b>agate b>griffon @pelmen",
    "00:39:51.server": "USWest2",
    "00:39:51.name": "Ahjfdk",
    "00:39:51.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:39:52.server": "USWest2",
    "00:39:52.name": "Ahjfdk",
    "00:39:52.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:39:53.server": "USWest2",
    "00:39:53.name": "PELMEN",
    "00:39:53.text": "b>agate b>griffon @pelmen",
    "00:39:54.server": "USWest2",
    "00:39:54.name": "Ahjfdk",
    "00:39:54.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:39:55.server": "USWest2",
    "00:39:55.name": "PELMEN",
    "00:39:55.text": "b>agate b>griffon @pelmen",
    "00:39:56.server": "USWest2",
    "00:39:56.name": "Ahjfdk",
    "00:39:56.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:39:57.server": "USWest2",
    "00:39:57.name": "Ahjfdk",
    "00:39:57.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:39:58.server": "USWest2",
    "00:39:58.name": "Martinoxd",
    "00:39:58.text": "sell wand t11",
    "00:39:59.server": "USEast3",
    "00:39:59.name": "Clragon",
    "00:39:59.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Use code NEXUSSALE for 10% off!",
    "00:40:00.server": "USWest2",
    "00:40:00.name": "Ahjfdk",
    "00:40:00.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:40:01.server": "USWest2",
    "00:40:01.name": "Ahjfdk",
    "00:40:01.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:40:02.server": "USEast3",
    "00:40:02.name": "DuckPoint",
    "00:40:02.text": "lel",
    "00:40:03.server": "USWest2",
    "00:40:03.name": "Innotheum",
    "00:40:03.text": "BUY AGATE AND PARA HP @InnoTHEUM",
    "00:40:04.server": "USWest2",
    "00:40:04.name": "UUBOSSUU",
    "00:40:04.text": "selling att for wis",
    "00:40:05.server": "USWest2",
    "00:40:05.name": "LethalVoid",
    "00:40:05.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:40:06.server": "USWest3",
    "00:40:06.name": "Pojqwjebu",
    "00:40:06.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Individual STs, Tops, Skins",
    "00:40:07.server": "USMidWest",
    "00:40:07.name": "Kevinaiter",
    "00:40:07.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Check out our NEW LOWER PRlCES!!",
    "00:40:08.server": "USWest2",
    "00:40:08.name": "Totoototot",
    "00:40:08.text": "Buy T11 dagger",
    "00:40:09.server": "USWest2",
    "00:40:09.name": "AivarasXXX",
    "00:40:09.text": "B>LIFE",
    "00:40:10.server": "USWest2",
    "00:40:10.name": "SLAYERRVV",
    "00:40:10.text": "selling deca or pixxie for 8 life ",
    "00:40:11.server": "USWest2",
    "00:40:11.name": "Totoototot",
    "00:40:11.text": "Buy T11 dagger",
    "00:40:12.server": "USWest2",
    "00:40:12.name": "Sanados",
    "00:40:12.text": "S>8 dex",
    "00:40:13.server": "USWest3",
    "00:40:13.name": "Pojqwjebu",
    "00:40:13.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= Top and ST Class Packs",
    "00:40:14.server": "USWest2",
    "00:40:14.name": "LethalVoid",
    "00:40:14.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:40:15.server": "USMidWest",
    "00:40:15.name": "Kevinaiter",
    "00:40:15.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= STs, Sets, Decas, Skins, More",
    "00:40:16.server": "USWest2",
    "00:40:16.name": "Ahjfdk",
    "00:40:16.text": "v",
    "00:40:17.server": "USWest2",
    "00:40:17.name": "Totoototot",
    "00:40:17.text": "Buy T11 dagger",
    "00:40:18.server": "USWest2",
    "00:40:18.name": "Innotheum",
    "00:40:18.text": "BUY AGATE AND PARA HP @InnoTHEUM",
    "00:40:19.server": "USMidWest",
    "00:40:19.name": "Genarikguy",
    "00:40:19.text": "-25 hp ",
    "00:40:20.server": "USWest2",
    "00:40:20.name": "Ahjfdk",
    "00:40:20.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:40:21.server": "USMidWest",
    "00:40:21.name": "Genarikguy",
    "00:40:21.text": "decent",
    "00:40:22.server": "USWest2",
    "00:40:22.name": "Totoototot",
    "00:40:22.text": "Buy T11 dagger",
    "00:40:23.server": "USWest2",
    "00:40:23.name": "Ahjfdk",
    "00:40:23.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:40:24.server": "USWest2",
    "00:40:24.name": "Totoototot",
    "00:40:24.text": "Buy T11 dagger",
    "00:40:25.server": "USWest2",
    "00:40:25.name": "PELMEN",
    "00:40:25.text": "b>agate b>griffon @pelmen",
    "00:40:26.server": "USWest2",
    "00:40:26.name": "SLAYERRVV",
    "00:40:26.text": "selling deca or pixxie for 8 life ",
    "00:40:27.server": "USWest3",
    "00:40:27.name": "Pojqwjebu",
    "00:40:27.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ 600 fp items! Way cheaper than buying FP items with gold,",
    "00:40:28.server": "USWest2",
    "00:40:28.name": "Totoototot",
    "00:40:28.text": "Buy T11 dagger",
    "00:40:29.server": "USWest2",
    "00:40:29.name": "Moobimon",
    "00:40:29.text": "S> UBMP! S> Masamune! S> WC! S> Exa def! B> Penguin! @moobimon",
    "00:40:30.server": "USWest2",
    "00:40:30.name": "Ahjfdk",
    "00:40:30.text": "v",
    "00:40:31.server": "USWest2",
    "00:40:31.name": "Innotheum",
    "00:40:31.text": "BUY AGATE AND PARA HP @InnoTHEUM",
    "00:40:32.server": "USWest2",
    "00:40:32.name": "JesteMagie",
    "00:40:32.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:40:33.server": "USWest2",
    "00:40:33.name": "SainttLv",
    "00:40:33.text": "its t6 prism man",
    "00:40:34.server": "EUWest2",
    "00:40:34.name": "PhatPhishy",
    "00:40:34.text": "selling attack",
    "00:40:35.server": "USWest2",
    "00:40:35.name": "Moobimon",
    "00:40:35.text": "S> UBMP! S> Masamune! S> WC! S> Exa def! B> Penguin! @moobimon",
    "00:40:36.server": "USMidWest",
    "00:40:36.name": "Kevinaiter",
    "00:40:36.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= Use code NEXUSSALE for 10% off!",
    "00:40:37.server": "USWest2",
    "00:40:37.name": "LikeSalmon",
    "00:40:37.text": "SELLING 3ATK AND T10 NINJA WEAPON FOR 3 DEF @likesalmon",
    "00:40:38.server": "USWest2",
    "00:40:38.name": "Ahjfdk",
    "00:40:38.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:40:39.server": "USWest2",
    "00:40:39.name": "Mikeisbomb",
    "00:40:39.text": "Selling speed for wis",
    "00:40:40.server": "USWest2",
    "00:40:40.name": "Totoototot",
    "00:40:40.text": "Buy T11 dagger",
    "00:40:41.server": "USWest2",
    "00:40:41.name": "LethalVoid",
    "00:40:41.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:40:42.server": "USWest2",
    "00:40:42.name": "BlzrdGlxy",
    "00:40:42.text": "SELL GSORC AND EXA HP",
    "00:40:43.server": "USWest2",
    "00:40:43.name": "LethalVoid",
    "00:40:43.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:40:44.server": "USWest2",
    "00:40:44.name": "LethalVoid",
    "00:40:44.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:40:45.server": "USWest2",
    "00:40:45.name": "JesteMagie",
    "00:40:45.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:40:46.server": "USWest2",
    "00:40:46.name": "Ahjfdk",
    "00:40:46.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:40:47.server": "USWest2",
    "00:40:47.name": "LikeSalmon",
    "00:40:47.text": "SELLING 3ATK AND T10 NINJA WEAPON FOR 3 DEF @likesalmon",
    "00:40:48.server": "USWest3",
    "00:40:48.name": "Pojqwjebu",
    "00:40:48.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Check out our NEW LOWER PRlCES!!",
    "00:40:49.server": "USWest2",
    "00:40:49.name": "Motarno",
    "00:40:49.text": "buying life 1:4 with mana @motarno",
    "00:40:50.server": "USWest2",
    "00:40:50.name": "LethalVoid",
    "00:40:50.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:40:51.server": "USWest2",
    "00:40:51.name": "Mikeisbomb",
    "00:40:51.text": "Selling speed for wis",
    "00:40:52.server": "USWest2",
    "00:40:52.name": "LikeSalmon",
    "00:40:52.text": "SELLING 3ATK AND T10 NINJA WEAPON FOR 3 DEF @likesalmon",
    "00:40:53.server": "USWest2",
    "00:40:53.name": "LikeSalmon",
    "00:40:53.text": "SELLING 3ATK AND T10 NINJA WEAPON FOR 3 DEF @likesalmon",
    "00:40:54.server": "USWest2",
    "00:40:54.name": "Ahjfdk",
    "00:40:54.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:40:55.server": "USWest2",
    "00:40:55.name": "Ahjfdk",
    "00:40:55.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:40:56.server": "USWest2",
    "00:40:56.name": "McDubz",
    "00:40:56.text": "B> WOODLAND EGG FOR ATT 1:1 @McDubz",
    "00:40:57.server": "USWest2",
    "00:40:57.name": "Sanados",
    "00:40:57.text": "S>8 dex",
    "00:40:58.server": "USWest2",
    "00:40:58.name": "AutumnLuv",
    "00:40:58.text": "BUY EXA HP 1 life 2 def",
    "00:40:59.server": "USWest2",
    "00:40:59.name": "JesteMagie",
    "00:40:59.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:41:00.server": "USMidWest",
    "00:41:00.name": "Kevinaiter",
    "00:41:00.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= Coupons and live support",
    "00:41:01.server": "USWest2",
    "00:41:01.name": "Ahjfdk",
    "00:41:01.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:41:02.server": "USWest3",
    "00:41:02.name": "Pojqwjebu",
    "00:41:02.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Life and Maxing Pack sale!",
    "00:41:03.server": "USWest2",
    "00:41:03.name": "Ahjfdk",
    "00:41:03.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:41:04.server": "USWest2",
    "00:41:04.name": "PELMEN",
    "00:41:04.text": "b>agate b>griffon @pelmen",
    "00:41:05.server": "USWest2",
    "00:41:05.name": "Moobimon",
    "00:41:05.text": "S> UBMP! S> Masamune! S> WC! S> Exa def! B> Penguin! @moobimon",
    "00:41:06.server": "USWest2",
    "00:41:06.name": "JesteMagie",
    "00:41:06.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:41:07.server": "USWest2",
    "00:41:07.name": "Jezou",
    "00:41:07.text": "S> 8spd for 2 def fast @Jezou",
    "00:41:08.server": "USWest2",
    "00:41:08.name": "AutumnLuv",
    "00:41:08.text": "BUY EXA HP 1 life 2 def",
    "00:41:09.server": "USMidWest",
    "00:41:09.name": "Kevinaiter",
    "00:41:09.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Check out our NEW LOWER PRlCES!!",
    "00:41:10.server": "USWest3",
    "00:41:10.name": "Pojqwjebu",
    "00:41:10.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= Accepting Giftcards as payment!",
    "00:41:11.server": "USWest2",
    "00:41:11.name": "Moobimon",
    "00:41:11.text": "S> UBMP! S> Masamune! S> WC! S> Exa def! B> Penguin! @moobimon",
    "00:41:12.server": "USWest2",
    "00:41:12.name": "Jezou",
    "00:41:12.text": "S> 8spd for 2 def fast @Jezou",
    "00:41:13.server": "USEast3",
    "00:41:13.name": "Clragon",
    "00:41:13.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ 100/100/XX Divine Pet Accounts. 15% of the price.",
    "00:41:14.server": "USWest2",
    "00:41:14.name": "BearofTedy",
    "00:41:14.text": "SELLING LIFE FOR 8 PURE DEF",
    "00:41:15.server": "USWest2",
    "00:41:15.name": "JesteMagie",
    "00:41:15.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:41:16.server": "USWest2",
    "00:41:16.name": "AutumnLuv",
    "00:41:16.text": "BUY EXA HP 1 life 2 def",
    "00:41:17.server": "USWest2",
    "00:41:17.name": "Ahjfdk",
    "00:41:17.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:41:18.server": "USWest2",
    "00:41:18.name": "Ahjfdk",
    "00:41:18.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:41:19.server": "USWest2",
    "00:41:19.name": "Ahjfdk",
    "00:41:19.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:41:20.server": "USWest3",
    "00:41:20.name": "Pojqwjebu",
    "00:41:20.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Use code NEXUSSALE for 10% off!",
    "00:41:21.server": "USWest2",
    "00:41:21.name": "FruitRage",
    "00:41:21.text": "B> Life for 8 ATK @ FruitRage",
    "00:41:22.server": "USWest2",
    "00:41:22.name": "Ahjfdk",
    "00:41:22.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:41:23.server": "USEast3",
    "00:41:23.name": "Clragon",
    "00:41:23.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ 600 fp items! Way cheaper than buying FP items with gold.",
    "00:41:24.server": "USWest2",
    "00:41:24.name": "Fmlao",
    "00:41:24.text": "Sell t12 wand@fmlao",
    "00:41:25.server": "USWest2",
    "00:41:25.name": "Ahjfdk",
    "00:41:25.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:41:26.server": "USWest2",
    "00:41:26.name": "JesteMagie",
    "00:41:26.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:41:27.server": "USWest2",
    "00:41:27.name": "Jezou",
    "00:41:27.text": "make space tho",
    "00:41:28.server": "USWest2",
    "00:41:28.name": "Moobimon",
    "00:41:28.text": "S> UBMP! S> Masamune! S> WC! S> Exa def! B> Penguin! @moobimon",
    "00:41:29.server": "USWest2",
    "00:41:29.name": "ClanOfTran",
    "00:41:29.text": "S>VIT 1:1 DEF S>VIT 1:1 DEF S>VIT 1:1 DEF S>VIT 1:1 DEF S>VIT 1:1 DEF S>VIT 1:1 DEF S>VIT 1:1 DEF S>VIT 1:1 DEF S>VIT 1:1 DEF S>",
    "00:41:30.server": "USMidWest",
    "00:41:30.name": "Kevinaiter",
    "00:41:30.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= Use code NEXUSSALE for 10% off!",
    "00:41:31.server": "USWest2",
    "00:41:31.name": "McDubz",
    "00:41:31.text": "B> WOODLAND EGG FOR ATT 1:1 @McDubz",
    "00:41:32.server": "USWest2",
    "00:41:32.name": "Motarno",
    "00:41:32.text": "buying life 1:4 with mana @motarno",
    "00:41:33.server": "USWest2",
    "00:41:33.name": "JesteMagie",
    "00:41:33.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:41:34.server": "USWest2",
    "00:41:34.name": "Tanknlank",
    "00:41:34.text": "SPIN THE WHEEL COME ONE COME ALL SPIN THE WHEEL AND WIN 2 TIMES AS MUCH AS U GIVE ME @TANKnlank",
    "00:41:35.server": "USWest2",
    "00:41:35.name": "Tanknlank",
    "00:41:35.text": "SPIN THE WHEEL COME ONE COME ALL SPIN THE WHEEL AND WIN 2 TIMES AS MUCH AS U GIVE ME @TANKnlank",
    "00:41:36.server": "USEast2",
    "00:41:36.name": "NathinaPoo",
    "00:41:36.text": "I REALLY NEED GEAR",
    "00:41:37.server": "USWest2",
    "00:41:37.name": "Tanknlank",
    "00:41:37.text": "SPIN THE WHEEL COME ONE COME ALL SPIN THE WHEEL AND WIN 2 TIMES AS MUCH AS U GIVE ME @TANKnlank",
    "00:41:38.server": "USWest2",
    "00:41:38.name": "PELMEN",
    "00:41:38.text": "b>agate b>griffon @pelmen",
    "00:41:39.server": "USWest2",
    "00:41:39.name": "MagicBenni",
    "00:41:39.text": "SELL VIT, PARA HP FOR 1 DEF EACH @MagicBenni",
    "00:41:40.server": "USWest2",
    "00:41:40.name": "Gustavojkj",
    "00:41:40.text": "SELLING RECOMP , HYDRA FOR 1 LIFE EACH @Gustavojkj",
    "00:41:41.server": "USWest2",
    "00:41:41.name": "Ahjfdk",
    "00:41:41.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:41:42.server": "USWest2",
    "00:41:42.name": "KyleTam",
    "00:41:42.text": "selling t10 items for pots",
    "00:41:43.server": "USWest2",
    "00:41:43.name": "BearofTedy",
    "00:41:43.text": "SELLING LIFE FOR 8 PURE DEF",
    "00:41:44.server": "USMidWest",
    "00:41:44.name": "Kevinaiter",
    "00:41:44.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Top and ST Class Packs",
    "00:41:45.server": "USWest2",
    "00:41:45.name": "Moobimon",
    "00:41:45.text": "S> UBMP! S> Masamune! S> WC! S> Exa def! B> Penguin! @moobimon",
    "00:41:46.server": "USWest2",
    "00:41:46.name": "Parlero",
    "00:41:46.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:41:47.server": "USWest2",
    "00:41:47.name": "Urupak",
    "00:41:47.text": "buy dagger for att",
    "00:41:48.server": "USMidWest",
    "00:41:48.name": "Kevinaiter",
    "00:41:48.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ 100/100/XX Divine Pet Accounts. 15% of the price.",
    "00:41:49.server": "USWest2",
    "00:41:49.name": "JesteMagie",
    "00:41:49.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:41:50.server": "USWest2",
    "00:41:50.name": "Ahjfdk",
    "00:41:50.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:41:51.server": "USWest2",
    "00:41:51.name": "Moobimon",
    "00:41:51.text": "S> UBMP! S> Masamune! S> WC! S> Exa def! B> Penguin! @moobimon",
    "00:41:52.server": "USWest2",
    "00:41:52.name": "Lionidaras",
    "00:41:52.text": "S> 2 wis For 1 Vit @lionidaras",
    "00:41:53.server": "USWest2",
    "00:41:53.name": "McDubz",
    "00:41:53.text": "B> WOODLAND EGG FOR ATT 1:1 @McDubz",
    "00:41:54.server": "USWest2",
    "00:41:54.name": "Ahjfdk",
    "00:41:54.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:41:55.server": "USWest3",
    "00:41:55.name": "Pojqwjebu",
    "00:41:55.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ All new INSTANT Maxing Packs for all classes",
    "00:41:56.server": "USWest2",
    "00:41:56.name": "SteadO",
    "00:41:56.text": "Selling (3) Mana @steadO",
    "00:41:57.server": "USWest2",
    "00:41:57.name": "ThePrayer",
    "00:41:57.text": "S> Life1:5Mana or large op @ThePrayer",
    "00:41:58.server": "USWest2",
    "00:41:58.name": "Galadort",
    "00:41:58.text": "S>2atk+2rainbow 2def @Galadort",
    "00:41:59.server": "USWest2",
    "00:41:59.name": "ClanOfTran",
    "00:41:59.text": "OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DE",
    "00:42:00.server": "USWest2",
    "00:42:00.name": "ClanOfTran",
    "00:42:00.text": "OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DEF OP for 2 DE",
    "00:42:01.server": "USWest2",
    "00:42:01.name": "JesteMagie",
    "00:42:01.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:42:02.server": "USWest2",
    "00:42:02.name": "McDubz",
    "00:42:02.text": "B> WOODLAND EGG FOR ATT 1:1 @McDubz",
    "00:42:03.server": "USWest2",
    "00:42:03.name": "PabloChick",
    "00:42:03.text": "Selling 2 spd and 2 dex for 1 def",
    "00:42:04.server": "USWest2",
    "00:42:04.name": "Lionidaras",
    "00:42:04.text": "S> 2 wis For 1 Vit @lionidaras",
    "00:42:05.server": "USWest2",
    "00:42:05.name": "Sanados",
    "00:42:05.text": "S>8 dex",
    "00:42:06.server": "USWest2",
    "00:42:06.name": "BearofTedy",
    "00:42:06.text": "SELLING LIFE FOR 8 PURE DEF",
    "00:42:07.server": "USWest2",
    "00:42:07.name": "TmanSkull",
    "00:42:07.text": "SELLING DECA",
    "00:42:08.server": "USWest2",
    "00:42:08.name": "JesteMagie",
    "00:42:08.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:42:09.server": "USWest2",
    "00:42:09.name": "Asdawkjdha",
    "00:42:09.text": "Newones",
    "00:42:10.server": "USWest2",
    "00:42:10.name": "McDubz",
    "00:42:10.text": "B> WOODLAND EGG FOR ATT 1:1 @McDubz",
    "00:42:11.server": "USWest2",
    "00:42:11.name": "Mikeisbomb",
    "00:42:11.text": "selling speed for wis",
    "00:42:12.server": "USWest2",
    "00:42:12.name": "PabloChick",
    "00:42:12.text": "Selling 2 spd and 2 dex for 1 def",
    "00:42:13.server": "USWest2",
    "00:42:13.name": "Ahjfdk",
    "00:42:13.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:42:14.server": "USWest2",
    "00:42:14.name": "Mikeisbomb",
    "00:42:14.text": "selling speed for wis",
    "00:42:15.server": "USWest2",
    "00:42:15.name": "Asdawkjdha",
    "00:42:15.text": "S>BOOK OF GEB !! Asdawkjdha !!",
    "00:42:16.server": "USMidWest",
    "00:42:16.name": "Kevinaiter",
    "00:42:16.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= Immediate delivery 24/7",
    "00:42:17.server": "USWest2",
    "00:42:17.name": "LethalVoid",
    "00:42:17.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:42:18.server": "USWest2",
    "00:42:18.name": "GaikouM",
    "00:42:18.text": "Sell Acclaim (1L) @GaikouM",
    "00:42:19.server": "USWest2",
    "00:42:19.name": "SteadO",
    "00:42:19.text": "Selling (3) Mana @steadO",
    "00:42:20.server": "USWest2",
    "00:42:20.name": "Poreshi",
    "00:42:20.text": "SELL GCOOKIE AND MILK AND T6 STAR PORESHI",
    "00:42:21.server": "USWest2",
    "00:42:21.name": "Ahjfdk",
    "00:42:21.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:42:22.server": "USWest2",
    "00:42:22.name": "PabloChick",
    "00:42:22.text": "Selling 2 spd and 2 dex for 1 def",
    "00:42:23.server": "USWest3",
    "00:42:23.name": "Pojqwjebu",
    "00:42:23.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Life and Maxing Pack sale!",
    "00:42:24.server": "USWest2",
    "00:42:24.name": "Ahjfdk",
    "00:42:24.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:42:25.server": "USWest2",
    "00:42:25.name": "Mikeisbomb",
    "00:42:25.text": "selling speed for wis",
    "00:42:26.server": "USWest2",
    "00:42:26.name": "Urupak",
    "00:42:26.text": "buy dagger for att",
    "00:42:27.server": "USWest2",
    "00:42:27.name": "Galadort",
    "00:42:27.text": "S>2atk+2rainbow 2def @Galadort",
    "00:42:28.server": "USWest2",
    "00:42:28.name": "Ahjfdk",
    "00:42:28.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:42:29.server": "USWest2",
    "00:42:29.name": "SainttLv",
    "00:42:29.text": "2 att",
    "00:42:30.server": "USWest2",
    "00:42:30.name": "LethalVoid",
    "00:42:30.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:42:31.server": "USWest2",
    "00:42:31.name": "Ahjfdk",
    "00:42:31.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:42:32.server": "USWest2",
    "00:42:32.name": "SainttLv",
    "00:42:32.text": "fast",
    "00:42:33.server": "USWest2",
    "00:42:33.name": "LethalVoid",
    "00:42:33.text": "B> Nexus no Miko or Jack the Ripper for 2 UBHP + 2 L @lethalVoid",
    "00:42:34.server": "USWest2",
    "00:42:34.name": "TmanSkull",
    "00:42:34.text": "SELLING DECA ",
    "00:42:35.server": "USWest2",
    "00:42:35.name": "Galadort",
    "00:42:35.text": "S>2atk+2rainbow 2def @Galadort",
    "00:42:36.server": "USWest2",
    "00:42:36.name": "Mikeisbomb",
    "00:42:36.text": "selling speed for wis",
    "00:42:37.server": "USWest2",
    "00:42:37.name": "Ahjfdk",
    "00:42:37.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:42:38.server": "USWest2",
    "00:42:38.name": "TmanSkull",
    "00:42:38.text": "SELLING DECA",
    "00:42:39.server": "USWest2",
    "00:42:39.name": "Mikeisbomb",
    "00:42:39.text": "selling speed for wis",
    "00:42:40.server": "USWest2",
    "00:42:40.name": "Mikeisbomb",
    "00:42:40.text": "selling speed for wis",
    "00:42:41.server": "USWest",
    "00:42:41.name": "DaemonSabe",
    "00:42:41.text": "no ty :)",
    "00:42:42.server": "USWest2",
    "00:42:42.name": "Ahjfdk",
    "00:42:42.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:42:43.server": "USWest2",
    "00:42:43.name": "Mikeisbomb",
    "00:42:43.text": "selling speed for wis",
    "00:42:44.server": "USMidWest",
    "00:42:44.name": "Kevinaiter",
    "00:42:44.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Selling new UT Accounts with maxed characters!",
    "00:42:45.server": "USWest2",
    "00:42:45.name": "Netzach",
    "00:42:45.text": "sell acrop/hydra/recomp/foul/sceptert6/spellt6 @@@ sell acrop/hydra/recomp/foul/sceptert6/spellt6 @@@ ",
    "00:42:46.server": "USWest2",
    "00:42:46.name": "Mikeisbomb",
    "00:42:46.text": "selling speed for wis",
    "00:42:47.server": "USWest2",
    "00:42:47.name": "Wearegodss",
    "00:42:47.text": "selling 3 mana @wearegodss",
    "00:42:48.server": "USWest2",
    "00:42:48.name": "GloopBloop",
    "00:42:48.text": "Buying Mana @gloopBloop",
    "00:42:49.server": "USWest2",
    "00:42:49.name": "Mikeisbomb",
    "00:42:49.text": "selling speed for wis",
    "00:42:50.server": "USWest2",
    "00:42:50.name": "Sanados",
    "00:42:50.text": "S>8 dex",
    "00:42:51.server": "USEast3",
    "00:42:51.name": "Clragon",
    "00:42:51.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ All new INSTANT Maxing Packs for all classes",
    "00:42:52.server": "USWest2",
    "00:42:52.name": "FruitRage",
    "00:42:52.text": "B> Life for 8 ATK @ FruitRage",
    "00:42:53.server": "USWest2",
    "00:42:53.name": "Parlero",
    "00:42:53.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:42:54.server": "USMidWest2",
    "00:42:54.name": "Nolanrocs",
    "00:42:54.text": "oops",
    "00:42:55.server": "USWest2",
    "00:42:55.name": "PELMEN",
    "00:42:55.text": "b>agate b>para hp @pelmen",
    "00:42:56.server": "USWest2",
    "00:42:56.name": "SLAYERRVV",
    "00:42:56.text": "Bagala",
    "00:42:57.server": "USWest2",
    "00:42:57.name": "Moobimon",
    "00:42:57.text": "S> UBMP! S> Masamune! S> WC! S> Exa def! B> Penguin! @moobimon",
    "00:42:58.server": "USWest3",
    "00:42:58.name": "Pojqwjebu",
    "00:42:58.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Immediate delivery 24/7",
    "00:42:59.server": "USWest2",
    "00:42:59.name": "Gustavojkj",
    "00:42:59.text": "SELLING RECOMP , HYDRA FOR 1 LIFE EACH @Gustavojkj",
    "00:43:00.server": "USWest2",
    "00:43:00.name": "Moobimon",
    "00:43:00.text": "S> UBMP! S> Masamune! S> WC! S> Exa def! B> Penguin! @moobimon",
    "00:43:01.server": "USWest2",
    "00:43:01.name": "Gustavojkj",
    "00:43:01.text": "SELLING RECOMP , HYDRA FOR 1 LIFE EACH @Gustavojkj",
    "00:43:02.server": "USWest3",
    "00:43:02.name": "Pojqwjebu",
    "00:43:02.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Check out our NEW LOWER PRlCES!!",
    "00:43:03.server": "USWest2",
    "00:43:03.name": "Parlero",
    "00:43:03.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:43:04.server": "USWest2",
    "00:43:04.name": "SteadO",
    "00:43:04.text": "Selling (3) Mana @steadO",
    "00:43:05.server": "USWest2",
    "00:43:05.name": "Sanados",
    "00:43:05.text": "S>8 dex",
    "00:43:06.server": "USWest2",
    "00:43:06.name": "XDragneell",
    "00:43:06.text": "Selling Deca for OP",
    "00:43:07.server": "USWest2",
    "00:43:07.name": "XDragneell",
    "00:43:07.text": "Selling Deca for OP",
    "00:43:08.server": "USWest2",
    "00:43:08.name": "Wearegodss",
    "00:43:08.text": "selling 3 mana @wearegodss",
    "00:43:09.server": "USMidWest",
    "00:43:09.name": "Kevinaiter",
    "00:43:09.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Immediate delivery 24/7",
    "00:43:10.server": "USWest2",
    "00:43:10.name": "Urupak",
    "00:43:10.text": "buy dagger for att",
    "00:43:11.server": "USWest2",
    "00:43:11.name": "Asdawkjdha",
    "00:43:11.text": "S>BOOK OF GEB !! Asdawkjdha !!",
    "00:43:12.server": "USEast3",
    "00:43:12.name": "Clragon",
    "00:43:12.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Selling all the new winter reskins!",
    "00:43:13.server": "USWest2",
    "00:43:13.name": "PELMEN",
    "00:43:13.text": "b>agate b>para hp @pelmen",
    "00:43:14.server": "USWest2",
    "00:43:14.name": "Ahjfdk",
    "00:43:14.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:43:15.server": "USWest2",
    "00:43:15.name": "Ahjfdk",
    "00:43:15.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:43:16.server": "USWest2",
    "00:43:16.name": "THEPRAICES",
    "00:43:16.text": "selling ghelm and zseal @theprAICES",
    "00:43:17.server": "USMidWest",
    "00:43:17.name": "Kevinaiter",
    "00:43:17.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Class sets and ST sets",
    "00:43:18.server": "USWest2",
    "00:43:18.name": "Lionidaras",
    "00:43:18.text": "S> 2 wis For 1 Vit @lionidaras",
    "00:43:19.server": "USWest3",
    "00:43:19.name": "Pojqwjebu",
    "00:43:19.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Check out our NEW LOWER PRlCES!!",
    "00:43:20.server": "USMidWest",
    "00:43:20.name": "Kevinaiter",
    "00:43:20.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Always in stock. Immediate delivery.",
    "00:43:21.server": "USWest2",
    "00:43:21.name": "JesteMagie",
    "00:43:21.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:43:22.server": "USWest2",
    "00:43:22.name": "Ahjfdk",
    "00:43:22.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:43:23.server": "USWest2",
    "00:43:23.name": "Ahjfdk",
    "00:43:23.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:43:24.server": "USWest2",
    "00:43:24.name": "JesteMagie",
    "00:43:24.text": "S> T6 SKULL 2L/ T6 POSION 2L/ FOUL 1L",
    "00:43:25.server": "USWest2",
    "00:43:25.name": "Batmanstop",
    "00:43:25.text": "buying life 1:8 @BatManstop",
    "00:43:26.server": "USWest2",
    "00:43:26.name": "THEPRAICES",
    "00:43:26.text": "selling ghelm and zseal @theprAICES",
    "00:43:27.server": "USWest2",
    "00:43:27.name": "Fmlao",
    "00:43:27.text": "Sell def for para hp@fmlao",
    "00:43:28.server": "USWest2",
    "00:43:28.name": "Asdawkjdha",
    "00:43:28.text": "S>BOOK OF GEB !! Asdawkjdha !!",
    "00:43:29.server": "USWest2",
    "00:43:29.name": "Moobimon",
    "00:43:29.text": "S> UBMP! S> Masamune! S> WC! S> Exa def! B> Penguin! @moobimon",
    "00:43:30.server": "USWest2",
    "00:43:30.name": "Arekxdx",
    "00:43:30.text": "SELL 1 DEF FOR 3WIS OR 3SPD OR 3DEX @ArekXDX",
    "00:43:31.server": "USWest3",
    "00:43:31.name": "Pojqwjebu",
    "00:43:31.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Use code NEXUSSALE for 10% off!",
    "00:43:32.server": "USWest2",
    "00:43:32.name": "ClanOfTran",
    "00:43:32.text": "S>MANA 1:2 PURE DEF S>MANA 1:2 PURE DEF S>MANA 1:2 PURE DEF S>MANA 1:2 PURE DEF S>MANA 1:2 PURE DEF S>MANA 1:2 PURE DEF S>MANA 1",
    "00:43:33.server": "USEast3",
    "00:43:33.name": "Clragon",
    "00:43:33.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= All the vanity items are for sale",
    "00:43:34.server": "USWest2",
    "00:43:34.name": "Gdncjsmidc",
    "00:43:34.text": "Big op for 4 life @Gdncjsmidc",
    "00:43:35.server": "USWest2",
    "00:43:35.name": "ThePrayer",
    "00:43:35.text": "S> Life1:5Mana or large op @ThePrayer",
    "00:43:36.server": "USWest2",
    "00:43:36.name": "Trebula",
    "00:43:36.text": "Selling mana for dex 1:5 @Trebula",
    "00:43:37.server": "USWest2",
    "00:43:37.name": "Batmanstop",
    "00:43:37.text": "buying life 1:8 @BatManstop",
    "00:43:38.server": "USWest2",
    "00:43:38.name": "Trebula",
    "00:43:38.text": "Selling mana for dex 1:5 @Trebula",
    "00:43:39.server": "USWest2",
    "00:43:39.name": "Trebula",
    "00:43:39.text": "Selling mana for dex 1:5 @Trebula",
    "00:43:40.server": "USWest2",
    "00:43:40.name": "Trebula",
    "00:43:40.text": "Selling mana for dex 1:5 @Trebula",
    "00:43:41.server": "USWest2",
    "00:43:41.name": "Trebula",
    "00:43:41.text": "Selling mana for dex 1:5 @Trebula",
    "00:43:42.server": "USWest2",
    "00:43:42.name": "Trebula",
    "00:43:42.text": "Selling mana for dex 1:5 @Trebula",
    "00:43:43.server": "USWest2",
    "00:43:43.name": "Tanknlank",
    "00:43:43.text": "SPIN THE WHEEL COME ONE COME ALL SPIN THE WHEEL AND WIN 2 TIMES AS MUCH AS U GIVE ME @TANKnlank",
    "00:43:44.server": "USWest2",
    "00:43:44.name": "Tanknlank",
    "00:43:44.text": "SPIN THE WHEEL COME ONE COME ALL SPIN THE WHEEL AND WIN 2 TIMES AS MUCH AS U GIVE ME @TANKnlank",
    "00:43:45.server": "USWest2",
    "00:43:45.name": "Trebula",
    "00:43:45.text": "Selling mana for dex 1:5 @Trebula",
    "00:43:46.server": "USWest2",
    "00:43:46.name": "Gdncjsmidc",
    "00:43:46.text": "Big op for 4 life @Gdncjsmidc",
    "00:43:47.server": "USMidWest",
    "00:43:47.name": "Kevinaiter",
    "00:43:47.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Selling all the new winter reskins!",
    "00:43:48.server": "USWest2",
    "00:43:48.name": "Tanknlank",
    "00:43:48.text": "SPIN THE WHEEL COME ONE COME ALL SPIN THE WHEEL AND WIN 2 TIMES AS MUCH AS U GIVE ME @TANKnlank",
    "00:43:49.server": "USWest2",
    "00:43:49.name": "Trebula",
    "00:43:49.text": "Selling mana for dex 1:5 @Trebula",
    "00:43:50.server": "USWest2",
    "00:43:50.name": "Trebula",
    "00:43:50.text": "Selling mana for dex 1:5 @Trebula",
    "00:43:51.server": "USWest2",
    "00:43:51.name": "ClanOfTran",
    "00:43:51.text": "S>MANA 1:2 PURE DEF S>MANA 1:2 PURE DEF S>MANA 1:2 PURE DEF S>MANA 1:2 PURE DEF S>MANA 1:2 PURE DEF S>MANA 1:2 PURE DEF S>MANA 1",
    "00:43:52.server": "USWest2",
    "00:43:52.name": "Trebula",
    "00:43:52.text": "Selling mana for dex 1:5 @Trebula",
    "00:43:53.server": "USWest2",
    "00:43:53.name": "Bananahack",
    "00:43:53.text": "SELL ETHERITE/PIXIE!",
    "00:43:54.server": "USMidWest",
    "00:43:54.name": "Kevinaiter",
    "00:43:54.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Life and Maxing Pack sale!",
    "00:43:55.server": "USWest2",
    "00:43:55.name": "Netzach",
    "00:43:55.text": "sell acrop/hydra/recomp/foul/sceptert6/spellt6 @@@ sell acrop/hydra/recomp/foul/sceptert6/spellt6 @@@ ",
    "00:43:56.server": "USWest2",
    "00:43:56.name": "Trebula",
    "00:43:56.text": "Selling mana for dex 1:5 @Trebula",
    "00:43:57.server": "USWest2",
    "00:43:57.name": "Trebula",
    "00:43:57.text": "Selling mana for dex 1:5 @Trebula",
    "00:43:58.server": "USWest3",
    "00:43:58.name": "Pojqwjebu",
    "00:43:58.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Class sets and ST sets",
    "00:43:59.server": "USWest2",
    "00:43:59.name": "Trebula",
    "00:43:59.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:00.server": "USWest2",
    "00:44:00.name": "Trebula",
    "00:44:00.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:01.server": "USWest2",
    "00:44:01.name": "Trebula",
    "00:44:01.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:02.server": "USWest2",
    "00:44:02.name": "Trebula",
    "00:44:02.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:03.server": "USWest2",
    "00:44:03.name": "Trebula",
    "00:44:03.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:04.server": "USWest2",
    "00:44:04.name": "Trebula",
    "00:44:04.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:05.server": "USEast2",
    "00:44:05.name": "NathinaPoo",
    "00:44:05.text": "buying para hp",
    "00:44:06.server": "USWest2",
    "00:44:06.name": "Parlero",
    "00:44:06.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:44:07.server": "USWest2",
    "00:44:07.name": "ThePrayer",
    "00:44:07.text": "S> Life1:5Mana or large op @ThePrayer",
    "00:44:08.server": "USWest2",
    "00:44:08.name": "ThePrayer",
    "00:44:08.text": "S> Life1:5Mana or large op @ThePrayer",
    "00:44:09.server": "USWest2",
    "00:44:09.name": "Trebula",
    "00:44:09.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:10.server": "USWest2",
    "00:44:10.name": "Trebula",
    "00:44:10.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:11.server": "USWest2",
    "00:44:11.name": "GaikouM",
    "00:44:11.text": "Sell Acclaim (1L) @GaikouM",
    "00:44:12.server": "USWest3",
    "00:44:12.name": "Pojqwjebu",
    "00:44:12.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= Were the only ones who sell Greater Wis and Dex pots",
    "00:44:13.server": "USWest2",
    "00:44:13.name": "Dnak",
    "00:44:13.text": "B> SOULLESS 8L @dnak",
    "00:44:14.server": "USWest2",
    "00:44:14.name": "Fasinga",
    "00:44:14.text": "SELL WINE CELLAR @FasingA",
    "00:44:15.server": "USWest2",
    "00:44:15.name": "Sanados",
    "00:44:15.text": "S>8 dex",
    "00:44:16.server": "USWest2",
    "00:44:16.name": "PabloChick",
    "00:44:16.text": "Selling 4 Def and 4 Atk for 1 Life",
    "00:44:17.server": "USWest2",
    "00:44:17.name": "Asdawkjdha",
    "00:44:17.text": "S>BOOK OF GEB !! Asdawkjdha !!",
    "00:44:18.server": "USWest2",
    "00:44:18.name": "Trebula",
    "00:44:18.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:19.server": "USEast3",
    "00:44:19.name": "Sceptor",
    "00:44:19.text": "I wasnt full leading in the first place",
    "00:44:20.server": "USWest2",
    "00:44:20.name": "Trebula",
    "00:44:20.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:21.server": "USWest2",
    "00:44:21.name": "Trebula",
    "00:44:21.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:22.server": "USWest2",
    "00:44:22.name": "Lionidaras",
    "00:44:22.text": "S> 2 wis For 1 Vit @lionidaras",
    "00:44:23.server": "USWest2",
    "00:44:23.name": "Trebula",
    "00:44:23.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:24.server": "USWest2",
    "00:44:24.name": "Parlero",
    "00:44:24.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:44:25.server": "USWest2",
    "00:44:25.name": "Fasinga",
    "00:44:25.text": "SELL WINE CELLAR @FasingA",
    "00:44:26.server": "USWest3",
    "00:44:26.name": "Pojqwjebu",
    "00:44:26.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= All pet eggs and cheapest feed power items",
    "00:44:27.server": "USWest2",
    "00:44:27.name": "Trebula",
    "00:44:27.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:28.server": "USWest2",
    "00:44:28.name": "Trebula",
    "00:44:28.text": "Selling mana for dex 1:5 @Trebula",
    "00:44:29.server": "USWest2",
    "00:44:29.name": "Dalgyte",
    "00:44:29.text": "S> ATK 1:1 DEF @DaLGyte ",
    "00:44:30.server": "USWest2",
    "00:44:30.name": "Fasinga",
    "00:44:30.text": "SELL WINE CELLAR @FasingA",
    "00:44:31.server": "EUSouthWest",
    "00:44:31.name": "ChapKaMAn",
    "00:44:31.text": "sell T9 armor",
    "00:44:32.server": "USWest2",
    "00:44:32.name": "PotatoNapp",
    "00:44:32.text": "S> ATT 1:1 OR 5:4 DEF @Potatonapp",
    "00:44:33.server": "USWest2",
    "00:44:33.name": "Justinlam",
    "00:44:33.text": "BUYING LIFE FOR DEF 1:7 ",
    "00:44:34.server": "USWest2",
    "00:44:34.name": "Parlero",
    "00:44:34.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:44:35.server": "USWest2",
    "00:44:35.name": "BoomBroom",
    "00:44:35.text": "Buy ghelm sky and abby 1 def each//boombroom",
    "00:44:36.server": "USWest2",
    "00:44:36.name": "Lionidaras",
    "00:44:36.text": "S> 2 wis For 1 Vit @lionidaras",
    "00:44:37.server": "USWest2",
    "00:44:37.name": "BoomBroom",
    "00:44:37.text": "Buy ghelm sky and abby 1 def each//boombroom",
    "00:44:38.server": "USWest2",
    "00:44:38.name": "PabloChick",
    "00:44:38.text": "Selling 4 Def and 4 Atk for 1 Life",
    "00:44:39.server": "USWest2",
    "00:44:39.name": "BoomBroom",
    "00:44:39.text": "Buy ghelm sky and abby 1 def each//boombroom",
    "00:44:40.server": "USWest2",
    "00:44:40.name": "LEStream",
    "00:44:40.text": "OP FOR DEF @LestReam",
    "00:44:41.server": "USWest2",
    "00:44:41.name": "Trebula",
    "00:44:41.text": "Selling mana for dex 1:5, Selling mana for atk 1:3 @Trebula",
    "00:44:42.server": "USWest2",
    "00:44:42.name": "BoomBroom",
    "00:44:42.text": "Buy ghelm sky and abby 1 def each//boombroom",
    "00:44:43.server": "USWest2",
    "00:44:43.name": "LEStream",
    "00:44:43.text": "OP FOR DEF @LestReam",
    "00:44:44.server": "USWest2",
    "00:44:44.name": "LEStream",
    "00:44:44.text": "OP FOR DEF @LestReam",
    "00:44:45.server": "USWest2",
    "00:44:45.name": "BoomBroom",
    "00:44:45.text": "Buy ghelm sky and abby 1 def each//boombroom",
    "00:44:46.server": "USWest2",
    "00:44:46.name": "Justinlam",
    "00:44:46.text": "BUYING LIFE FOR DEF 1:7 ",
    "00:44:47.server": "USWest3",
    "00:44:47.name": "Pojqwjebu",
    "00:44:47.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Check out our NEW LOWER PRlCES!!",
    "00:44:48.server": "USWest2",
    "00:44:48.name": "BoomBroom",
    "00:44:48.text": "Buy ghelm sky and abby 1 def each//boombroom",
    "00:44:49.server": "USWest2",
    "00:44:49.name": "BoomBroom",
    "00:44:49.text": "Buy ghelm sky and abby 1 def each//boombroom",
    "00:44:50.server": "USWest2",
    "00:44:50.name": "LilGhoul",
    "00:44:50.text": "Buying exa hp or gsorc or t6 spell",
    "00:44:51.server": "USEast2",
    "00:44:51.name": "NathinaPoo",
    "00:44:51.text": "need gear and loot",
    "00:44:52.server": "USWest2",
    "00:44:52.name": "BoomBroom",
    "00:44:52.text": "Buy ghelm sky and abby 1 def each//boombroom",
    "00:44:53.server": "USWest2",
    "00:44:53.name": "Ahjfdk",
    "00:44:53.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:44:54.server": "USWest2",
    "00:44:54.name": "Trebula",
    "00:44:54.text": "Selling mana for dex 1:5, Selling mana for atk 1:3 @Trebula",
    "00:44:55.server": "USWest2",
    "00:44:55.name": "BoomBroom",
    "00:44:55.text": "Buy ghelm sky and abby 1 def each//boombroom",
    "00:44:56.server": "USWest2",
    "00:44:56.name": "BoomBroom",
    "00:44:56.text": "Buy ghelm sky and abby 1 def each//boombroom",
    "00:44:57.server": "USWest2",
    "00:44:57.name": "Ahjfdk",
    "00:44:57.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:44:58.server": "USWest2",
    "00:44:58.name": "LardVark",
    "00:44:58.text": "Sell Para Hp",
    "00:44:59.server": "USWest2",
    "00:44:59.name": "Ahjfdk",
    "00:44:59.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:45:00.server": "USWest2",
    "00:45:00.name": "BoomBroom",
    "00:45:00.text": "Buy ghelm sky and abby 1 def each//boombroom",
    "00:45:01.server": "USEast3",
    "00:45:01.name": "Clragon",
    "00:45:01.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Check out our NEW LOWER PRlCES!!",
    "00:45:02.server": "USWest2",
    "00:45:02.name": "Gdncjsmidc",
    "00:45:02.text": "Big op for 4 life @Gdncjsmidc",
    "00:45:03.server": "USWest2",
    "00:45:03.name": "SteadO",
    "00:45:03.text": "Buying Life for OP @steadO",
    "00:45:04.server": "USWest2",
    "00:45:04.name": "Parlero",
    "00:45:04.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:45:05.server": "USWest3",
    "00:45:05.name": "Pojqwjebu",
    "00:45:05.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Selling new UT Accounts with maxed characaters!",
    "00:45:06.server": "USWest2",
    "00:45:06.name": "Parlero",
    "00:45:06.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:45:07.server": "USWest2",
    "00:45:07.name": "Trebula",
    "00:45:07.text": "Selling mana for dex 1:5, Selling mana for atk 1:3 @Trebula",
    "00:45:08.server": "USMidWest",
    "00:45:08.name": "Kevinaiter",
    "00:45:08.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= ST Packs & Individual items",
    "00:45:09.server": "USWest2",
    "00:45:09.name": "LilTexan",
    "00:45:09.text": "buying shendyt 8 life",
    "00:45:10.server": "USWest2",
    "00:45:10.name": "Ahjfdk",
    "00:45:10.text": "v",
    "00:45:11.server": "USWest2",
    "00:45:11.name": "Ecookied",
    "00:45:11.text": "BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED ",
    "00:45:12.server": "USWest2",
    "00:45:12.name": "Ahjfdk",
    "00:45:12.text": "v",
    "00:45:13.server": "USWest2",
    "00:45:13.name": "Gustavojkj",
    "00:45:13.text": "SELLING RECOMP , HYDRA FOR 1 LIFE EACH @Gustavojkj",
    "00:45:14.server": "USWest2",
    "00:45:14.name": "LardVark",
    "00:45:14.text": "Sell Para Hp",
    "00:45:15.server": "USWest3",
    "00:45:15.name": "Pojqwjebu",
    "00:45:15.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Check out our NEW LOWER PRlCES!!",
    "00:45:16.server": "USWest2",
    "00:45:16.name": "Parlero",
    "00:45:16.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:45:17.server": "USWest2",
    "00:45:17.name": "Fasinga",
    "00:45:17.text": "SELL WINE CELLAR @FaisNGA",
    "00:45:18.server": "USWest2",
    "00:45:18.name": "Ahjfdk",
    "00:45:18.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:45:19.server": "USWest2",
    "00:45:19.name": "Ahjfdk",
    "00:45:19.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:45:20.server": "USWest2",
    "00:45:20.name": "Ahjfdk",
    "00:45:20.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:45:21.server": "USWest2",
    "00:45:21.name": "Yolohippo",
    "00:45:21.text": "BUYING VIT FOR ATTACK @YoloHIPPO",
    "00:45:22.server": "USEast3",
    "00:45:22.name": "Clragon",
    "00:45:22.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Use code NEXUSSALE for 10% off!",
    "00:45:23.server": "USWest2",
    "00:45:23.name": "Draziwyrah",
    "00:45:23.text": "ok",
    "00:45:24.server": "USWest2",
    "00:45:24.name": "Ahjfdk",
    "00:45:24.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:45:25.server": "USWest2",
    "00:45:25.name": "Fasinga",
    "00:45:25.text": "SELL WINE CELLAR @FaisNGA",
    "00:45:26.server": "USWest2",
    "00:45:26.name": "PotatoNapp",
    "00:45:26.text": "S> ATT 1:1 OR 5:4 DEF @Potatonapp",
    "00:45:27.server": "USWest2",
    "00:45:27.name": "Parlero",
    "00:45:27.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:45:28.server": "USWest2",
    "00:45:28.name": "Netzach",
    "00:45:28.text": "sell acrop/hydra/recomp/sceptert6/spellt6 [MENTION=644141 [MENTION=644134 @@@@ sell acrop/hydra/recomp/sceptert6/spellt6 [MENTION=644141 [MENTION=644134 @@@@ sell acrop/hydra/recomp/scepte",
    "00:45:29.server": "USEast3",
    "00:45:29.name": "Clragon",
    "00:45:29.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Individual STs, Tops, Skins",
    "00:45:30.server": "USWest2",
    "00:45:30.name": "LEStream",
    "00:45:30.text": "OP FOR DEF @LestReam",
    "00:45:31.server": "USWest2",
    "00:45:31.name": "LilTexan",
    "00:45:31.text": "buying shendyt 8 life",
    "00:45:32.server": "USWest2",
    "00:45:32.name": "Lionidaras",
    "00:45:32.text": "S> 2 wis For 1 Vit @lionidaras",
    "00:45:33.server": "USWest3",
    "00:45:33.name": "Pojqwjebu",
    "00:45:33.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Check out our NEW LOWER PRlCES!!",
    "00:45:34.server": "EUSouthWest",
    "00:45:34.name": "XDARKFUNx",
    "00:45:34.text": "anyone trade t4 speed ring for t4 wisdom/dex ring??",
    "00:45:35.server": "USWest2",
    "00:45:35.name": "Ahjfdk",
    "00:45:35.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:45:36.server": "USEast3",
    "00:45:36.name": "Clragon",
    "00:45:36.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Top and ST Class Packs",
    "00:45:37.server": "USWest2",
    "00:45:37.name": "AumzaTH",
    "00:45:37.text": "B>LIFE for 3 MANA @aumzaTH",
    "00:45:38.server": "USWest2",
    "00:45:38.name": "Netzach",
    "00:45:38.text": "sell acrop/hydra/recomp/sceptert6/spellt6 [MENTION=644141 [MENTION=644134 @@@@ sell acrop/hydra/recomp/sceptert6/spellt6 [MENTION=644141 [MENTION=644134 @@@@ ",
    "00:45:39.server": "USWest2",
    "00:45:39.name": "Ahjfdk",
    "00:45:39.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:45:40.server": "USWest3",
    "00:45:40.name": "Pojqwjebu",
    "00:45:40.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Selling new UT Accounts with maxed characters!",
    "00:45:41.server": "USWest2",
    "00:45:41.name": "Ahjfdk",
    "00:45:41.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:45:42.server": "USWest2",
    "00:45:42.name": "CHAOSnate",
    "00:45:42.text": "SELLING LIFE FOR 8 DEF!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!",
    "00:45:43.server": "USMidWest",
    "00:45:43.name": "Kevinaiter",
    "00:45:43.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Were the only ones who sell Greater Wis and Dex pots",
    "00:45:44.server": "USWest2",
    "00:45:44.name": "Parlero",
    "00:45:44.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:45:45.server": "USWest2",
    "00:45:45.name": "LilTexan",
    "00:45:45.text": "buying shendyt 8 life",
    "00:45:46.server": "USWest2",
    "00:45:46.name": "Ahjfdk",
    "00:45:46.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:45:47.server": "USWest3",
    "00:45:47.name": "Pojqwjebu",
    "00:45:47.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Skins packs & every single skin",
    "00:45:48.server": "USWest2",
    "00:45:48.name": "Dnak",
    "00:45:48.text": "B> SOULLESS 8L @dnak",
    "00:45:49.server": "USWest2",
    "00:45:49.name": "BoomBroom",
    "00:45:49.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:45:50.server": "USMidWest",
    "00:45:50.name": "Kevinaiter",
    "00:45:50.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= All pet eggs and cheapest feed power items",
    "00:45:51.server": "USWest2",
    "00:45:51.name": "Bananahack",
    "00:45:51.text": "SELL ETHERITE/PIXIE!",
    "00:45:52.server": "USWest2",
    "00:45:52.name": "Netzach",
    "00:45:52.text": "sell acrop/hydra/recomp/sceptert6/spellt6 [MENTION=644141 [MENTION=644134 @@@@ sell acrop/hydra/recomp/sceptert6/spellt6 [MENTION=644141 [MENTION=644134 @@@@ ",
    "00:45:53.server": "USWest2",
    "00:45:53.name": "Mitrhildir",
    "00:45:53.text": "S> 7 LIFE : 1 DECA @mith",
    "00:45:54.server": "USWest2",
    "00:45:54.name": "Justinlam",
    "00:45:54.text": "BUYING LIFE FOR MANA 1:2 BUYING LIFE FOR MANA 1:2 BUYING LIFE FOR MANA 1:2 BUYING LIFE FOR MANA 1:2 BUYING LIFE FOR MANA 1:2 ",
    "00:45:55.server": "USWest2",
    "00:45:55.name": "BoomBroom",
    "00:45:55.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:45:56.server": "USWest2",
    "00:45:56.name": "SteadO",
    "00:45:56.text": "Buying Life for OP @steadO",
    "00:45:57.server": "USEast2",
    "00:45:57.name": "NathinaPoo",
    "00:45:57.text": "buying sorccer gear for a mith",
    "00:45:58.server": "USWest2",
    "00:45:58.name": "BoomBroom",
    "00:45:58.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:45:59.server": "USWest2",
    "00:45:59.name": "Lionidaras",
    "00:45:59.text": "S> 2 wis For 1 Vit @lionidaras",
    "00:46:00.server": "USWest2",
    "00:46:00.name": "Ecookied",
    "00:46:00.text": "BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED ",
    "00:46:01.server": "USWest2",
    "00:46:01.name": "BoomBroom",
    "00:46:01.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:46:02.server": "USWest2",
    "00:46:02.name": "Ahjfdk",
    "00:46:02.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:46:03.server": "USWest2",
    "00:46:03.name": "LilTexan",
    "00:46:03.text": "buying shendyt 8 life",
    "00:46:04.server": "USWest2",
    "00:46:04.name": "Ahjfdk",
    "00:46:04.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:46:05.server": "USWest2",
    "00:46:05.name": "Ahjfdk",
    "00:46:05.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:46:06.server": "USWest2",
    "00:46:06.name": "BoomBroom",
    "00:46:06.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:46:07.server": "USWest2",
    "00:46:07.name": "BoomBroom",
    "00:46:07.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:46:08.server": "USWest3",
    "00:46:08.name": "Pojqwjebu",
    "00:46:08.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= Coupons and live support",
    "00:46:09.server": "USWest2",
    "00:46:09.name": "Ahjfdk",
    "00:46:09.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:46:10.server": "USWest2",
    "00:46:10.name": "BoomBroom",
    "00:46:10.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:46:11.server": "USWest2",
    "00:46:11.name": "BoomBroom",
    "00:46:11.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:46:12.server": "USWest2",
    "00:46:12.name": "Ahjfdk",
    "00:46:12.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:46:13.server": "USWest2",
    "00:46:13.name": "LEStream",
    "00:46:13.text": "OP FOR DEF @LestReam",
    "00:46:14.server": "USWest2",
    "00:46:14.name": "BoomBroom",
    "00:46:14.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:46:15.server": "USWest2",
    "00:46:15.name": "BoomBroom",
    "00:46:15.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:46:16.server": "USWest2",
    "00:46:16.name": "LEStream",
    "00:46:16.text": "OP FOR DEF @LestReam",
    "00:46:17.server": "USEast2",
    "00:46:17.name": "NathinaPoo",
    "00:46:17.text": "buying para hp or elder or t11 wand",
    "00:46:18.server": "USWest2",
    "00:46:18.name": "TheIntrnet",
    "00:46:18.text": "SELLING MNOVA 1 DEF",
    "00:46:19.server": "USWest2",
    "00:46:19.name": "Ahjfdk",
    "00:46:19.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:46:20.server": "USWest2",
    "00:46:20.name": "AumzaTH",
    "00:46:20.text": "B>LIFE for 3 MANA @aumzaTH",
    "00:46:21.server": "USWest2",
    "00:46:21.name": "StarTroly",
    "00:46:21.text": "sell st rings",
    "00:46:22.server": "USWest2",
    "00:46:22.name": "BoomBroom",
    "00:46:22.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:46:23.server": "USWest2",
    "00:46:23.name": "Ahjfdk",
    "00:46:23.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:46:24.server": "USMidWest",
    "00:46:24.name": "Kevinaiter",
    "00:46:24.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= All the vanity items are for sale",
    "00:46:25.server": "USWest2",
    "00:46:25.name": "Netzach",
    "00:46:25.text": "sell acrop/hydra/recomp/sceptert6/spellt6 [MENTION=644141 [MENTION=644134 @@@@ sell acrop/hydra/recomp/sceptert6/spellt6 [MENTION=644141 [MENTION=644134 @@@@ ",
    "00:46:26.server": "USWest2",
    "00:46:26.name": "TheIntrnet",
    "00:46:26.text": "SELLING MNOVA 1 DEF",
    "00:46:27.server": "USMidWest",
    "00:46:27.name": "Kevinaiter",
    "00:46:27.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ 600 fp items! Way cheaper than buying FP items with gold.",
    "00:46:28.server": "USWest2",
    "00:46:28.name": "TheIntrnet",
    "00:46:28.text": "SELLING MNOVA 1 DEF",
    "00:46:29.server": "USWest2",
    "00:46:29.name": "Parlero",
    "00:46:29.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:46:30.server": "USWest2",
    "00:46:30.name": "Ahjfdk",
    "00:46:30.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:46:32.server": "USWest2",
    "00:46:32.name": "TheIntrnet",
    "00:46:32.text": "SELLING MNOVA 1 DEF",
    "00:46:33.server": "USWest2",
    "00:46:33.name": "Aphiena",
    "00:46:33.text": "OP 1 wis or 1 mana",
    "00:46:34.server": "USWest2",
    "00:46:34.name": "Ahjfdk",
    "00:46:34.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:46:35.server": "USWest2",
    "00:46:35.name": "Yolohippo",
    "00:46:35.text": "BUYING VIT FOR ATTACK @YoloHIPPO",
    "00:46:36.server": "USWest3",
    "00:46:36.name": "Pojqwjebu",
    "00:46:36.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ No payment fees at all",
    "00:46:37.server": "USWest2",
    "00:46:37.name": "Jezou",
    "00:46:37.text": "S>8 atk for 3 mana @Jezou",
    "00:46:38.server": "USWest2",
    "00:46:38.name": "Ahjfdk",
    "00:46:38.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:46:39.server": "USWest2",
    "00:46:39.name": "Netzach",
    "00:46:39.text": "sell acrop/hydra/recomp/sceptert6/spellt6 [MENTION=644141 [MENTION=644134 @@@@ sell acrop/hydra/recomp/sceptert6/spellt6 [MENTION=644141 [MENTION=644134 @@@@ ",
    "00:46:40.server": "USMidWest",
    "00:46:40.name": "Kevinaiter",
    "00:46:40.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Life and Maxing Pack sale!",
    "00:46:41.server": "USWest2",
    "00:46:41.name": "Yolohippo",
    "00:46:41.text": "BUYING VIT FOR ATTACK @YoloHIPPO",
    "00:46:42.server": "USWest2",
    "00:46:42.name": "Jezou",
    "00:46:42.text": "S>8 atk for 3 mana @Jezou",
    "00:46:43.server": "USWest3",
    "00:46:43.name": "Pojqwjebu",
    "00:46:43.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Selling all the new winter reskins!",
    "00:46:44.server": "USWest2",
    "00:46:44.name": "Ahjfdk",
    "00:46:44.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:46:45.server": "USWest2",
    "00:46:45.name": "Bananahack",
    "00:46:45.text": "SELL ETHERITE/PIXIE!",
    "00:46:46.server": "USWest2",
    "00:46:46.name": "RATOONY",
    "00:46:46.text": "B> Spd and wis @RatoonYB> Spd and wis @RatoonYB> Spd and wis @RatoonYB> Spd and wis @RatoonYB> Spd and wis @RatoonYB> Spd and wi",
    "00:46:47.server": "USWest2",
    "00:46:47.name": "Ahjfdk",
    "00:46:47.text": "BUYING T5 TOME HUGE OP FAST @ AHJFDK",
    "00:46:48.server": "USWest3",
    "00:46:48.name": "Pojqwjebu",
    "00:46:48.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Individual STs, Tops, Skins",
    "00:46:49.server": "USWest2",
    "00:46:49.name": "Gustavojkj",
    "00:46:49.text": "SELLING RECOMP , HYDRA FOR 1 LIFE EACH @Gustavojkj",
    "00:46:50.server": "USWest3",
    "00:46:50.name": "Pojqwjebu",
    "00:46:50.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Life and Maxing Pack sale!",
    "00:46:51.server": "USWest2",
    "00:46:51.name": "Parlero",
    "00:46:51.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:46:52.server": "USWest2",
    "00:46:52.name": "Yolohippo",
    "00:46:52.text": "BUYING VIT FOR ATTACK @YoloHIPPO",
    "00:46:53.server": "USWest2",
    "00:46:53.name": "Dnak",
    "00:46:53.text": "B> SOULLESS 8L @dnak",
    "00:46:54.server": "USWest2",
    "00:46:54.name": "Dalgyte",
    "00:46:54.text": "B> VIT 2:1 DEF @DaLGyte B> VIT 2:1 DEF @DaLGyte B> VIT 2:1 DEF @DaLGyte B> VIT 2:1 DEF @DaLGyte ",
    "00:46:55.server": "USWest2",
    "00:46:55.name": "Jezou",
    "00:46:55.text": "S>8 atk for 3 mana @Jezou",
    "00:46:56.server": "USWest2",
    "00:46:56.name": "RATOONY",
    "00:46:56.text": "B> Spd and wis @RatoonYB> Spd and wis @RatoonYB> Spd and wis @RatoonYB> Spd and wis @RatoonYB> Spd and wis @RatoonYB> Spd and wi",
    "00:46:57.server": "USWest3",
    "00:46:57.name": "Pojqwjebu",
    "00:46:57.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ 100/100/XX Divine Pet Accounts, 15% of the price,",
    "00:46:58.server": "USWest2",
    "00:46:58.name": "Bapontroll",
    "00:46:58.text": "buying 2vit for 1def @baponTROLL",
    "00:46:59.server": "USWest2",
    "00:46:59.name": "AumzaTH",
    "00:46:59.text": "B>LIFE for 3 MANA @aumzaTH",
    "00:47:00.server": "USWest2",
    "00:47:00.name": "Justinlam",
    "00:47:00.text": "B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 ",
    "00:47:01.server": "USWest2",
    "00:47:01.name": "CHAOSnate",
    "00:47:01.text": "SELLING LIFE FOR 8 DEF!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!",
    "00:47:02.server": "USWest2",
    "00:47:02.name": "Jezou",
    "00:47:02.text": "S>8 atk for 3 mana @Jezou",
    "00:47:03.server": "USWest2",
    "00:47:03.name": "AndyBlackX",
    "00:47:03.text": "buy sword t11 s > ghelm @andyblackx",
    "00:47:04.server": "USWest3",
    "00:47:04.name": "Pojqwjebu",
    "00:47:04.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= All the vanity items are for sale",
    "00:47:05.server": "USWest2",
    "00:47:05.name": "Bapontroll",
    "00:47:05.text": "buying 2vit for 1def @baponTROLL",
    "00:47:06.server": "USWest2",
    "00:47:06.name": "Nastrofobl",
    "00:47:06.text": "<S> Speed 3:1 Def @nastrofobl",
    "00:47:07.server": "USWest2",
    "00:47:07.name": "Justinlam",
    "00:47:07.text": "B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 ",
    "00:47:08.server": "USWest3",
    "00:47:08.name": "Pojqwjebu",
    "00:47:08.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ 600 fp items! Way cheaper than buying FP items with gold,",
    "00:47:09.server": "USWest2",
    "00:47:09.name": "Ecookied",
    "00:47:09.text": "BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED ",
    "00:47:10.server": "USWest2",
    "00:47:10.name": "Jezou",
    "00:47:10.text": "S>8 atk for 3 mana @Jezou",
    "00:47:11.server": "USEast3",
    "00:47:11.name": "Clragon",
    "00:47:11.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= Always in stock, Immediate delivery,",
    "00:47:12.server": "USWest2",
    "00:47:12.name": "Aphiena",
    "00:47:12.text": "OP 1 mana",
    "00:47:13.server": "USWest2",
    "00:47:13.name": "Bapontroll",
    "00:47:13.text": "buying 2vit for 1def @baponTROLL",
    "00:47:14.server": "USWest2",
    "00:47:14.name": "Nastyslay",
    "00:47:14.text": "S> MANA 1:3 DEF|| S> {GSORC} {HYDRA} {T5 SHIELD]|| @NastySLAY",
    "00:47:15.server": "USWest3",
    "00:47:15.name": "Pojqwjebu",
    "00:47:15.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Instantly max any class 4/8, 6/8, or 8/8!",
    "00:47:16.server": "USWest2",
    "00:47:16.name": "Yolohippo",
    "00:47:16.text": "BUYING VIT FOR ATTACK @YoloHIPPO",
    "00:47:17.server": "USWest2",
    "00:47:17.name": "Gaydudu",
    "00:47:17.text": "buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 ",
    "00:47:18.server": "USWest2",
    "00:47:18.name": "FruitRage",
    "00:47:18.text": "B> Life for 8 ATK @ FruitRage",
    "00:47:19.server": "USWest2",
    "00:47:19.name": "Gaydudu",
    "00:47:19.text": "buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 l buy deca 6 ",
    "00:47:20.server": "USMidWest",
    "00:47:20.name": "Kevinaiter",
    "00:47:20.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Skins packs & every single skin",
    "00:47:21.server": "USWest2",
    "00:47:21.name": "BoomBroom",
    "00:47:21.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:47:22.server": "USMidWest",
    "00:47:22.name": "Kevinaiter",
    "00:47:22.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= ST Packs & Individual items",
    "00:47:23.server": "USWest3",
    "00:47:23.name": "Pojqwjebu",
    "00:47:23.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Life and Maxing Pack sale!",
    "00:47:24.server": "USWest2",
    "00:47:24.name": "Nastyslay",
    "00:47:24.text": "S> MANA 1:3 DEF|| S> {GSORC} {HYDRA} {T5 SHIELD]|| @NastySLAY",
    "00:47:25.server": "USWest2",
    "00:47:25.name": "AumzaTH",
    "00:47:25.text": "B>LIFE for 3 MANA @aumzaTH",
    "00:47:26.server": "USWest2",
    "00:47:26.name": "Spleefin",
    "00:47:26.text": "SELLING LIFE 1:7 ATT SELLING LIFE 1:7 ATT SELLING LIFE 1:7 ATT @Spleefin",
    "00:47:27.server": "USWest2",
    "00:47:27.name": "GloopBloop",
    "00:47:27.text": "SELLING MANA @gloopBloop",
    "00:47:28.server": "USWest2",
    "00:47:28.name": "PabloChick",
    "00:47:28.text": "Buying 1 Life with 4 Atk and 4 Def",
    "00:47:29.server": "USWest2",
    "00:47:29.name": "Justinlam",
    "00:47:29.text": "B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 ",
    "00:47:30.server": "USMidWest",
    "00:47:30.name": "Kevinaiter",
    "00:47:30.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= STs, Sets, Decas, Skins, More",
    "00:47:31.server": "USWest2",
    "00:47:31.name": "XDARKFUNx",
    "00:47:31.text": "anyone trade t4 speed ring for t4 wisdom/dex/def ring??",
    "00:47:32.server": "USEast3",
    "00:47:32.name": "Clragon",
    "00:47:32.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ No payment fees at all",
    "00:47:33.server": "USWest2",
    "00:47:33.name": "CEANTY",
    "00:47:33.text": "SPPED FOR DEF",
    "00:47:34.server": "USWest2",
    "00:47:34.name": "AumzaTH",
    "00:47:34.text": "B>LIFE for 3 MANA @aumzaTH",
    "00:47:35.server": "USWest2",
    "00:47:35.name": "KonQin",
    "00:47:35.text": "S> acrop 1 life @konQin",
    "00:47:36.server": "USWest2",
    "00:47:36.name": "KonQin",
    "00:47:36.text": "S> acrop 1 life @konQin",
    "00:47:37.server": "USWest2",
    "00:47:37.name": "Justinlam",
    "00:47:37.text": "B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 ",
    "00:47:38.server": "USWest2",
    "00:47:38.name": "TheIntrnet",
    "00:47:38.text": "SELLING MNOVA & ABBYSAL",
    "00:47:39.server": "USWest3",
    "00:47:39.name": "Pojqwjebu",
    "00:47:39.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Cheapest maxing packs",
    "00:47:40.server": "USWest2",
    "00:47:40.name": "Yolohippo",
    "00:47:40.text": "BUYING VIT FOR ATTACK @YoloHIPPO",
    "00:47:41.server": "USWest2",
    "00:47:41.name": "Justinlam",
    "00:47:41.text": "B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 ",
    "00:47:42.server": "EUNorth2",
    "00:47:42.name": "Beb",
    "00:47:42.text": "Ha....haa.....",
    "00:47:43.server": "USWest2",
    "00:47:43.name": "Dalgyte",
    "00:47:43.text": "B> VIT 2:1 DEF @DaLGyte B> VIT 2:1 DEF @DaLGyte B> VIT 2:1 DEF @DaLGyte B> VIT 2:1 DEF @DaLGyte B> VIT 2:1 DEF @DaLGyte ",
    "00:47:44.server": "USWest2",
    "00:47:44.name": "KonQin",
    "00:47:44.text": "S> acrop 1 life @konQin",
    "00:47:45.server": "USWest2",
    "00:47:45.name": "KonQin",
    "00:47:45.text": "S> acrop 1 life @konQin",
    "00:47:46.server": "USWest3",
    "00:47:46.name": "Pojqwjebu",
    "00:47:46.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Check out our NEW LOWER PRlCES!!",
    "00:47:47.server": "USWest2",
    "00:47:47.name": "TheIntrnet",
    "00:47:47.text": "SELLING MNOVA & ABBYSAL",
    "00:47:48.server": "USWest2",
    "00:47:48.name": "Jezou",
    "00:47:48.text": "S>8 atk for 3 mana @Jezou",
    "00:47:49.server": "USWest2",
    "00:47:49.name": "SteadO",
    "00:47:49.text": "Selling Deca @steadO",
    "00:47:50.server": "USWest3",
    "00:47:50.name": "Pojqwjebu",
    "00:47:50.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Accepting Giftcards as payment!",
    "00:47:51.server": "USWest2",
    "00:47:51.name": "Yolohippo",
    "00:47:51.text": "BUYING VIT FOR ATTACK @YoloHIPPO",
    "00:47:52.server": "USWest2",
    "00:47:52.name": "Gaydudu",
    "00:47:52.text": "buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good",
    "00:47:53.server": "USEast3",
    "00:47:53.name": "Clragon",
    "00:47:53.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ 100/100/XX Divine Pet Accounts, 15% of the price,",
    "00:47:54.server": "USWest2",
    "00:47:54.name": "PELMEN",
    "00:47:54.text": "s>mana 3:7 def @pelmen",
    "00:47:55.server": "USWest2",
    "00:47:55.name": "Bapontroll",
    "00:47:55.text": "buying 2vit for 1def @baponTROLL",
    "00:47:56.server": "USWest2",
    "00:47:56.name": "BoomBroom",
    "00:47:56.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:47:57.server": "USWest2",
    "00:47:57.name": "BoomBroom",
    "00:47:57.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:47:58.server": "USWest3",
    "00:47:58.name": "Pojqwjebu",
    "00:47:58.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= Use code NEXUSSALE for 10% off!",
    "00:47:59.server": "USWest2",
    "00:47:59.name": "Justinlam",
    "00:47:59.text": "B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 ",
    "00:48:00.server": "USWest2",
    "00:48:00.name": "BoomBroom",
    "00:48:00.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:48:01.server": "USWest2",
    "00:48:01.name": "BoomBroom",
    "00:48:01.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:48:02.server": "USWest2",
    "00:48:02.name": "Justinlam",
    "00:48:02.text": "B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 B> LIFE, S>MANA 1:3 ",
    "00:48:03.server": "USWest2",
    "00:48:03.name": "BoomBroom",
    "00:48:03.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:48:04.server": "USWest2",
    "00:48:04.name": "Yolohippo",
    "00:48:04.text": "BUYING VIT FOR ATTACK @YoloHIPPO",
    "00:48:05.server": "USMidWest",
    "00:48:05.name": "Kevinaiter",
    "00:48:05.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= All pet eggs and cheapest feed power items",
    "00:48:06.server": "USWest2",
    "00:48:06.name": "SteadO",
    "00:48:06.text": "Selling Deca @steadO",
    "00:48:07.server": "USEast3",
    "00:48:07.name": "Clragon",
    "00:48:07.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Enter our free giveaway for a change to win awesome prizes!",
    "00:48:08.server": "USWest3",
    "00:48:08.name": "Pojqwjebu",
    "00:48:08.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Feedpower items cheaper than buying gold",
    "00:48:09.server": "USWest2",
    "00:48:09.name": "Parlero",
    "00:48:09.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:48:10.server": "USWest2",
    "00:48:10.name": "BoomBroom",
    "00:48:10.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:48:11.server": "USWest3",
    "00:48:11.name": "Pojqwjebu",
    "00:48:11.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= STs, Sets, Decas, Skins, More",
    "00:48:12.server": "USWest2",
    "00:48:12.name": "Fasinga",
    "00:48:12.text": "SELL WINE CELLAR @FasingA",
    "00:48:13.server": "USMidWest",
    "00:48:13.name": "Kevinaiter",
    "00:48:13.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Use code NEXUSSALE for 10% off!",
    "00:48:14.server": "USWest2",
    "00:48:14.name": "AumzaTH",
    "00:48:14.text": "B>LIFE for 3 MANA @aumzaTH",
    "00:48:15.server": "USWest2",
    "00:48:15.name": "Jezou",
    "00:48:15.text": "S>8 atk for 3 mana @Jezou",
    "00:48:16.server": "USWest2",
    "00:48:16.name": "KonQin",
    "00:48:16.text": "S> acrop 1 life @konQin",
    "00:48:17.server": "USWest2",
    "00:48:17.name": "TheIntrnet",
    "00:48:17.text": "SELLING MNOVA & ABBYSAL",
    "00:48:18.server": "USWest2",
    "00:48:18.name": "BoomBroom",
    "00:48:18.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:48:19.server": "USWest2",
    "00:48:19.name": "Yolohippo",
    "00:48:19.text": "BUYING VIT FOR ATTACK @YoloHIPPO",
    "00:48:20.server": "USWest2",
    "00:48:20.name": "Ecookied",
    "00:48:20.text": "BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED BUY VIT 8:1 LIFE@ ECOOKIED ",
    "00:48:21.server": "EUSouthWest",
    "00:48:21.name": "Eksemie",
    "00:48:21.text": "=)",
    "00:48:22.server": "USWest2",
    "00:48:22.name": "AumzaTH",
    "00:48:22.text": "B>LIFE for 3 MANA @aumzaTH",
    "00:48:23.server": "USWest2",
    "00:48:23.name": "KonQin",
    "00:48:23.text": "S> acrop 1 life @konQin",
    "00:48:24.server": "USWest2",
    "00:48:24.name": "BoomBroom",
    "00:48:24.text": "Buy ghelm and sky 1 def each//boombroom",
    "00:48:25.server": "USWest3",
    "00:48:25.name": "Pojqwjebu",
    "00:48:25.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Class sets and ST sets",
    "00:48:26.server": "USWest2",
    "00:48:26.name": "Motarno",
    "00:48:26.text": "buying DECA with 7 life @motarno",
    "00:48:27.server": "USWest2",
    "00:48:27.name": "Gaydudu",
    "00:48:27.text": "buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good",
    "00:48:28.server": "USMidWest",
    "00:48:28.name": "Kevinaiter",
    "00:48:28.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ 100/100/XX Divine Pet Accounts. 15% of the price.",
    "00:48:29.server": "USWest3",
    "00:48:29.name": "Pojqwjebu",
    "00:48:29.text": "> RealmStock.com < =~~~~~~~~~~~~~~~= Always in stock. Immediate delivery.",
    "00:48:30.server": "USWest2",
    "00:48:30.name": "Gaydudu",
    "00:48:30.text": "buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good",
    "00:48:31.server": "USWest2",
    "00:48:31.name": "Parlero",
    "00:48:31.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:48:32.server": "USWest2",
    "00:48:32.name": "Gaydudu",
    "00:48:32.text": "buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good",
    "00:48:33.server": "USWest2",
    "00:48:33.name": "Gaydudu",
    "00:48:33.text": "buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good",
    "00:48:34.server": "USWest2",
    "00:48:34.name": "Moobimon",
    "00:48:34.text": "S> UBMP! S> Masamune! S> WC! S> 4 Att! B> Penguin! @moobimon",
    "00:48:35.server": "USWest2",
    "00:48:35.name": "Parlero",
    "00:48:35.text": "S>PIXIE 1:1 DECA + 1L S>PIXIE 1:1 ETHER S>PIXIE 1:8 L @parLERO",
    "00:48:36.server": "USWest2",
    "00:48:36.name": "Osilasatio",
    "00:48:36.text": "Buying sky @osilasatip",
    "00:48:37.server": "USWest2",
    "00:48:37.name": "Osilasatio",
    "00:48:37.text": "Buying sky @osilasatip",
    "00:48:38.server": "USWest2",
    "00:48:38.name": "AumzaTH",
    "00:48:38.text": "B>LIFE for 3 MANA @aumzaTH",
    "00:48:39.server": "USWest2",
    "00:48:39.name": "PELMEN",
    "00:48:39.text": "s>mana 3:7 def @pelmen",
    "00:48:40.server": "USWest2",
    "00:48:40.name": "XxiCARUS",
    "00:48:40.text": "Sell atk for life 8:1",
    "00:48:41.server": "USWest2",
    "00:48:41.name": "KonQin",
    "00:48:41.text": "v",
    "00:48:42.server": "USWest2",
    "00:48:42.name": "PELMEN",
    "00:48:42.text": "s>mana 3:7 def @pelmen",
    "00:48:43.server": "USWest2",
    "00:48:43.name": "KonQin",
    "00:48:43.text": "S> acrop 1 life @konQin",
    "00:48:44.server": "USWest2",
    "00:48:44.name": "KonQin",
    "00:48:44.text": "S> acrop 1 life @konQin",
    "00:48:45.server": "USWest2",
    "00:48:45.name": "Motarno",
    "00:48:45.text": "buying DECA with 7 life @motarno",
    "00:48:46.server": "USWest2",
    "00:48:46.name": "Nastyslay",
    "00:48:46.text": "S> MANA 1:3 DEF|| S> {GSORC} {HYDRA} {T5 SHIELD]|| @NastySLAY",
    "00:48:47.server": "USWest2",
    "00:48:47.name": "Gustavojkj",
    "00:48:47.text": "SELLING RECOMP , HYDRA FOR 1 LIFE EACH @Gustavojkj",
    "00:48:48.server": "USWest2",
    "00:48:48.name": "GloopBloop",
    "00:48:48.text": "BUYING MANA @gloopBloop",
    "00:48:49.server": "USWest2",
    "00:48:49.name": "Stagnate",
    "00:48:49.text": "Selling Abyssal for Def",
    "00:48:50.server": "USWest2",
    "00:48:50.name": "AumzaTH",
    "00:48:50.text": "B>LIFE for 3 MANA @aumzaTH",
    "00:48:51.server": "USWest2",
    "00:48:51.name": "BoomBroom",
    "00:48:51.text": "Buy sky 1 def each//boombroom",
    "00:48:52.server": "USWest2",
    "00:48:52.name": "Gaydudu",
    "00:48:52.text": "buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good skins buy good",
    "00:48:53.server": "USWest3",
    "00:48:53.name": "Pojqwjebu",
    "00:48:53.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= Use code NEXUSSALE for 10% off!",
    "00:48:54.server": "USWest2",
    "00:48:54.name": "BoomBroom",
    "00:48:54.text": "Buy sky 1 def each//boombroom",
    "00:48:55.server": "USWest2",
    "00:48:55.name": "BoomBroom",
    "00:48:55.text": "Buy sky 1 def each//boombroom",
    "00:48:56.server": "USWest2",
    "00:48:56.name": "Motarno",
    "00:48:56.text": "buying DECA with 7 life @motarno",
    "00:48:57.server": "USWest2",
    "00:48:57.name": "XxiCARUS",
    "00:48:57.text": "Sell atk for life 8:1",
    "00:48:58.server": "USWest2",
    "00:48:58.name": "BoomBroom",
    "00:48:58.text": "Buy sky 1 def each//boombroom",
    "00:48:59.server": "USWest2",
    "00:48:59.name": "Netzach",
    "00:48:59.text": "sell acrop/hydra/recomp/sceptert6/spellt6 [MENTION=644141 [MENTION=644134 @@@@ sell acrop/hydra/recomp/sceptert6/spellt6 [MENTION=644141 [MENTION=644134 @@@@ ",
    "00:49:00.server": "USWest3",
    "00:49:00.name": "Pojqwjebu",
    "00:49:00.text": "< RealmStock.com > +~~~~~~~~~~~~~~~+ Individual STs, Tops, Skins",
    "00:49:01.server": "USWest2",
    "00:49:01.name": "PotatoNapp",
    "00:49:01.text": "BUYING LIFE FOR 7 ATT @Potatonapp",
    "00:49:02.server": "USWest2",
    "00:49:02.name": "Awezomo",
    "00:49:02.text": "BUYING LIFE FOR ATK 1:8 @awezomo",
    "00:49:03.server": "USWest2",
    "00:49:03.name": "Gustavojkj",
    "00:49:03.text": "SELLING RECOMP , HYDRA FOR 1 LIFE EACH @Gustavojkj",
    "00:49:04.server": "USWest3",
    "00:49:04.name": "Pojqwjebu",
    "00:49:04.text": "< RealmStock,com > +~~~~~~~~~~~~~~~+ Life and Maxing Pack sale!",
    "00:49:05.server": "USWest2",
    "00:49:05.name": "Awezomo",
    "00:49:05.text": "BUYING LIFE FOR ATK 1:8 @awezomo",
    "00:49:06.server": "USWest2",
    "00:49:06.name": "Awezomo",
    "00:49:06.text": "BUYING LIFE FOR ATK 1:8 @awezomo",
    "00:49:07.server": "USWest3",
    "00:49:07.name": "Pojqwjebu",
    "00:49:07.text": "> RealmStock,com < =~~~~~~~~~~~~~~~= Top and ST Class Packs",
    "00:49:08.server": "USWest2",
    "00:49:08.name": "TheIntrnet",
    "00:49:08.text": "SELLING MNOVA & ABBYSAL",
    "00:49:09.server": "USWest2",
    "00:49:09.name": "PotatoNapp",
    "00:49:09.text": "BUYING LIFE FOR 7 ATT @Potatonapp",
    "00:49:10.server": "USWest2",
    "00:49:10.name": "CHAOSnate",
    "00:49:10.text": "SELLING LIFE FOR 8 DEF!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!",
    "00:49:11.server": "USWest2",
    "00:49:11.name": "PotatoNapp",
    "00:49:11.text": "BUYING LIFE FOR 7 ATT @Potatonapp",
    "00:49:12.server": "USWest2",
    }
    Last edited by Gravitir3.14; 06-10-2018 at 02:12 PM.

  8. The Following User Says Thank You to Gravitir3.14 For This Useful Post:

    Bamber (06-10-2018)

Similar Threads

  1. [Help Request] [only db] Need help with creating effect that affects db's tex0 and tex1
    By Zxoro in forum Realm of the Mad God Private Servers Help
    Replies: 8
    Last Post: 08-21-2017, 04:25 PM
  2. [Help Request] Need help with an error that does not quit.
    By Meandia in forum Java
    Replies: 1
    Last Post: 03-05-2017, 01:24 PM
  3. [Help Request] Need help with some scripts
    By umadbrosky in forum DayZ Help & Requests
    Replies: 2
    Last Post: 01-10-2014, 02:51 PM
  4. [Help Request] Need help with some script ^_^
    By FIRExFACTION in forum Realm of the Mad God Help & Requests
    Replies: 3
    Last Post: 06-28-2013, 04:45 PM
  5. [Help Request] Need help with my Script
    By hannemannen in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 8
    Last Post: 11-08-2011, 02:08 PM