- (10:19:33 AM) Secrets: beyond a few indie titles i don't forsee many other games taking their place
- (10:20:28 AM) daela__ [~daela@172-15-218-187.lightspeed.gnvlsc.sbcglobal.net] entered the room.
- (10:25:11 AM) daela_ left the room (quit: Ping timeout).
- (10:26:16 AM) daela [~daela@172-15-218-187.lightspeed.gnvlsc.sbcglobal.net] entered the room.
- (10:27:08 AM) TheShocker: read about project 1999 recently, they still seem to have a pretty active community too
- (10:27:38 AM) Secrets: yeah, the whole community of devs there is pretty tight knit and works together
- (10:27:59 AM) Secrets: eqemu in general is one big open source community
- (10:29:12 AM) daela__ left the room (quit: Ping timeout).
- (10:29:16 AM) Secrets: i work in the games industry now so yeah not much time to do much now a days
- (10:30:19 AM) TheShocker: yeah, I have a lot of respect for the RoR devs, takes up so much of your time
- (10:31:54 AM) Secrets: if i wasn't so busy with my own games i'd probably help out with content
- (10:38:17 AM) blastoise [webchat@194.151.7.200] entered the room.
- (10:38:35 AM) blastoise left the room (quit: Quit: Page closed).
- (10:40:25 AM) Genisaurus [webchat@50-207-204-190-static.hfc.comcastbusiness.net] entered the room.
- (10:44:20 AM) Arietta left the room (quit: Ping timeout).
- (10:53:13 AM) TheShocker: sorry, had to go afk for a bit
- (10:53:29 AM) TheShocker: what kind of games do you make, Secrets? or is it a secret? ;)
- (11:06:59 AM) Secrets: can't say, under NDA sorry TheShocker - but they're MMO games
- (11:08:20 AM) Genisaurus: Launched or in development?
- (11:08:35 AM) TheShocker: cool that you got to make your hobby your work though ;D
- (11:16:51 AM) Genisaurus left the room (quit: Quit: Page closed).
- (11:33:15 AM) Threxx [webchat@HSI-KBW-109-192-014-148.hsi6.kabel-badenwuerttemberg.de] entered the room.
- (11:35:41 AM) aerogath [webchat@ip-109-90-217-95.hsi11.unitymediagroup.de] entered the room.
- (11:48:14 AM) Tornadium [webchat@cpc78907-bele10-2-0-cust249.2-1.cable.virginm.net] entered the room.
- (11:48:48 AM) Tornadium: Still no word on the registration issue?
- (11:51:58 AM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (11:52:13 AM) ***Elratie slaps Threxx around a bit with a large trout
- (11:53:59 AM) Valnak: Tornadium: seems to work now
- (12:25:29 PM) TheShocker: Tornadium: yeah, it's been fixed
- (12:42:11 PM) Medulla [webchat@x4db046a6.dyn.telefonica.de] entered the room.
- (12:57:03 PM) ropuch: The place for new players has been made? ;-)
- (1:00:07 PM) Elratie: hi
- (1:24:36 PM) Noiree [~noiree@p5B345DA3.dip0.t-ipconnect.de] entered the room.
- (1:41:31 PM) TheShocker: can't wait to be honest, hope they delete some gear and tallies too :P
- (1:49:11 PM) Noiree: problem is: if they wipe the gold and items, they leave out the ah and several ppl stored their stuff there
- (1:49:48 PM) TheShocker: they'd need to wipe that too
- (1:50:08 PM) TheShocker: and items in mail, sold items you can buy back from vendors, everything
- (1:54:39 PM) Secrets: hopefully they keep detailed logs
- (1:55:07 PM) Secrets: we do that on eqemu - made a separate application that the world/zoneservers communicate to, that relays data and stores it in a separate process to not hog the main thread
- (1:55:14 PM) Noiree: I still wonder how blue lvl 35 gear got on the ah on destro side
- (1:55:16 PM) Secrets: so logging isn't causing server lag
- (1:56:18 PM) Londo: Kintari seperated logging into its own thread few ror patches ago
- (1:56:34 PM) Secrets: yeah, threaded or another application would work
- (1:57:05 PM) Secrets: I preferred another application that way we could potentially host two instances and not stress the mysql server
- (1:57:33 PM) Londo: main cause of lag is that server does not have priority queue when re-broadcasting player state updates
- (1:57:40 PM) Londo: when player moves client sends 5 updates per second
- (1:57:49 PM) Londo: if you have 200 players in range and all are mooving
- (1:57:58 PM) Londo: thats hundreds of thousands of packets being sent out per second
- (1:58:14 PM) Secrets: the way we fixed that is delayed sending of updates
- (1:58:26 PM) Secrets: also, the eq protocol has a 'bulk send position update' packet
- (1:58:27 PM) ropuch: Noiree: one possibility are 37lvl mob ine IC arena
- (1:58:41 PM) Londo: well players near clip range dont need 5 updates
- (1:58:44 PM) ropuch: s/are/is - don't know the drop table for them though
- (1:58:52 PM) Londo: so I would send all updates to players in combat radius
- (1:58:53 PM) Noiree: blues don't drop from mobs anymore and there were several of those on the ah for 5g each
- (1:59:16 PM) Londo: client is smart enough to work well with few updates every second
- (1:59:21 PM) Londo: it just direction and velocity
- (1:59:27 PM) Londo: so client keeps moving in that direction
- (1:59:35 PM) Secrets: yeah we have position + deltas + heading
- (1:59:47 PM) Secrets: works just fine for most packets
- (2:00:11 PM) Secrets: and you don't need too many packets at once going out, eq client for example only needs one every 6 seconds for pcs
- (2:00:14 PM) Londo: there is also problems on how spatial partitioning works right now
- (2:00:17 PM) Secrets: unless the client sends its own update
- (2:00:29 PM) Londo: on keep take its possible to have all the players in single spatial cell
- (2:01:08 PM) Secrets: not familiar with the term is that a collision thing?
- (2:01:09 PM) Londo: the world is partioned into cells
- (2:01:12 PM) Londo: each cell has players in range
- (2:01:39 PM) Secrets: so if you move between cells rapidly
- (2:01:45 PM) Secrets: it'd force a position update i suppose
- (2:02:02 PM) Londo: to get list of players in range
- (2:02:09 PM) Londo: there are methods to improve that
- (2:02:13 PM) Londo: there is spatial hashing they can do
- (2:02:18 PM) Secrets: what kind of list are you doing?
- (2:02:29 PM) Secrets: we use an unordered hash map, but we also use C++ not C#
- (2:02:37 PM) Londo: on each update, each player has list of players nearby updated
- (2:02:42 PM) Londo: which is very expensive operation
- (2:02:47 PM) Secrets: oh jeez, yeah, I can imagine that
- (2:02:58 PM) Secrets: do you recalculate the distance on each update?
- (2:03:02 PM) Londo: I am not on dev team, but I work closely with them
- (2:03:13 PM) Londo: but I have access to source
- (2:03:35 PM) Londo: so I guess I kind of am on dev team
- (2:03:40 PM) Londo: I dont have too much time to contribute
- (2:03:48 PM) Secrets: kind of my position at eqemu then :p
- (2:04:18 PM) Secrets: we don't do updates for all nearby players, we branch the updates out into a process function
- (2:04:26 PM) Secrets: and send them on a server frame tick every x seconds
- (2:04:41 PM) Londo: yea I do something similar on another project
- (2:04:42 PM) Secrets: packets then end up in the encoder
- (2:04:46 PM) Londo: there is thread that updates hash
- (2:04:51 PM) Secrets: and then they go out on the network thread
- (2:04:52 PM) Londo: which reinserts player into the hash
- (2:05:01 PM) Londo: and moves them from bucket to bucket
- (2:05:08 PM) Secrets: yeah, we do all that calcuations at once instead of on receiving a player update
- (2:05:26 PM) Secrets: may be worth looking into i dunno though
- (2:05:52 PM) Secrets: each player has their own timer class that checks to see if they need to be sent local entity positions
- (2:06:05 PM) Secrets: and then distance calcs are done then
- (2:06:11 PM) Londo: most people dont have experience in mmo server design, any help is always appreciated
- (2:06:13 PM) Secrets: instead of having to recalc expensively each time
- (2:06:17 PM) Londo: its something that can only come with experience
- (2:06:49 PM) Secrets: i do optimization for my company and such, i just got added to a new project to help optimize a propiatary game engine
- (2:07:01 PM) Secrets: pretty much lol
- (2:07:13 PM) Secrets: and I applied the same technique with the eqemu project
- (2:07:28 PM) Secrets: as far as I know, the server is in C# which hinders performance
- (2:07:35 PM) Secrets: but can make it easier on coders for sure
- (2:07:53 PM) Londo: but should be possible to handle few thousands connections
- (2:07:59 PM) Secrets: yup i agree there
- (2:08:11 PM) Secrets: just requires some tricks to offload to other applications
- (2:08:33 PM) Secrets: networking calls are less expensive than db calls for example
- (2:08:47 PM) Secrets: for non-immediately required procedures
- (2:09:28 PM) Secrets: could potentially make a server that handles auctions, creation/management of instances and logging
- (2:09:55 PM) Londo: another issue they had was use of locks
- (2:09:57 PM) aerogath left the room (quit: Quit: Page closed).
- (2:10:00 PM) Secrets: yup i can imagine so
- (2:10:20 PM) Londo: those locks need to be changed into spinlocks
- (2:10:20 PM) Secrets: from what it sounds like multiple objects are going to access and modify data
- (2:10:39 PM) Secrets: an entity manager class would probably be beneficial
- (2:10:56 PM) Secrets: oh
- (2:11:09 PM) Secrets: well that's good
- (2:11:18 PM) Secrets: just some optimization passes might be needed then
- (2:11:22 PM) Secrets: i'd help, but i'm swamped atm
- (2:11:57 PM) Londo: you can see the earlier version of code at https://github.com/WarEmu/WarEmu
- (2:13:36 PM) Londo: port of MaNGOS wow emu
- (2:14:17 PM) Secrets: oh nice
- (3:02:08 PM) Schnuppiiii [~Schnuppii@Schnuppiiii.users.quakenet.org] entered the room.
- (3:18:14 PM) Krumlok [webchat@208.148.21.95.dynamic.jazztel.es] entered the room.
- (3:24:09 PM) Kulbuto [webchat@85-170-148-115.rev.numericable.fr] entered the room.
- (3:44:51 PM) Krumlok: oi git
- (3:46:02 PM) aerogath [webchat@ip-109-90-217-234.hsi11.unitymediagroup.de] entered the room.
- (3:46:33 PM) aerogath: one question, can i stop it that the Petbar dissapeard in SC's with my Squiqherder ?
- (3:47:58 PM) TheShocker: hmm, no idea, have you checked the forum?
- (3:48:11 PM) TheShocker: check if it's not one of your addons screwing things up
- (3:48:52 PM) Tornadium left the room (quit: Ping timeout).
- (3:49:01 PM) aerogath: wi hate no Ui mods for Bars i only use Target Ring, Grid, WSCT :(
- (3:49:38 PM) TheShocker: hmm, doubt it's any of those
- (3:49:57 PM) aerogath: bäääh :'( ok i'll search ty
- (4:01:15 PM) TheShocker: which one?
- (4:04:27 PM) aerogath: have logged another char now cuz t2 zerg :D
- (4:23:25 PM) Kulbuto: Hey, is there any GM around here ?
- (4:26:13 PM) TheShocker: nope, don't think there is
- (4:28:51 PM) Krumlok left the room (quit: Ping timeout).
- (4:41:27 PM) TheShocker: I'm not getting any orvr currency on my engi :|
- (4:41:43 PM) TheShocker: second time order locks the zone and I get nada
- (4:44:04 PM) TheShocker: yeah
- (4:44:23 PM) aerogath: i would say noobfilter but i had the same bug one time hmm ;P
- (4:46:13 PM) TheShocker: had it since I made the engi earlier today
- (4:46:18 PM) Elratie: awesome a black ork who is farming the 25+ guards in the Shadowlands elven warcamp
- (4:59:34 PM) aerogath: Can anyone tell me with which level the warrior priest gets his group heal ?
- (5:05:56 PM) aerogath: hope so ty :D
- (5:06:04 PM) aerogath left the room (quit: Quit: Page closed).
- (5:07:18 PM) Noiree: all healers get their g-heal at 20
- (5:07:47 PM) spiegel left the room (quit: Quit: Connection closed for inactivity).
- (5:11:39 PM) TheShocker: yeah, wasn't 100% sure and didn't look it up XD
- (6:03:17 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (6:13:15 PM) Destro [webchat@ip98-167-99-60.lv.lv.cox.net] entered the room.
- (6:29:56 PM) TheShocker: ugh, fuck if I know what's going on, finally got 3 tokens for a zone lock, thought it might be stealth fixed, next lock I get nada again :|
- (6:30:06 PM) TheShocker: missed out on 12 so far, meh
- (6:34:20 PM) Viny: yeah I don't even bother with those
- (6:35:00 PM) TheShocker: that's silly, they give gear upgrades while leveling up
- (6:35:20 PM) Viny: and how many do you have so far? :D
- (6:35:36 PM) TheShocker: on most of my toons I had the full t1 set before I could even wear it
- (6:35:53 PM) TheShocker: should have been the same on this one actually, now I only have the gloves :
- (6:36:12 PM) TheShocker: that's true
- (6:36:14 PM) Viny: on live you got a tome unlock at least
- (6:36:47 PM) TheShocker: you get the notifications for the unlocks here too, haven't checked the actual tome though
- (6:37:34 PM) TheShocker: I'm pretty liberal with buying upgrades from vendors
- (6:37:44 PM) TheShocker: even if it's just for one level, if I can increase my stats I do it
- (6:37:52 PM) TheShocker: what with bolstering it can really add up
- (6:39:42 PM) TheShocker: forgot how much fun engies are btw
- (6:40:14 PM) Viny: who was doing rats as a choppa
- (6:40:38 PM) Viny: and they were doing just fine
- (6:40:51 PM) TheShocker: heh, I soloed a rat on my level 12 SW XD
- (6:41:04 PM) TheShocker: SW are totally op for kiting
- (6:41:20 PM) TheShocker: took a few minutes though
- (6:42:57 PM) TheShocker: Elratie said earlier that there was a BO soloing lvl 25+ guards in elves XD
- (6:45:03 PM) TheShocker: think I need to start making destro alts soon
- (6:45:04 PM) Onyx [webchat@162-203-6-47.lightspeed.dybhfl.sbcglobal.net] entered the room.
- (6:46:13 PM) Onyx: Hey mate
- (6:46:15 PM) TheShocker: Viny: maybe I'll level my chosen so I can do scs with you ;)
- (6:46:36 PM) TheShocker: how's witch hunting Onyx?
- (6:46:53 PM) TheShocker: oh wait, you switched to WE, right?
- (6:48:17 PM) Luf [webchat@130.43.36.169.dsl.dyn.forthnet.gr] entered the room.
- (6:53:10 PM) stillmatic [webchat@92-244-5-185.customers.ownit.se] entered the room.
- (6:54:27 PM) Jojo^^ left the room (quit: Signed off).
- (6:54:47 PM) Onyx: I'm just switching all around TheShocker
- (6:54:53 PM) Epo [webchat@cpc71281-warr5-2-0-cust305.1-1.cable.virginm.net] entered the room.
- (6:56:52 PM) TheShocker: same here Onyx ;)
- (6:57:14 PM) TheShocker: got a BW, slayer, KotBS, SW, engi, AM, WE and chosen so far XD
- (6:57:27 PM) TheShocker: nah, taking a break, played for a while earlier on
- (7:00:18 PM) Luf left the room (quit: Quit: Page closed).
- (7:00:48 PM) TheShocker: Viny: you streaming tonight?
- (7:05:02 PM) Viny: weekend most probable
- (7:05:18 PM) Viny: luffy is usually on her sorc with me
- (7:05:33 PM) TheShocker: yeah, I like playing them, had a twink in t1 back when you could play there for free
- (7:06:03 PM) TheShocker: would be a good addition too for you, someone to guard you and luffy
- (7:06:26 PM) TheShocker: I'll start leveling him, he's just a baby atm
- (7:07:15 PM) Viny: what name?
- (7:07:36 PM) Viny: how was that not taken yet :D
- (7:07:40 PM) TheShocker: that was my twink's name too ;)
- (7:07:55 PM) TheShocker: could be pwniez, not sure
- (7:08:11 PM) TheShocker: had an undead mage in wow with that name a decade or so ago
- (7:08:32 PM) TheShocker: on a US server back when my wife still lived there
- (7:08:42 PM) TheShocker: <- oldfag
- (7:09:29 PM) TheShocker: man, I tried playing wow again a few years ago, rolled a mage, they're just so fucking boring compared to BW/sorc XD
- (7:09:44 PM) TheShocker: that whole game is boring compared to war though, the pvp
- (7:10:27 PM) Viny: did you see this weeks SP episode
- (7:10:47 PM) TheShocker: not a fan of the latest season tbh, but that ep was ok
- (7:10:48 PM) Viny: I just watched it today, man that ending
- (7:11:14 PM) ropuch: Yo Viny! Any progress? ;-)
- (7:11:46 PM) TheShocker: hey ropuch
- (7:12:23 PM) Viny: http://imgur.com/rDYuQWA
- (7:12:59 PM) ropuch: Viny: I'm going for vacation on Sunday, can send you some crude addon for dumping tuble/registeringg custom macro tomorrow if it helps ya
- (7:13:12 PM) Viny: anything will help at this point
- (7:13:19 PM) Viny: shit I wish I had you around for this
- (7:13:31 PM) Viny: been reading up on hooks today, kind of a lot to chew
- (7:13:59 PM) ropuch: I'm programming noob, my area of expertise in company is 'working proof of concept' ;-)
- (7:14:42 PM) Viny: cause that sounds like a perfect career path for me :D
- (7:15:09 PM) ropuch: Techincal Support Engineer, but they changed lately to sth else
- (7:15:56 PM) Viny: RegisterEventHandler(SystemData.Events.PLAYER_TARGET_UPDATED, 'AssistHelper.CallTarget')
- (7:16:09 PM) Viny: I'm trying to make a demo
- (7:16:23 PM) Viny: that writes target name in chat on every target switch
- (7:16:39 PM) ropuch: Hooking means: if client register an event, intercept this
- (7:17:09 PM) ropuch: Do your stuff, than (in most cases) return event handling to the client
- (7:17:13 PM) TheShocker: but /target doesn't work yet ingame, does it? at all?
- (7:17:31 PM) Viny: our plan is to tab the everloving shit out of nearbys
- (7:17:42 PM) Viny: and have the addon compare names each time
- (7:17:53 PM) Viny: with what main assist is calling out
- (7:17:57 PM) ropuch: LIke Craft Value Tip: when you hover over item, it itercept the event, in case it's crafting mats it do some foo-shmoo magic, modifying the tooltip
- (7:18:38 PM) ropuch: sec
- (7:18:58 PM) ropuch: https://mega.nz/#sitetransfer!W1stMjA2MjI5NDkyNywtMjA1NzUxNDkxLC0xNjk3NzAyMzkxLDE2NjIxNjUzNDddLCJ6Wno1WDlYSmFrME9qMTA0Yk9OdGpUUnJhbFZxVDFwc1ltaFJldzZ0LWVmVTA4X0dUaWpxQUtROTR3IiwiRiFSOHgxUkpCTCFnNFRlcjJKQzdOVXZOM0c4cEg5YzJBIiwwLG51bGxd
- (7:19:41 PM) ropuch: Just mesg me your email, my 'addon' is so barbarian you can pull of the idea from it
- (7:20:12 PM) ropuch: I just borrowed some code from other addon
- (7:20:43 PM) TheShocker: that's how programming seems to work these days
- (7:20:51 PM) TheShocker: googling stack exchange etc ;)
- (7:21:19 PM) Destro: shocker is there a lair at nordland destro camp?
- (7:21:35 PM) TheShocker: on a little island off the coast
- (7:21:45 PM) Destro: what about the one by the bridge
- (7:21:48 PM) TheShocker: well, not at the camp no, but close to it
- (7:21:57 PM) TheShocker: nope, not a lair
- (7:22:04 PM) Destro: what is it then?
- (7:22:16 PM) TheShocker: think that used to be the entrance for the nordland scenario
- (7:22:38 PM) Destro: i remember back at AoR it was like a dungeon to like a forest thingy majig
- (7:22:47 PM) Destro: yea
- (7:22:51 PM) TheShocker: with the plants around it?
- (7:23:03 PM) Destro: a man deer or some shit like it
- (7:23:13 PM) TheShocker: that used to be a dungeon
- (7:23:18 PM) Destro: is it open?
- (7:23:25 PM) TheShocker: you could get a cloak there that turned you into a deer
- (7:23:31 PM) Destro: WHAT
- (7:23:35 PM) Destro: ;-;
- (7:23:45 PM) TheShocker: pve isn't a priority
- (7:23:56 PM) Viny: ropuch: you got that pm? no email yet
- (7:23:58 PM) TheShocker: yeah was a fun dungeon, so easy to skip to the end boss XD
- (7:24:25 PM) Destro: I mean it'd be a nice addon to the tier 3 update, like adding a huge collection of dungeons and lairs
- (7:24:41 PM) Destro: It was just like yesterday
- (7:24:50 PM) TheShocker: no dungeons are working so far, afaik
- (7:24:50 PM) Destro: that i was getting pounded by a forest giant
- (7:25:00 PM) TheShocker: the ones in altdorf or IC aren't there either
- (7:25:11 PM) Destro: I love that dungeon
- (7:25:25 PM) Destro: with that mandeer talking to us on the cliff side
- (7:25:33 PM) TheShocker: what was the other one? where you could get gear with the first wards
- (7:25:39 PM) TheShocker: darkpromise I think it was called
- (7:25:48 PM) Destro: idk rly
- (7:25:53 PM) Destro: i literally forgot til i got on RoR
- (7:26:00 PM) Destro: i remember only glimpes of it
- (7:26:06 PM) TheShocker: yeah, same here
- (7:26:23 PM) TheShocker: I never really did pve much, but some of the dungeons were cool
- (7:26:37 PM) Destro: When i had the chance id love to pve alot
- (7:26:44 PM) TheShocker: soloed a lot of them for containers for making talis
- (7:26:53 PM) Destro: alright well i gtg
- (7:27:01 PM) Destro: about more dungeon
- (7:27:06 PM) Destro: and fanboy over it
- (7:27:12 PM) Destro left the room (quit: Quit: Page closed).
- (7:28:03 PM) ropuch: Still, you can't invoke 'sent target nearest'
- (7:28:41 PM) Viny: you mean you cant make the game tab from addon?
- (7:28:58 PM) ropuch: Yea, that would end in addon-bots [;
- (7:29:06 PM) Viny: worst case scenario
- (7:29:22 PM) ropuch: Best one, actually, worst in case of your idea [;
- (7:30:41 PM) Viny: nvm still have to click to run it
- (7:30:41 PM) TheShocker: think the best you can do right now is have your addon make you say the name of your target in party/wb chat tbh
- (7:30:41 PM) ropuch: But, if you could hook on, dunno, player_target_updated, anfter 'marked' is matched display some notification with 'confirm' window
- (7:31:00 PM) TheShocker: it is
- (7:31:08 PM) TheShocker: but I don't think you can do more atm
- (7:31:09 PM) Viny: maybe I'll go back to my Enemy idea
- (7:31:22 PM) Viny: have it place a red marker or something
- (7:31:36 PM) ropuch: I'm too lame to understand enemy code ;-)
- (7:31:46 PM) ropuch: I mean: I don;t have time atm [;
- (7:32:07 PM) ropuch: I think enemy needs a TargetInfi data to place a mark
- (7:32:43 PM) Viny: so what?
- (7:32:52 PM) Viny: you parse for name from main assist
- (7:33:10 PM) Viny: then you ..TargetInfo:UnitName(namevar)
- (7:33:21 PM) ropuch: Nah, yopu need EntityID or sth, not just name
- (7:33:26 PM) ropuch: https://github.com/WarEmu/
- (7:33:44 PM) TheShocker: afaik
- (7:34:23 PM) ropuch: Still it gives you some idea ;>
- (7:34:27 PM) TheShocker: yeah
- (7:35:20 PM) ropuch: Viny: take a look at easystem_targetinfo/source/targetinfo.lua
- (7:36:30 PM) ropuch: https://code.google.com/p/wardiff/
- (7:55:58 PM) Viny: off to bed guys, cya on stream tmr shocker
- (7:57:00 PM) Viny left the room (quit: Quit: Page closed).
- (8:03:07 PM) Threxx left the room (quit: Quit: Page closed).
- (8:11:02 PM) stillmatic left the room (quit: Quit: Page closed).
- (8:11:56 PM) Onyx: Is the game up TheShocker? I can't connect.
- (8:20:10 PM) Onyx: Finally got it to work
- (8:20:15 PM) Onyx: it was an issue with the launcher
- (8:20:21 PM) TheShocker: I hope so, just got back behind my pc
- (8:20:36 PM) Noiree left the room (quit: Read error: Connection reset by peer).
- (8:21:44 PM) TheShocker: yeah
- (8:21:53 PM) TheShocker: got an engi in t1 that's desperate to get to t2
- (8:22:28 PM) TheShocker: had to restart the launcher, got an error connecting to the login server too
- (8:22:30 PM) Onyx: Well I'm Onyxarrow if you want to play =3
- (8:23:19 PM) Onyx: Yup, might switch later but just felt playing it for now =3
- (8:23:45 PM) TheShocker: they're fun to play in t1, they do quite a lot of damage right from the start imo
- (8:24:11 PM) TheShocker: gorram
- (8:34:56 PM) Kulbuto left the room (quit: Ping timeout).
- (8:58:49 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (9:00:56 PM) Viny left the room (quit: Quit: Page closed).
- (9:05:25 PM) ikkifury [webchat@197.163.44.56] entered the room.
- (9:06:50 PM) ikkifury left the room (quit: Quit: Page closed).
- (9:06:58 PM) zabis [webchat@24-216-178-67.dhcp.stls.mo.charter.com] entered the room.
- (9:07:23 PM) zabis: hey guys, anyone else having issues logging into forum?
- (9:07:53 PM) zabis left the room (quit: Quit: Page closed).
- (9:14:04 PM) Melcene [webchat@c-71-197-198-43.hsd1.wa.comcast.net] entered the room.
- (9:15:11 PM) Melcene: New ROR/returning WAR player... is game and site down due to DDOS or ? Looking forward to playing again.
- (9:24:09 PM) firlam [webchat@93.185.192.82] entered the room.
- (9:26:30 PM) TheShocker: hmmm, site's not loading for me indeed
- (9:26:54 PM) Melcene: On launcher, site shows red, game shows yellow
- (9:30:03 PM) Chttfkk [webchat@109.129.226.22] entered the room.
- (9:33:08 PM) firlam left the room (quit: Ping timeout).
- (9:33:59 PM) TheShocker: try closing and opening the launcher
- (9:35:03 PM) Melcene: Yeah tried a few times, connect button just doesn't even light up. We had originally gotten in once, but there was no char screen
- (9:44:05 PM) wargrimnir [webchat@c-107-5-128-133.hsd1.mi.comcast.net] entered the room.
- (9:45:56 PM) TheShocker: heard more people had that problem
- (9:46:51 PM) wargrimnir [webchat@wargrimnir.users.quakenet.org] entered the room.
- (9:46:53 PM) Melcene: Yeah, I checked the FB, then twitter, and twitter was how I found this :)
- (9:47:07 PM) wargrimnir: Website and Login are down. DDOS
- (9:48:00 PM) chaser_ [webchat@h75n9-m-rg-a13.ias.bredband.telia.com] entered the room.
- (9:48:12 PM) zabis [webchat@24-216-178-67.dhcp.stls.mo.charter.com] entered the room.
- (9:48:36 PM) zabis: yep
- (9:48:45 PM) zabis: https://www.facebook.com/returnofreckoning
- (9:49:34 PM) Naos [webchat@chm71-1-82-242-188-87.fbx.proxad.net] entered the room.
- (9:49:37 PM) wargrimnir: I update FB and Twitter :)
- (9:50:06 PM) Onyx left the room (quit: Ping timeout).
- (9:50:07 PM) TheShocker: you can change the topic here too if you want, wargrimnir
- (9:50:13 PM) TheShocker: feel free to is what I mean ;)
- (9:51:52 PM) wargrimnir has changed the topic to: Website and Login are down due to DDOS || http://www.returnofreckoning.com/join.php
- (9:51:55 PM) Naos left the room (quit: Quit: Page closed).
- (9:52:03 PM) Naos [webchat@chm71-1-82-242-188-87.fbx.proxad.net] entered the room.
- (9:52:44 PM) Naos: sad to see DDOS continue :(
- (9:52:52 PM) Epo left the room (quit: Ping timeout).
- (9:53:54 PM) chaser_: u here m8?
- (9:54:02 PM) Naos: today server was more laggy than others, is there a link with DDOS?
- (9:54:43 PM) ***chaser_ slaps kittenz around a bit with a large fishbot
- (9:55:25 PM) TheShocker: heym why are you slapping my wife? :P
- (9:55:38 PM) chaser_: hahaha
- (9:56:01 PM) chaser_: she keeps on killing me in rvr
- (9:56:56 PM) chaser_ left the room (quit: Quit: Page closed).
- (9:57:40 PM) TheShocker: heh, nope, she's a BW, nivee
- (9:57:57 PM) TheShocker: kittenz has always been her irc handle, funny thhat there's a sorc called that XD
- (9:58:05 PM) chaer_hexxa_ca [webchat@h75n9-m-rg-a13.ias.bredband.telia.com] entered the room.
- (9:58:05 PM) TheShocker: should get her to play with my chosen pwnies
- (9:58:35 PM) chaer_hexxa_ca: well
- (9:58:41 PM) chaer_hexxa_ca: gnite again
- (9:58:49 PM) chaer_hexxa_ca left the room (quit: Quit: Page closed).
- (9:59:15 PM) Naos: I am going to bed, all my best regards to devs, seems they are going to have a short night again... :(
- (9:59:31 PM) TheShocker: hope you can get on tomorrow mate :(
- (10:00:01 PM) Guntermas [webchat@p5490989B.dip0.t-ipconnect.de] entered the room.
- (10:00:18 PM) Melcene: So glad it's only 7pm here. Just wondering if I should get dinner overwith while we wait for servers
- (10:00:49 PM) Naos left the room (quit: Quit: Page closed).
- (10:02:20 PM) Guntermas: so is there a clue when its going to be online again? ^^
- (10:03:49 PM) Melcene: Nooo don't say that! :(
- (10:03:51 PM) Co_Okie [webchat@68-191-101-153.dhcp.dctr.al.charter.com] entered the room.
- (10:05:08 PM) Co_Okie left the room (quit: Quit: Page closed).
- (10:18:40 PM) TheShocker: heh, friend of mine went dressed as walter white for halloween, complete with pork pie hat. he posted a pic, I commented 'great run dmc outfit'. only ONE person got it :P
- (10:21:49 PM) wargrimnir: i'm old enough to get it =
- (10:28:16 PM) zenas [webchat@95.151.246.150] entered the room.
- (10:28:34 PM) zenas left the room (quit: Quit: Page closed).
- (10:31:40 PM) Moomin [webchat@97e18765.skybroadband.com] entered the room.
- (10:32:05 PM) TheShocker: hey Moomin
- (10:32:35 PM) TheShocker: :(
- (10:32:56 PM) TheShocker: DDoS has flared up again, so logging in might be nigh impossible
- (10:33:13 PM) Moomin: yes, i was in STK and i crashed out and then ...
- (10:33:24 PM) Moomin: also ESO had attacked
- (10:33:34 PM) TheShocker: I got kicked earlier when I was in an sc, but I managed to get back on
- (10:33:41 PM) Moomin: and the telephone company Telecom
- (10:33:52 PM) Moomin: lucky u ! u have been fasta !!
- (10:33:59 PM) TheShocker: elder scrolls online got DDoSed?
- (10:34:09 PM) TheShocker: damn
- (10:34:26 PM) Moomin: ppl got really nothing to do
- (10:34:53 PM) Moomin: uffy but yeah not goin to bring more drama... ;)
- (10:42:49 PM) Kup [webchat@47-32-131-152.dhcp.snlo.ca.charter.com] entered the room.
- (10:45:45 PM) Secrets: i feel ya, our companies' game gets ddos'd pretty often too
- (10:46:00 PM) Secrets: it sucks, nothing you can do except integrate some sort of protection
- (10:50:52 PM) TheShocker: I recommend copious amounts of alcohol too
- (10:51:36 PM) Moomin: all here to wait for the miracle xD
- (10:52:53 PM) TheShocker: I should go to bed actually, it's almost 4AM here XD
- (10:53:07 PM) TheShocker: got distracted doing scs again
- (10:53:30 PM) TheShocker: I was about 10 minutes ago
- (10:53:40 PM) Moomin: and u logged offf!?!?
- (10:53:46 PM) Moomin: :P
- (10:53:53 PM) TheShocker: like I said, almost 4 ;)
- (10:54:03 PM) Moomin: ye
- (10:54:38 PM) TheShocker: just have to finish this beer ;)
- (10:55:30 PM) TheShocker: beer + orvr/scenarios = loads of fun XD
- (10:56:00 PM) Moomin: :S
- (10:56:00 PM) Guntermas: deez ddos guys should concentrate on shitty games
- (10:56:19 PM) TheShocker: yes, ddos hello kitty island ffs :|
- (10:56:37 PM) TheShocker: not sure it still does actually XD
- (10:56:50 PM) Moomin: lol
- (10:57:08 PM) TheShocker: http://www.hellokittyonline.com/
- (10:57:47 PM) Guntermas: they really dare to use the term mmorpg
- (10:58:15 PM) Guntermas: that should be reason enough to ddos this crap
- (10:59:29 PM) Moomin: anyway .. gonna log off ! see u in game ! x
- (10:59:30 PM) Secrets: i'd prefer no games getting ddos'd
- (10:59:52 PM) Moomin left the room (quit: Quit: Page closed).
- (11:00:05 PM) Guntermas: yeah its just a bunch of bored jerks
- (11:00:13 PM) TheShocker: time to sleep I guess
- (11:00:15 PM) Melcene: Dangit, I haven't played WAR in at least 5 or 6 years. I wanna play! *whine*
- (11:00:19 PM) decreatr [webchat@94.181.197.68] entered the room.
- (11:00:27 PM) TheShocker: night everyone, hope you can log in soon
- (11:00:38 PM) Melcene: Nite
- (11:09:22 PM) Rendas [webchat@c-73-217-142-137.hsd1.sc.comcast.net] entered the room.
- (11:18:08 PM) Rendas left the room (quit: Quit: Page closed).
- (11:19:38 PM) Garraz [webchat@c-73-9-236-106.hsd1.il.comcast.net] entered the room.
- (11:21:05 PM) zabis left the room (quit: Quit: Page closed).
- (11:21:49 PM) Garraz left the room (quit: Quit: Page closed).
- (11:22:12 PM) Medulla left the room (quit: Ping timeout).
- (11:35:12 PM) Foxbeep [webchat@cpe-70-114-243-11.austin.res.rr.com] entered the room.
- (11:35:24 PM) Foxbeep: Hey I just wanted to say I got my game working and thanks to all ya'll who tried to help me
- (11:35:57 PM) Foxbeep: I'd asked several hard questions and you guys were very helpful the last few days.
- (11:41:16 PM) Foxbeep left the room (quit: Quit: Page closed).
- (11:51:13 PM) Co_Okie [webchat@68-191-101-153.dhcp.dctr.al.charter.com] entered the room.
- (11:52:00 PM) Co_Okie left the room (quit: Quit: Page closed).
- (11:52:14 PM) Dwaegon [webchat@71-87-248-139.dhcp.jcsn.tn.charter.com] entered the room.
- (10/31/2015 12:01:06 AM) Dwaegon: Is it just the login is messed up or is the server down?
- (12:01:24 AM) Dwaegon: I'm willing to spend 20 minutes clicking on and off of this browser x.x
- (12:03:45 AM) Guntermas left the room (quit: Quit: Page closed).
- (12:03:51 AM) Dwaegon: [>-_-]>▄︻̷̿┻̿═━一 pew pew pew pew pew <(=_=<).. Can't touch this
- (12:04:20 AM) Pornflakes [~Pornflake@62.1.181.181.dsl.dyn.forthnet.gr] entered the room.
- (12:05:06 AM) Pornflakes left the room (quit: Quit: Leaving).
- (12:06:54 AM) Melcene: It's just the login, according to the guys that were here earlier
- (12:07:13 AM) Melcene: People who are in are ok. Those of us who are not in can't get in. Been about 3 hours now :(
- (12:10:59 AM) Dwaegon: dang, I should have logged on when I had the chance. Got stuck downloading Medieval II on steam and keep getting a dang error :(
- (12:11:15 AM) Zednar [webchat@c-67-183-208-132.hsd1.wa.comcast.net] entered the room.
- (12:11:18 AM) Dwaegon: so everything is backfiring today for meh
- (12:12:47 AM) Melcene: I just feel like the second I go play something else... it'll come up
- (12:15:27 AM) Dwaegon: now on the long journey of downloading Rage of the dark gods
- (12:24:30 AM) Zednar left the room (quit: Quit: Page closed).
- (12:26:51 AM) Tornadium [webchat@cpc78907-bele10-2-0-cust249.2-1.cable.virginm.net] entered the room.
- (12:31:51 AM) Dwaegon: apparently its getting DDOS'd
- (12:32:13 AM) Dwaegon: Game servers are up from what I understand, but I think the log in servers are donw.
- (12:41:56 AM) Melcene: Yeah web and log in servers down, game was up last I heard
- (12:42:47 AM) Tornadium: im still waiting on my registration email from a week ago
- (12:43:58 AM) Melcene: Some accounts it won't work with... like msn, hotmail, etc
- (12:44:21 AM) Melcene: I caught some thread about it. Worked ok with my yahoo and gmail accounts tho
- (12:44:52 AM) mostly_harmless [webchat@93.123.117.21] entered the room.
- (12:48:43 AM) Tornadium: I've tried with 4 different accounts :P all using gmail
- (12:57:26 AM) Melcene: Hmm my gmail got it immediately :(
- (1:01:17 AM) Schnuppiiii left the room (quit: Quit).
- (1:39:19 AM) dadlyj [webchat@221.154.240.247] entered the room.
- (1:39:32 AM) dadlyj: ddos again?
- (1:53:51 AM) mostly_harmless left the room (quit: Ping timeout).
- (1:57:21 AM) Melcene: Tornadium - just yesterday or the day before
- (2:00:31 AM) dadlyj left the room (quit: Ping timeout).
- (2:18:11 AM) Tornadium: I made 4 accounts last week and didn't get an email lol
- (2:22:40 AM) Melcene: I had to make a new one today on gmail because my other was giving me invalid uname/pword, and got the email immediately :( Check junk/spam?
- (2:35:37 AM) Hate [webchat@aftr-37-201-229-179.unity-media.net] entered the room.
- (2:42:04 AM) Tornadium: Guess ill try making another when the ddosing finally ends
- (2:47:10 AM) ffff [webchat@85.254.79.142] entered the room.
- (2:50:22 AM) Godo_ [webchat@60.234.101.139] entered the room.
- (2:52:23 AM) Godo_ left the room (quit: Ping timeout).
- (2:53:00 AM) Wara [webchat@adsl-dyn228.78-98-212.t-com.sk] entered the room.
- (2:53:19 AM) kozh [webchat@c-ae7fe255.01-99-6b6c6d10.cust.bredbandsbolaget.se] entered the room.
- (2:53:22 AM) Godo_ [webchat@60.234.101.139] entered the room.
- (2:55:21 AM) Godo_ left the room (quit: Ping timeout).
- (2:58:21 AM) Godo_ [webchat@60.234.101.139] entered the room.
- (3:05:13 AM) Godo_: R u guys reckon, they'll get it going again today?
- (3:06:00 AM) Bruins5555 [webchat@78-67-26-136-no248.tbcn.telia.com] entered the room.
- (3:06:11 AM) Bruins5555 left the room (quit: Quit: Page closed).
- (3:08:11 AM) Tyrshand [webchat@c83-254-172-106.bredband.comhem.se] entered the room.
- (3:09:13 AM) Tyrshand: So the bloody DDoS's are at it again huh?
- (3:09:46 AM) Tornadium: How on did this dude get so pissed off that they're ddosing this regularly
- (3:10:34 AM) Godo_: Good question, I assume may be through the bans
- (3:11:20 AM) Mordu [webchat@ppp-94-68-247-178.home.otenet.gr] entered the room.
- (3:11:33 AM) Mordu: Any news?
- (3:12:05 AM) Destro [webchat@ip72-193-104-101.lv.lv.cox.net] entered the room.
- (3:13:33 AM) Godo_ left the room (quit: Ping timeout).
- (3:14:20 AM) Destro: any updates on the ddos attack?
- (3:29:03 AM) onlyblood [webchat@10.126.11.37.dynamic.jazztel.es] entered the room.
- (3:29:17 AM) onlyblood: hello, we are still a few inside game
- (3:33:21 AM) Destro: how?
- (3:34:14 AM) Destro left the room (quit: Quit: Page closed).
- (3:34:35 AM) Tornadium: if you didnt log out you're probably still ok
- (3:35:00 AM) onlyblood: for very long
- (3:37:15 AM) Tyrshand: Lucky bastard
- (3:38:30 AM) onlyblood: well lucky...its sad see this
- (3:38:44 AM) godo_ [webchat@60.234.101.139] entered the room.
- (3:39:25 AM) onlyblood: feel *
- (3:40:42 AM) godo_: i so wanna treat my weapons with destruction blood, mmmmhhhh...
- (3:41:22 AM) godo_: no i'm not
- (3:42:29 AM) Dwaegon: Same, my hammers need some Grobi blood on them.
- (3:42:44 AM) onlyblood: ill be happy too meet u xd
- (3:46:58 AM) Wara left the room (quit: Quit: Page closed).
- (3:47:39 AM) Mordu: need some help here, what are the addons used for ui here? https://www.youtube.com/watch?v=X80LxrXo6Yw And where could i find them?
- (3:50:39 AM) Dwaegon: The one I really want is the Debuff/buff one above the heads of players.
- (3:50:49 AM) Jojo^^ [~Jojo@Jojo1337.users.quakenet.org] entered the room.
- (3:52:34 AM) Mordu: BuffHead it is
- (3:54:00 AM) Mordu: class icons though look nice, and gui
- (3:54:02 AM) Tyrshand: yea bad that is correct, thought you meant the icons
- (3:54:20 AM) Mordu: so class icons are Enemy?
- (3:54:22 AM) ewtwet [webchat@d108-173-149-128.abhsia.telus.net] entered the room.
- (3:54:36 AM) Tyrshand: enemy is also the big target arrow you see
- (3:54:59 AM) ewtwet: anyone know if they will have the servers up by tommrow?
- (3:57:10 AM) ewtwet: dunno
- (3:57:23 AM) ewtwet: Maybe one of you guys are admins shit
- (3:58:46 AM) Jojo^^: someone is working on it i guess
- (3:59:05 AM) Jojo^^: it is weekend, better chance that someone has time
- (4:01:50 AM) ewtwet: Hopefully they get it up by tommrow atleast
- (4:01:56 AM) ewtwet left the room (quit: Quit: Page closed).
- (4:05:47 AM) Mordu: any source on downloading addons?
- (4:13:36 AM) Tyrshand: https://drive.google.com/folderview?id=0BySRD_zm5DGyMTVVb2JZQXZVNDg&usp=sharing
- (4:14:42 AM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (4:19:39 AM) ffff left the room (quit: Quit: Page closed).
- (4:20:31 AM) Tyrshand: yw
- (4:20:36 AM) Dwaegon: Shameless plug, come watch me get owned on Rage of Dark Gods :(
- (4:20:43 AM) Dwaegon: :D
- (4:20:50 AM) grimfada [webchat@mobile-access-6df085-166.dhcp.inet.fi] entered the room.
- (4:22:27 AM) kozh left the room (quit: Quit: Page closed).
- (4:22:53 AM) Calidore [webchat@dsl-tkubrasgw1-50dd38-112.dhcp.inet.fi] entered the room.
- (4:23:43 AM) Dwaegon left the room (quit: Ping timeout).
- (4:24:34 AM) grimfada: Hello! Is there any news about the current situation? It seems that 'they' took the best of the whole RoR-package, website and all.
- (4:25:53 AM) Calidore left the room (quit: Ping timeout).
- (4:31:49 AM) wargrimnir left the room (quit: Ping timeout).
- (4:31:49 AM) Dwaegon [webchat@71-87-248-139.dhcp.jcsn.tn.charter.com] entered the room.
- (4:39:01 AM) Sparrer78 [webchat@sparrer78.static.corbina.ru] entered the room.
- (4:41:29 AM) godo_ left the room (quit: Ping timeout).
- (4:43:39 AM) Faze [webchat@92.40.248.215.threembb.co.uk] entered the room.
- (4:43:57 AM) MiguelSnake [webchat@143.Red-81-35-232.dynamicIP.rima-tde.net] entered the room.
- (4:44:06 AM) Faze left the room (quit: Quit: Page closed).
- (4:44:49 AM) Xero [webchat@92.40.248.215.threembb.co.uk] entered the room.
- (4:45:24 AM) Tosam [webchat@k9242.upc-k.chello.nl] entered the room.
- (4:47:48 AM) Daek [webchat@dsl-tkubrasgw1-50dd38-112.dhcp.inet.fi] entered the room.
- (4:52:36 AM) Hate left the room (quit: Ping timeout).
- (4:53:17 AM) Mordu left the room (quit: Ping timeout).
- (4:55:18 AM) Hate [webchat@aftr-37-201-229-179.unity-media.net] entered the room.
- (4:55:23 AM) Xero left the room (quit: Ping timeout).
- (4:56:10 AM) Tosam left the room (quit: Quit: Page closed).
- (4:56:33 AM) grimfada left the room (quit: Quit: Page closed).
- (4:59:32 AM) Fapharder [webchat@ims92-3-88-173-113-14.fbx.proxad.net] entered the room.
- (5:02:30 AM) Bogans [webchat@a95-92-138-93.cpe.netcabo.pt] entered the room.
- (5:15:23 AM) Sebbeleu: howdy
- (5:21:08 AM) Sullemunk [webchat@host-95-199-140-166.mobileonline.telia.com] entered the room.
- (5:25:40 AM) Tyrshand left the room (quit: Quit: Page closed).
- (5:33:14 AM) Sullemunk left the room (quit: Ping timeout).
- (5:37:59 AM) Godo_ [webchat@60.234.101.139] entered the room.
- (5:38:46 AM) Godo_: War page works
- (5:42:45 AM) Godo_ left the room (quit: Ping timeout).
- (5:46:15 AM) MiguelSnake left the room (quit: Quit: Page closed).
- (5:53:55 AM) TheShocker: yup
- (5:54:39 AM) Melcene: here too
- (5:55:41 AM) Melcene: Fixed!
- (6:11:48 AM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (6:13:38 AM) TheShocker: heya
- (6:48:40 AM) Syc [webchat@130.43.36.169.dsl.dyn.forthnet.gr] entered the room.
- (6:58:15 AM) unknown [webchat@HSI-KBW-082-212-038-083.hsi.kabelbw.de] entered the room.
- (6:58:47 AM) unknown left the room (quit: Quit: Page closed).
- (7:16:12 AM) sinisterror left the room (quit: Ping timeout).
- (7:17:24 AM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (7:18:29 AM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (7:28:08 AM) TheShocker has changed the topic to: Website and Login are down due to DDOS || join the zombie chicken apocalypse tonight http://www.returnofreckoning.com/forum/viewtopic.php || http://www.returnofreckoning.com/join.php
- (7:29:16 AM) Viny: whut? are we being ddosed again?
- (7:38:59 AM) Sebbeleu: something missing in the forum link?
- (7:50:09 AM) Dwaegon left the room (quit: Quit: Page closed).
- (7:53:57 AM) onlyblood left the room (quit: Quit: Page closed).
- (7:56:56 AM) Onyx [webchat@162-203-6-47.lightspeed.dybhfl.sbcglobal.net] entered the room.
- (8:24:58 AM) Noiree [~noiree@p5B345DA3.dip0.t-ipconnect.de] entered the room.
- (8:29:30 AM) Viny: regular saturday stuff
- (8:35:23 AM) Viny: streaming today Noiree
- (8:35:56 AM) Noiree: wasn't planning to
- (8:41:47 AM) firlam [webchat@93.185.192.82] entered the room.
- (8:42:32 AM) decreatr: critical
- (8:51:28 AM) Noiree: it's interesting how many shamans are just capable of g-heal spam while being rooted to one position like a statue
- (8:54:38 AM) TheShocker has changed the topic to: Website and Login are down due to DDOS || join the zombie chicken apocalypse tonight http://www.returnofreckoning.com/forum/viewtopic.php?f=19&t=7091 || http://www.returnofreckoning.com/join.php
- (8:57:22 AM) TheShocker: I don't understand why some people say the game data torrent isn't usable
- (8:57:47 AM) TheShocker: I've seeded 2.5TB of that fucker, got 14 people dling now, and upping at 5MB/s
- (8:58:20 AM) TheShocker: think they don't have DHT enabled
- (8:58:29 AM) Noiree: login worked just 15 mins ago
- (8:59:05 AM) Noiree: website is working, too
- (9:02:41 AM) Syc left the room (quit: Quit: Page closed).
- (9:13:05 AM) Sparrer78 left the room (quit: Quit: Page closed).
- (9:14:03 AM) Viny: but i cant even download
- (9:14:48 AM) Noiree: put into Q's msg that today's Chickenocalypse
- (9:18:41 AM) Tornadium left the room (quit: Ping timeout).
- (9:39:49 AM) Elratie: good to see who is master and slave
- (9:41:37 AM) aerogath [webchat@ip-109-90-216-213.hsi11.unitymediagroup.de] entered the room.
- (9:42:19 AM) aerogath: hi THeShocker i've found out which addon let the petbar dissapear on Squiqherder its Heling Grid
- (9:52:28 AM) TheShocker: thought so, glad you figured it out though
- (9:52:37 AM) TheShocker: healgrid doesn't work properly anyway btw
- (9:55:39 AM) Viny: and it's better configured out of the box
- (9:58:39 AM) Noiree: healgrid/squared are incredibly fucked up atm
- (9:58:48 AM) Noiree: hope the devs manage to fix this soon
- (10:02:12 AM) Kulbuto [webchat@85-170-148-115.rev.numericable.fr] entered the room.
- (10:05:31 AM) aerogath: hmm is there another good healing addon ?
- (10:08:55 AM) Viny: use enemy
- (10:10:31 AM) aerogath: o.O it's called enemy ? ok
- (10:16:04 AM) decreatr left the room (quit: Ping timeout).
- (10:23:01 AM) aerogath left the room (quit: Quit: Page closed).
- (10:33:50 AM) Chttfkk left the room (quit: Quit: Page closed).
- (10:48:33 AM) Viny: ye but its ugly
- (10:48:48 AM) Elratie: well you can make it pretty
- (10:50:24 AM) Elratie left the room (quit: Quit).
- (12:01:12 PM) Macavity left the room (quit: Signed off).
- (12:01:49 PM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (12:10:51 PM) Daek left the room (quit: Quit: Page closed).
- (12:34:56 PM) Onyx left the room (quit: Ping timeout).
- (1:02:34 PM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (1:33:45 PM) The topic for #martyrs_square is: Website and Login are down due to DDOS || join the zombie chicken apocalypse tonight http://www.returnofreckoning.com/forum/viewtopic.php?f=19&t=7091 || http://www.returnofreckoning.com/join.php
- (1:33:45 PM) Topic for #martyrs_square set by TheShocker at 8:54:36 AM on 10/31/2015
- (1:36:32 PM) Noiree [~noiree@p5B345DA3.dip0.t-ipconnect.de] entered the room.
- (1:44:30 PM) Viny left the room (quit: Quit: Page closed).
- (2:19:26 PM) Hate left the room (quit: Quit: Page closed).
- (2:30:43 PM) Sebbeleu: is rats the fastest way to lvl?
- (3:14:35 PM) Azarael [Azarael@Azarael.users.quakenet.org] entered the room.
- (3:14:41 PM) Jojo^^: yea
- (3:18:25 PM) TheShocker: rats or a nice keep defence ;)
- (3:18:41 PM) Azarael: hai
- (3:18:56 PM) TheShocker: joining the chicken apocalypse later on?
- (3:19:37 PM) Azarael: as a GM, I am immune to chicken
- (3:19:59 PM) Azarael: but oneshotting everyone with Wrath of Hoeth sounds GRAND
- (3:22:52 PM) Elratie left the room (quit: Quit).
- (3:26:10 PM) TheShocker: would be funnier if you did become a chicken as a GM but kept all your abilities Azarael, just saying
- (3:26:29 PM) Azarael: if it gets changed again
- (3:26:33 PM) Azarael: it'll change to reverse bolster
- (3:27:04 PM) TheShocker: oh, btw, you did the tier brackets wrong, you're supposed to be able to do orvr in t2 as a level 10 :P
- (3:27:18 PM) TheShocker: I'll file a bug report if you want
- (3:27:47 PM) TheShocker: you don't get any rps before level 12 now in t2, even though you can get the kill quests in the warcamps
- (3:31:10 PM) Noiree: lol I killed a player in T1 as chicken :D
- (3:32:22 PM) Noiree: nah more like the power of covenant procs
- (3:32:36 PM) Noiree: and chickens got too many hps - original chicken only had 10hp
- (3:33:18 PM) ***Azarael goes to edit code in a huff
- (3:34:47 PM) TheShocker: there used to be a tome unlock for doing orvr as a chicken
- (3:39:20 PM) Noiree: and tactics still proc - dat spirit dmg is ticking
- (3:42:29 PM) Fluffmonster [webchat@55d415d5.access.ecotel.net] entered the room.
- (3:43:09 PM) sinisterror left the room (quit: Ping timeout).
- (3:43:55 PM) Fluffmonster: Rank 11 mastery tactic do not work yet (at least mine, rp) , is that intended?
- (3:44:03 PM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (3:45:14 PM) Noiree: hp are too much but armor red also - you had your old armor as chicken on live
- (3:47:28 PM) Sebbeleu: do you need a specific level or something to handle rats?
- (3:48:46 PM) TheShocker: oh this is so much fun XD
- (3:49:01 PM) TheShocker: taking BOs in blighted isles with a huge group of chickens
- (3:52:40 PM) Noiree: how the hell can a lvl 26 in the middle of rvr zone kill chickens as non chicken?
- (3:53:08 PM) TheShocker: that chosen?
- (3:53:22 PM) Noiree: locaso killed players with his engi
- (4:01:44 PM) Noiree: almost no interactions - still lags
- (4:01:55 PM) TheShocker: I dinged a renown level XD
- (4:04:39 PM) Noiree: okay... looks like server took a break
- (4:04:48 PM) TheShocker: yeah, everyone disappeared
- (4:05:06 PM) TheShocker: hey, if this is only because so many people decided to join it I can live with that ;)
- (4:05:12 PM) Krumlok [webchat@208.148.21.95.dynamic.jazztel.es] entered the room.
- (4:05:13 PM) Noiree: next time you might want to set up rules like no covenants, tactics, buffs etc
- (4:05:20 PM) Krumlok: DA DEATHSKULL KLOOCKERS IZ 'ERE
- (4:06:20 PM) Krumlok: I kin't do klook wiff da lag
- (4:08:25 PM) TheShocker: my wife got weird shit on her screen just now random characters in various textboxes
- (4:10:56 PM) Noiree: still trying to figure out how I could die during lag... didn't even see my opponent
- (4:12:23 PM) ropuch: How short your dick must be to take advantage of not being turned into chicken in chicken event as 26r engie? ;-)
- (4:13:19 PM) Noiree: someone told me that exact same guy got banned during the gold exploit ban wave
- (4:13:22 PM) TheShocker: few destro lowbies killing chickens now in front of the blighted isles wc
- (4:13:54 PM) Noiree: the lowbies are a huge problem - obviously their capability to read is underdeveloped
- (4:13:59 PM) Fluffmonster: just died by the hands of a WE :p
- (4:14:35 PM) TheShocker: Azarael: cann't you make everyone a chicken in t1 elves regardless of their level?
- (4:15:30 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (4:15:43 PM) TheShocker: Bahirah the WE is killing chickens
- (4:19:50 PM) Krumlok: Azarael: Nerf DaShocka
- (4:20:30 PM) TheShocker: I saw your name and went straight for you XD
- (4:25:39 PM) Viny: TheShocker: can I borrow you for a sec
- (4:25:44 PM) TheShocker: weird how suddenly a lot of lowbies want to be in t1 elves isn't it?
- (4:26:09 PM) Viny: another time then
- (4:32:00 PM) Viny: ugh fun
- (4:32:05 PM) Viny: it was terrible
- (4:32:13 PM) TheShocker: actually, I'm going to quit, no fun when there's almost 10 destro lowbies killing you
- (4:34:07 PM) TheShocker: well, they're pretty much ruining it
- (4:36:34 PM) Krumlok: It'z bw's bombing us to death
- (4:37:31 PM) TheShocker: I know, told people that in /say too :
- (4:38:05 PM) TheShocker: saw a lvl 1 engi there killing destro, so that character was made with the purpose of killing them otherwise he wouldn't be in t1 elves
- (4:38:31 PM) TheShocker: it was a shitload of fun though before they came along XD
- (4:38:37 PM) Viny: what trackers does the torren have
- (4:38:46 PM) TheShocker: none, it's DHT
- (4:39:45 PM) TheShocker: Azarael: did you already do that? reset their xp and rp? XD
- (4:39:56 PM) TheShocker: Viny: it dynamically gets peer addresses
- (4:40:54 PM) Azarael: at least one of them got set to r1rr1
- (4:40:58 PM) Azarael: because he relogged after two kicks
- (4:41:04 PM) Azarael: I don't forgive terminal stupidity
- (4:41:59 PM) TheShocker: don't get why people do things like that
- (4:42:20 PM) Azarael: u diddent stop me in code so u cant ban me heahuaha or its not fair D:D:D::D:D:D
- (4:44:50 PM) Viny: it says DHT status: disabled
- (4:46:11 PM) Fluffmonster: it's the same reason why ppl attacking the servers via ddos
- (4:49:26 PM) TheShocker: Viny: DHT isn't on in your torrent client probably
- (4:49:59 PM) Viny: I'm using an old verison
- (4:51:12 PM) Viny: status is now waiting to annouce
- (4:54:39 PM) Viny: its working
- (4:54:48 PM) Viny: TheShocker: <3
- (4:58:55 PM) Krumlok: The event was great fun
- (4:59:06 PM) Krumlok: except for those lowbies who abused the chickens
- (4:59:13 PM) sinisterror left the room (quit: Ping timeout).
- (4:59:46 PM) Noiree: I always thought, chickens didn't drop shit on live... no xp,no inf, no rp, no loot
- (5:00:06 PM) TheShocker: think they did give xp and rp, but I'm not sure
- (5:00:47 PM) Noiree: only thing I'm sure about: armor stayed, rest of the stats gone, hp = 10
- (5:01:13 PM) Noiree: cause sometimes when jumping down you only took 1 falling dmg :D
- (5:09:24 PM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (5:16:22 PM) TheShocker: it is gud
- (5:17:57 PM) Noiree: made hot coco with spices, whipped cream and amaretto :D
- (5:19:02 PM) TheShocker: man, this is sounding more and more like an episode of sesame street
- (5:21:30 PM) Noiree: I wouldn't give that coco to kids, though
- (5:24:36 PM) TheShocker: and no filthy little childrens hands will ever touch this delicious pie ;)
- (5:30:20 PM) Noiree: nah it's more like handing this coco to kids, I might end up in jail :D too much alcohol
- (5:30:26 PM) Niblolkik [webchat@88-106-190-100.dynamic.dsl.as9105.com] entered the room.
- (5:32:12 PM) Niblolkik left the room (quit: Quit: Page closed).
- (5:52:56 PM) Genisaurus [webchat@c-69-250-44-136.hsd1.va.comcast.net] entered the room.
- (5:57:06 PM) Krumlok left the room (quit: Ping timeout).
- (5:58:46 PM) sinisterror left the room (quit: Ping timeout).
- (6:00:07 PM) TheShocker: a'ight viny, I'll check it in a minute
- (6:25:58 PM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (6:26:56 PM) Bogans left the room (quit: Quit: Page closed).
- (6:54:44 PM) TheShocker: saving everyone the trouble of checking if beer is still good; it is!
- (7:00:22 PM) Viny: Noiree: will you ever come to my stream or do I have to beg :<
- (7:13:43 PM) Secrets: hi Azarael
- (7:14:28 PM) sinisterror left the room (quit: Ping timeout).
- (7:14:45 PM) Secrets: just wanted to say thank you for preserving this game, i've done my own work on preserving everquest for mac and it's great to see other people volunteering to do so
- (7:15:46 PM) Secrets: and if you guys ever need any advice for code design, let me know, i don't have much time to dedicate because of work but i'll gladly take a look at performance issues
- (7:17:25 PM) Secrets: was talking to someone else in here earlier about replication of position updates, from what i've heard that can be optimized
- (7:17:40 PM) Azarael: yeah, at the moment that's causing it to bog
- (7:17:47 PM) Azarael: we had a chicken event earlier
- (7:17:53 PM) Azarael: but the region ground to a halt
- (7:18:09 PM) Azarael: one of the other developers is working on the network aspect of the emu atm
- (7:18:28 PM) Secrets: have you guys tried queueing position updates all at once, and then using a separate thread to send network data?
- (7:18:43 PM) Secrets: eqemu has sort of the same setup i'm describing
- (7:18:51 PM) Azarael: using a separate thread is on the agenda - the dev handling it mentioned that
- (7:19:10 PM) Secrets: that will help you guys tremendously
- (7:19:20 PM) Secrets: I have two - one for reading, one for writing
- (7:19:49 PM) Secrets: packets get put into an outbound queue - inside the packet itself is the opcode/struct
- (7:20:12 PM) Secrets: we only pass the data, size, and opcode to an encoder which handles the encryption process in a separate thread
- (7:20:16 PM) Secrets: the main game logic is separate
- (7:20:42 PM) Secrets: the other thing we did is separated game updates to the main thread after that was done
- (7:21:03 PM) Secrets: so all position updates aren't sent 'on client/event request', but instead in chunks every 'tick'
- (7:21:15 PM) Noiree: maybe turn off collision until the lag got fixed on dev server?
- (7:21:36 PM) Secrets: that way you don't send position updates that aren't needed
- (7:21:42 PM) TheShocker: Azarael: yeah, thought the chicken event would be a great stress test for you for that reason, basically only positional updates (some people still had tactics etc on, but not many)
- (7:21:58 PM) Azarael: yeah, it does everything wrong atm
- (7:22:01 PM) Azarael: packet sending on region thread
- (7:22:04 PM) Secrets: oh god
- (7:22:15 PM) TheShocker: Noiree: lol, really? XD
- (7:22:18 PM) Azarael: player state 2 is sent regardless of whether or not position changed, and without throttling, to all withn range
- (7:22:32 PM) Azarael: so yeah
- (7:22:34 PM) Secrets: yeah that could use some updates
- (7:22:41 PM) Noiree: if you apply the buffs before you turn into a chicken - the buffs stay active
- (7:23:05 PM) Secrets: is the public code pretty much the same with position updates?
- (7:23:13 PM) Secrets: if so, i'll take a look and rewrite it
- (7:23:41 PM) Secrets: great, thanks - we'll see what i can come up with
- (7:24:10 PM) Secrets: have 4 days off in a row, super bored
- (7:24:43 PM) Noiree: I heard some ppl play during times like these :P
- (7:25:45 PM) Secrets: programming is my irl job and hobby sooo yeah
- (7:25:45 PM) Azarael: and heh :D
- (7:26:27 PM) Secrets: i work doing coding/CSR stuff for a games company, and in my downtime i play/dev sometimes
- (7:26:47 PM) Secrets: job takes up a lot of my time though
- (7:26:49 PM) Noiree: well... I got to know ppl who start drooling when thinking about certain coding languages...
- (7:27:06 PM) Secrets: pretty much me, i love getting a new foreign project to work on
- (7:27:28 PM) Secrets: i'm like the crazy cat person of dead/dying mmos, love taking them on and revamping them
- (7:28:10 PM) Secrets: the company i work for does the same, so it's a great fit
- (7:30:48 PM) TheShocker: Secrets: I know what you mean, I write assembly for seriously old systems that are still running XD
- (7:30:51 PM) Noiree: what's the name of your company? gravedigger inc.?
- (7:31:19 PM) TheShocker: it's totally different but very similar at the same time XD
- (7:31:59 PM) TheShocker: some haskell too
- (7:32:48 PM) Secrets: jeez, delphi
- (7:33:17 PM) TheShocker: you really don't want to know where they still it
- (7:33:52 PM) Secrets: and i thought 2004-era engines were old :P
- (7:35:01 PM) Noiree: we still got win xp based pcs in our labs
- (7:38:36 PM) TheShocker: I think most ATMs still run xp these days
- (7:38:48 PM) TheShocker: like, 90+% of them all over the world
- (7:39:41 PM) Jojo^^ left the room (quit: Signed off).
- (7:40:27 PM) Noiree: saw the ATM rebooting after I inserted my card... card gone for several days
- (7:40:51 PM) TheShocker: yeah, always fun to see one BSOD too XD
- (7:41:16 PM) Noiree: it was so much fun... the amount of 'wtf?!'-moments was close to infinity
- (7:45:32 PM) Kulbuto left the room (quit: Quit: Page closed).
- (7:47:12 PM) TheShocker: you know, cookie dough sounds a lot like bushido
- (7:58:46 PM) TheShocker: XD
- (7:59:10 PM) TheShocker: I actually do a pretty good Chuck D
- (8:03:35 PM) Fapharder left the room (quit: Quit: Page closed).
- (8:05:05 PM) Noiree: this chan contains the nerd faction of the server
- (8:06:51 PM) Noiree: anyway...off to bed...happy rest of halloween folks
- (8:07:21 PM) Noiree left the room (quit: Read error: Connection reset by peer).
- (8:10:59 PM) TheShocker: gosh, nerds? on IRC? no wai
- (8:52:23 PM) Genisaurus left the room (quit: Quit: Page closed).
- (9:25:46 PM) Kup left the room (quit: Quit: Page closed).
- (9:26:53 PM) firlam left the room (quit: Ping timeout).
- (9:29:55 PM) TheShocker: Secrets: I swear, I maintain an IRC channel that's been around for 10 years, one of the first comments I got there was 'what, no yahoo chatroom???' XD
- (9:31:10 PM) Secrets: rofl
- (9:31:29 PM) TheShocker: uhuh
- (9:52:27 PM) Viny: Azarael: you are making women excited right now
- (9:52:37 PM) Azarael: so I hear :p
- (9:52:54 PM) TheShocker: you special like liberace
- (9:55:45 PM) Fluffmonster: Azarael: Are all rank 11 mastery tactics not working yet? At least on my rp the absorbproc tactic isn't : )
- (9:56:03 PM) Azarael: if I'm not wrong
- (9:56:17 PM) Azarael: dwarfs don't have a racial tactic for absorb
- (9:56:48 PM) TheShocker: liek, srsly
- (9:57:27 PM) TheShocker: Azarael: was I right about the t2 req btw?
- (9:58:08 PM) TheShocker: you don't get rp in t2 until rank 12 atm
- (9:58:15 PM) Medulla [webchat@x590c4cc3.dyn.telefonica.de] entered the room.
- (9:58:20 PM) Azarael: it's blocked for bos and keeps, yes
- (9:58:21 PM) TheShocker: which is wrong, t2 is rank 10-21
- (9:58:51 PM) TheShocker: that sucks tbh, makes me stuck in shitty t2 for 2 more ranks than should be required :(
- (9:59:15 PM) Azarael: t1 is best though
- (9:59:32 PM) TheShocker: not just BOs etc btw. didn't get rp for kills either
- (9:59:38 PM) Fluffmonster: http://2.bp.blogspot.com/_-YZSqqS4bgo/TCJ2qJehU4I/AAAAAAAAAHQ/VEMWiWyDvyg/s1600/healspec.png
- (9:59:41 PM) TheShocker: nah, t1 is a cesspool of idiots
- (9:59:53 PM) Fluffmonster: rank 11 in 'Grimnir', thats what I was talkin of : )
- (10:00:38 PM) TheShocker: would seriously be better if you /can/ go to t2 at rank 10 and are forced to at 12
- (10:00:56 PM) Fluffmonster: I skilled it for testing purposes and the tactic showed up red in the slot and was not working
- (10:00:57 PM) Azarael: yeah ancestor's echo is implemented
- (10:02:01 PM) TheShocker: Azarael: as much as I bitch btw, I fucking love you <3
- (10:02:11 PM) Azarael: ta :p
- (10:03:17 PM) TheShocker: everyone of the team that's not on here too, tell them magicthighs says he fucking loves them, no homo (also for the added creep factor)
- (10:04:56 PM) Fluffmonster: But I can try it again tomorrow when I login again. I'm pretty 100% sure it did not work.
- (10:05:15 PM) Azarael: wouldn't be a patch if I didn't forget something
- (10:05:26 PM) TheShocker: goddammit I JUST took a 60 min pot :P
- (10:05:41 PM) TheShocker: it's fine mate XD
- (10:05:47 PM) Azarael: but yeah, would have been super imbalanced scenarios with minplayers 1 requirement
- (10:05:58 PM) TheShocker: didn't cost me a thing, I make them
- (10:06:15 PM) TheShocker: glad you patched
- (10:07:34 PM) TheShocker: must be the crack cocaine
- (10:10:06 PM) TheShocker: did you break something, Azarael?
- (10:10:36 PM) Azarael: another flaw
- (10:10:49 PM) Azarael: server takes ages to load
- (10:10:53 PM) Azarael: because it caches the entire db
- (10:11:02 PM) Azarael: yyyup
- (10:11:06 PM) Toran [webchat@k9242.upc-k.chello.nl] entered the room.
- (10:11:09 PM) Azarael: someone should really get around to doing something about that
- (10:11:16 PM) TheShocker: ah yeah, got on now
- (10:11:37 PM) TheShocker: there's WAÅAAGGH to be had
- (10:13:44 PM) TheShocker: seriously though, just took one of my last blue pots just before the restart -_-
- (10:15:56 PM) Fluffmonster left the room (quit: Ping timeout).
- (10:18:35 PM) Medulla left the room (quit: Quit: Page closed).
- (10:25:16 PM) TheShocker: you know, when you enter a sc, and there;s 4 healers in group 1, and none in yours, and you ask the healers to spread out, and they don't respond, fuck them, right>
- (10:26:03 PM) Azarael: in any case, now that I can see nothing is catastrophically broken
- (10:26:06 PM) Azarael: l8rs
- (10:38:44 PM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (10:41:37 PM) Toran left the room (quit: Quit: Page closed).
- (10:48:04 PM) Viny left the room (quit: Quit: Page closed).
- (11:29:44 PM) sinisterror left the room (quit: Ping timeout).
- (11:59:02 PM) Melcene left the room (quit: Ping timeout).
- (11/1/2015 12:48:28 AM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (12:54:39 AM) Macavity [~Macavity@Macavity.users.quakenet.org] entered the room.
- (2:17:46 AM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (2:48:30 AM) The topic for #martyrs_square is: Website and Login are down due to DDOS || join the zombie chicken apocalypse tonight http://www.returnofreckoning.com/forum/viewtopic.php?f=19&t=7091 || http://www.returnofreckoning.com/join.php
- (2:48:30 AM) Topic for #martyrs_square set by TheShocker at 8:54:36 AM on 10/31/2015
- (3:45:19 AM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (4:06:04 AM) Jennifer [webchat@cable-188-2-89-25.dynamic.sbb.rs] entered the room.
- (4:06:27 AM) Jennifer: ello
- (4:09:27 AM) Jennifer left the room (quit: Ping timeout).
- (4:14:51 AM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (4:57:43 AM) The topic for #martyrs_square is: Website and Login are down due to DDOS || join the zombie chicken apocalypse tonight http://www.returnofreckoning.com/forum/viewtopic.php?f=19&t=7091 || http://www.returnofreckoning.com/join.php
- (4:57:43 AM) Topic for #martyrs_square set by TheShocker at 8:54:36 AM on 10/31/2015
- (5:06:53 AM) Elratie_1 [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (5:07:00 AM) ***Elratie_1 slaps Elratie around a bit with a large trout
- (5:09:26 AM) Elratie left the room (quit: Ping timeout).
- (5:14:14 AM) Elratie_1 is now known as Elratie
- (5:15:36 AM) Azarael [Azarael@Azarael.users.quakenet.org] entered the room.
- (5:20:46 AM) Alcor [webchat@a95-92-138-93.cpe.netcabo.pt] entered the room.
- (5:24:36 AM) Kulbuto [webchat@85-170-148-115.rev.numericable.fr] entered the room.
- (6:31:51 AM) Fluffmonster [webchat@55d41bdb.access.ecotel.net] entered the room.
- (6:32:15 AM) Secrets [~Secrets@c-68-83-231-103.hsd1.pa.comcast.net] entered the room.
- (6:32:36 AM) Secrets: Azarael: I just did some research on the codebase tonight
- (6:32:59 AM) Secrets: I noticed you guys were using a List for ranges instead of a HybridDictionary or HashSet
- (6:33:41 AM) Secrets: It may be faster to use a list in low latency scenarios, but then I found this
- (6:33:43 AM) Secrets: http://stackoverflow.com/questions/150750/hashset-vs-list-performance
- (6:34:49 AM) Secrets: a HashSet stays pretty damn consistent over high numbers of entries - which seems to be what you guys are experiencing with ranges
- (6:35:16 AM) Secrets: a HashSet is slower with lower initial entries, but may be worth looking into
- (6:41:46 AM) Noiree [~noiree@p5B345DA3.dip0.t-ipconnect.de] entered the room.
- (7:06:14 AM) Azarael left the room (quit: Read error: EOF from client).
- (8:01:51 AM) Fluffmonster left the room (quit: Ping timeout).
- (9:18:13 AM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (9:39:43 AM) Stillmatic [webchat@92-244-5-185.customers.ownit.se] entered the room.
- (9:45:06 AM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (10:09:42 AM) Stillmatic left the room (quit: Quit: Page closed).
- (10:16:10 AM) Medulla [webchat@x590e4505.dyn.telefonica.de] entered the room.
- (10:24:09 AM) Syc [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (10:45:02 AM) aerogath [webchat@ip-109-90-217-250.hsi11.unitymediagroup.de] entered the room.
- (10:45:30 AM) aerogath: Heyjo, is Nordenwatch buggy ? order can't flag Fortress the 5th game in a row.
- (10:46:43 AM) TheShocker: they're probably holding it wrong
- (10:47:12 AM) aerogath: standing at fortress alone and nobody can cap fortress :D
- (10:52:52 AM) Elratie: the one who first tap the flag will hold it the entire sc
- (11:09:49 AM) Stillmatic [webchat@92-244-5-185.customers.ownit.se] entered the room.
- (11:16:31 AM) aerogath left the room (quit: Quit: Page closed).
- (11:30:08 AM) Syc left the room (quit: Ping timeout).
- (11:42:11 AM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (11:42:56 AM) sinisterror: is there rollback or something coming because that money cheat ?
- (11:43:10 AM) Noiree: if so, nobody will say before
- (11:43:26 AM) Noiree: and if so, they should wipe ah too otherwise some will hide their items there
- (12:02:28 PM) Elratie left the room (quit: Quit).
- (12:06:44 PM) Potato [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (12:07:13 PM) Viny left the room (quit: Quit: Page closed).
- (12:07:43 PM) sinisterror: i was happy when i logged in first time in 3-4 weeks, killed few guys and got engi weird gloves and some guy gave me 1000g for it
- (12:07:56 PM) sinisterror: ´happinnes didnt last long when next day i heard about the cheat
- (12:12:44 PM) Noiree: order prizes were completely broken
- (12:13:11 PM) Noiree: I was told,someone sold underwork str brooches for 400g - destro prize was at max 40g
- (12:16:37 PM) Potato: i always thought order AH was way cheaper than the destro one
- (12:16:50 PM) Potato: found purple armor talis for like 10g
- (12:17:55 PM) Noiree: on destro you could barely sell lvl 19-23 gear for its suggested prize - on order you can easily add 1-2g to it and still sell it
- (12:18:12 PM) Noiree: lots of ppl were abusing the bug
- (12:18:33 PM) Noiree: and I think destro has a new gold bug atm
- (12:19:09 PM) Noiree: or just order... don't know https://github.com/WarEmu/WarBugs/issues/1762
- (12:19:54 PM) Potato: Aaah you could do that in t1 for like a week before the wipe
- (12:23:18 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (12:25:19 PM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (12:28:49 PM) Stillmatic left the room (quit: Ping timeout).
- (12:58:19 PM) GeneralAdmiral [webchat@181-87-93-178.pool.ukrtel.net] entered the room.
- (1:08:36 PM) GeneralAdmiral: Hey guys, is it a known issue to have a terrible UI lag when someone joins or leaves WB?
- (1:08:46 PM) aerogath [webchat@ip-109-90-217-250.hsi11.unitymediagroup.de] entered the room.
- (1:09:22 PM) Viny: in all likelihood it's something with your addons
- (1:09:36 PM) GeneralAdmiral: I've already tried without addons
- (1:09:52 PM) Viny: delete Interface and user folders
- (1:10:03 PM) Viny: or back them up at least
- (1:10:13 PM) Viny: delete cache too while you're at it
- (1:10:28 PM) MiguelSnake [webchat@143.Red-81-35-232.dynamicIP.rima-tde.net] entered the room.
- (1:10:50 PM) Viny: just a restart for the lag
- (1:11:07 PM) GeneralAdmiral: I just wanted to know if someone else had this problem so I won't dig it for nothing
- (1:11:38 PM) Viny: broader audience than IRC to get answers from
- (1:12:53 PM) aerogath left the room (quit: Quit: Page closed).
- (1:17:43 PM) Urielson [webchat@78.10.84.58] entered the room.
- (1:28:39 PM) Jojo^^ [~Jojo@Jojo1337.users.quakenet.org] entered the room.
- (1:37:10 PM) chumppi: what's happening
- (1:39:33 PM) TheShocker has changed the topic to: server's up || http://www.returnofreckoning.com/join.php
- (1:42:08 PM) Viny: guess not everyone made it backl
- (1:51:17 PM) Viny: ooh heh
- (1:51:23 PM) Viny: we score 700 easily on primetime
- (2:20:07 PM) chumppi: really? never seen it in two weeks I've been here
- (2:27:09 PM) Strzyga: https://drive.google.com/file/d/0BykHdjSTbDVraWx2UDlGUmRrSnM/view ha! my new lvl 1 char :P
- (2:39:58 PM) Viny left the room (quit: Quit: Page closed).
- (3:11:29 PM) MiguelSnake left the room (quit: Ping timeout).
- (3:22:38 PM) GeneralAdmiral left the room (quit: Quit: Page closed).
- (3:53:22 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (3:53:46 PM) Viny: streams up at http://www.twitch.tv/timber_bdx
- (4:03:11 PM) Alcor left the room (quit: Quit: Page closed).
- (4:43:39 PM) Azarael [Azarael@Azarael.users.quakenet.org] entered the room.
- (4:52:11 PM) Jojo^^ left the room (quit: Signed off).
- (4:52:41 PM) Azarael: hi
- (5:04:29 PM) Potato left the room (quit: Quit: Page closed).
- (5:05:53 PM) TheShocker: it's really foggy here atm, so I went outside with a flashlight and pretended it was a lightsaber
- (5:09:06 PM) Medulla left the room (quit: Quit: Page closed).
- (5:16:23 PM) Kulbuto left the room (quit: Quit: Page closed).
- (5:16:54 PM) sinisterror left the room (quit: Ping timeout).
- (5:17:15 PM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (5:42:43 PM) TheShocker: Noiree: are you close to the netherlands or is the fog just all over the place?
- (5:43:08 PM) Noiree: I live in northwester germany... and yes... the netherlands are about 30 mins away
- (5:43:42 PM) TheShocker: ah, figures then, I'm in the middle of the country
- (6:01:03 PM) Macavity left the room (quit: Signed off).
- (6:07:06 PM) sinisterror left the room (quit: EOF from client).
- (6:07:09 PM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (6:56:43 PM) Viny left the room (quit: Quit: Page closed).
- (7:17:36 PM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (7:19:43 PM) The topic for #martyrs_square is: server's up || http://www.returnofreckoning.com/join.php
- (7:19:43 PM) Topic for #martyrs_square set by TheShocker at 1:39:32 PM on 11/1/2015
- (7:30:51 PM) Strzyga left the room (quit: Quit: Page closed).
- (7:45:27 PM) Noiree left the room (quit: Read error: Connection reset by peer).
- (10:02:29 PM) Valnak: bolstering to 31 in scens now
- (10:08:56 PM) Secrets: finally had a chance to play this game last night
- (10:09:03 PM) Secrets: it's amazing how detailed the game is
- (10:21:32 PM) Shortarse [webchat@12.43.115.213] entered the room.
- (10:28:22 PM) Shortarse left the room (quit: Quit: Page closed).
- (10:44:29 PM) sinisterror left the room (quit: Ping timeout).
- (10:52:53 PM) Londo: did you play it when it was live?
- (11/2/2015 12:09:11 AM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (12:42:05 AM) The topic for #martyrs_square is: server's up || http://www.returnofreckoning.com/join.php
- (12:42:05 AM) Topic for #martyrs_square set by TheShocker at 1:39:32 PM on 11/1/2015
- (12:56:42 AM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (1:07:39 AM) The topic for #martyrs_square is: server's up || http://www.returnofreckoning.com/join.php
- (1:07:39 AM) Topic for #martyrs_square set by TheShocker at 1:39:32 PM on 11/1/2015
- (1:24:02 AM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (1:39:30 AM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (2:07:27 AM) The topic for #martyrs_square is: server's up || http://www.returnofreckoning.com/join.php
- (2:07:27 AM) Topic for #martyrs_square set by TheShocker at 1:39:32 PM on 11/1/2015
- (2:23:46 AM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (2:46:52 AM) The topic for #martyrs_square is: server's up || http://www.returnofreckoning.com/join.php
- (2:46:52 AM) Topic for #martyrs_square set by TheShocker at 1:39:32 PM on 11/1/2015
- (4:22:53 AM) Krumlok [webchat@208.148.21.95.dynamic.jazztel.es] entered the room.
- (4:29:27 AM) Krumlok left the room (quit: Quit: Page closed).
- (5:03:27 AM) Secrets left the room (quit: Ping timeout).
- (5:06:42 AM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (6:10:58 AM) Potato [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (6:39:24 AM) sinisterror left the room (quit: Read error: Connection reset by peer).
- (8:15:19 AM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (8:16:10 AM) sinisterror: hmm i cant press connect on launcher
- (8:16:19 AM) sinisterror: well i can but nothing happens? anye solutions
- (8:20:12 AM) Viny: sinisterror: restart the launcher ~3 times
- (8:23:40 AM) sinisterror: yeah it worked when i tried like 15 times and first time i tried without using admmininstrator rights it worked
- (8:52:39 AM) Rheina [webchat@79.107.237.183] entered the room.
- (8:54:37 AM) sinisterror: any know addons that cause lag or any addons that i should use for targeting and buffs etc, always used enemy and daocbuff but maybe theres something better
- (9:02:30 AM) sinisterror: yeah i think wsct caused somekindof pauses
- (9:02:35 AM) sinisterror: not sure if i remember right
- (9:04:22 AM) TheShocker: MGRemix too
- (9:06:34 AM) Rheina: just uninstalled wh, so bb guys and hf
- (9:07:04 AM) Rheina: i won't :P
- (9:07:21 AM) Rheina: apparently my account got also banned cause of that stupid event
- (9:07:39 AM) TheShocker: don't think anyone got banned for that, are you sure?
- (9:08:00 AM) TheShocker: people did get banned for a gold exploit
- (9:08:23 AM) TheShocker: you could buy a mount for 20g that sold for 60g to vendors
- (9:08:45 AM) Rheina: i got banned during the event
- (9:09:13 AM) Rheina: i was running as a chicken when suddently got killed by t1 ppl
- (9:09:28 AM) Rheina: then i saw a GM chat saying no t1 pets allowed
- (9:09:46 AM) Rheina: so since only pets didn't allowed i loged my t1 toon too
- (9:09:55 AM) Potato: anyone using that addon that allows u to place ur morales on action bars?
- (9:10:06 AM) TheShocker: think they ment put away your pets because they'll aggro on the chickens
- (9:10:08 AM) Rheina: and then got banned from forum for like 1 hour but after than my account was still banned for 2 days later
- (9:10:14 AM) TheShocker: and yeah, they could have communicated that better
- (9:10:59 AM) TheShocker: can you post on the forums?
- (9:11:05 AM) TheShocker: or is your account blocked there too?
- (9:11:25 AM) TheShocker: Potato: I know that there is one, not sure what it's called though
- (9:11:50 AM) Rheina: well then, since i know wh takes a lot lot time especialy for rr80 (whenever that will be released), i dont wanna risk all that time for some future stupid ban
- (9:12:11 AM) Rheina: i could log on forums but didn;t try to post
- (9:12:11 AM) TheShocker: Potato: viny uses it in his UI package, you could ask him
- (9:12:43 AM) TheShocker: you could try PMing Azarael, Rheina, and explain that you misunderstood the GM messages
- (9:13:25 AM) TheShocker: that's xyepp or wargrimnir on the forums
- (9:13:30 AM) Rheina: i think its too late now :) Just came here to say bb to some ingame friends if they were here
- (9:13:46 AM) TheShocker: you played on KA, didn't you?
- (9:14:03 AM) Rheina: and norn, my order was on KA and destro on norn
- (9:14:19 AM) TheShocker: I remember your name, had a BW on KA called magicthighs
- (9:15:09 AM) TheShocker: really don't think it's too late to petition the ban, but it's your call
- (9:15:39 AM) TheShocker: seen people post on the forum that tell the exact same story and aren't banned
- (9:16:18 AM) Rheina: well my ban from forums was for 1 hour, but when i tried to log in game even 2 days after, it said account was not active
- (9:17:16 AM) Potato: if u were banned, u wouldnt be able to log in on forums
- (9:17:27 AM) TheShocker: yeah, could be a bug even
- (9:19:04 AM) Viny: TheShocker: am now shocker, whats up
- (9:19:17 AM) Rheina: well its too late now : just uninstalled wh and changed my account mail and pass into random stuff. Maybe i ll try in the future with new account when t4 will get released. Not really in the mood now after that
- (9:19:24 AM) TheShocker: Potato was wondering which addon it is that lets you put morales on your action bars
- (9:19:51 AM) TheShocker: yeah, I understand Rheina, do hope you come back some time
- (9:19:51 AM) Rheina left the room (quit: Quit: Page closed).
- (9:20:16 AM) Viny: Potato: HotbarMorale, would you like a link?
- (9:20:48 AM) Viny: yes
- (9:21:25 AM) Viny: luffy you sneaky bastard
- (9:21:58 AM) TheShocker: LOL
- (9:22:15 AM) TheShocker: ahahahahahaha
- (9:22:45 AM) TheShocker: so glad I read the chat when you were streaming yesterday so I know what's going on XD
- (9:23:26 AM) Potato: i realised he was streaming during the end :P
- (9:23:46 AM) TheShocker: XD
- (9:24:17 AM) TheShocker: got to go shopping for dinner, laters
- (9:40:05 AM) sinisterror: wtt 200 order for 100 des gold, or order gold for destro liniments talismants potions etc
- (9:40:12 AM) sinisterror: i dont like + 10 talismans ;(
- (9:40:29 AM) sinisterror: who wants to duel endless duel with dps dok
- (10:06:59 AM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (10:07:45 AM) Elratie: aloha
- (10:10:08 AM) Elratie: less and less people in the chan
- (10:11:28 AM) TheShocker: yeah, until the next time the server dies, then we'll have 100 people here, and then slowly people leave again once the server's back up
- (10:14:37 AM) TheShocker: I think IRC is too old school for a lot of people
- (10:15:34 AM) TheShocker: yes
- (10:15:44 AM) TheShocker: because their hair is stupid and they need to get off my lawn
- (10:15:50 AM) TheShocker: :D
- (10:16:08 AM) Potato: haha another hater :P
- (10:16:22 AM) TheShocker: hate*
- (10:16:27 AM) TheShocker: that requires too much energy
- (10:16:51 AM) Potato: ask Viny, he can give you some pro tips :P
- (10:17:28 AM) TheShocker: he'll learn to not give a shit
- (10:18:24 AM) Sebbeleu: irc is pretty outdated in all honesty
- (10:18:24 AM) TheShocker: time to make some caponata, laters
- (10:28:54 AM) Sebbeleu: and here i am
- (10:32:53 AM) Potato: Viny ur warboard link doesnt work for me ;(
- (10:34:05 AM) Viny: shit maybe dropbox needs some permissions settings
- (10:34:36 AM) Potato: it doesnt load up
- (10:35:09 AM) Potato: ah it works if i log in on my dropbox acc
- (10:43:38 AM) TheShocker: irc isn't outdated, if it were outdated there'd be something new with the same functionality only better
- (10:43:47 AM) TheShocker: and that just doesn't exist
- (10:44:32 AM) Viny[laptop] [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (10:46:19 AM) TheShocker: http://o.aolcdn.com/hss/storage/midas/8ea3e9e8a02d384cd4ac61739db07c74/202902368/google-app-translation-test-2015-11-02-01.jpg heh
- (11:07:52 AM) TheShocker: anyone else get dcd?
- (11:12:31 AM) Niblolkik [webchat@88-106-190-100.dynamic.dsl.as9105.com] entered the room.
- (11:15:13 AM) Niblolkik left the room (quit: Quit: Page closed).
- (11:19:15 AM) Medulla [webchat@x4db05416.dyn.telefonica.de] entered the room.
- (11:29:46 AM) Viny[laptop]: eh? have I missed an orgy or something?
- (11:30:08 AM) Wara [webchat@188-167-32-85.dynamic.chello.sk] entered the room.
- (11:31:25 AM) Potato: you're too old for orgies
- (11:48:21 AM) Elratie: for orgies you are never too old
- (11:51:53 AM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (12:18:46 PM) Viny[laptop] left the room (quit: Ping timeout).
- (12:20:45 PM) Potato left the room (quit: Quit: Page closed).
- (12:22:26 PM) Jojo^^ [~Jojo@Jojo1337.users.quakenet.org] entered the room.
- (12:45:06 PM) TheShocker: anyone know what the shortcut key is to bring up the groups window in scenarios?
- (12:46:52 PM) Elratie: left key from 1
- (12:47:29 PM) TheShocker: ah, thanks, couldn't figure it out last night, and kept forgetting to ask here
- (1:01:24 PM) Viny: can't seem to be able to get in to the game
- (1:05:12 PM) Viny: TheShocker: can you get in ok?
- (1:08:29 PM) TheShocker: I got in, but the lag is insane again
- (1:08:52 PM) TheShocker: huge order blob attacking SL keep
- (1:09:13 PM) TheShocker: great, another pot wasted, that's the 4th today :|
- (1:09:52 PM) Minimeow [webchat@x5f726e86.dyn.telefonica.de] entered the room.
- (1:10:31 PM) TheShocker: got in again and was dcd after a few seconds, giving up for now
- (1:11:15 PM) Viny: yeah I noticed
- (1:11:59 PM) Viny: aaaaaand im dced
- (1:12:19 PM) Fluffmonster [webchat@55d4116f.access.ecotel.net] entered the room.
- (1:15:26 PM) Someone [webchat@dynamic-78-8-46-17.ssp.dialog.net.pl] entered the room.
- (1:18:52 PM) sullemunk [webchat@90-230-181-53-no72.tbcn.telia.com] entered the room.
- (1:24:52 PM) ***Someone is worried that something is happening somewhere...
- (1:26:29 PM) Fluffmonster: D : don't make me afraid of something!
- (1:27:55 PM) Jennifer [webchat@cable-188-2-89-25.dynamic.sbb.rs] entered the room.
- (1:28:12 PM) ***Someone welcomes you
- (1:28:14 PM) Yxskaft [webchat@c-bb44e155.05-6-6762673.cust.bredbandsbolaget.se] entered the room.
- (1:28:14 PM) blastoise_ [webchat@5356FC0B.cm-6-7d.dynamic.ziggo.nl] entered the room.
- (1:28:49 PM) Viny: I like how just earlier we were talking about how old IRC is
- (1:28:53 PM) Doktator [webchat@kbl-mdb5200.zeelandnet.nl] entered the room.
- (1:29:00 PM) Viny: and now that shit hit the fan in the server room somewhere
- (1:29:18 PM) Jennifer: i am playin atm
- (1:29:34 PM) Viny: any lag?
- (1:29:42 PM) Jennifer: for me
- (1:31:14 PM) sullemunk: massive disconnects
- (1:31:42 PM) Jennifer left the room (quit: Ping timeout).
- (1:31:52 PM) Doktator left the room (quit: Ping timeout).
- (1:31:54 PM) ***Someone might have even say we're being DDoS'd again, or something :(
- (1:32:27 PM) Viny: last time it was weekend primetime
- (1:32:41 PM) Viny: now its like monday evening
- (1:32:48 PM) Yxskaft: it's monday, it's the most evil time for sure
- (1:33:04 PM) Yxskaft: you get home from work, just want to chill with WAR, but no
- (1:33:29 PM) Viny: pop looked very low all day from what I've seen
- (1:33:47 PM) Viny: yeah
- (1:34:16 PM) sullemunk: even the realm information tracker is dead atm
- (1:34:21 PM) Someone: it's the punishment for all these stupid tank-bonkers on scenarios...
- (1:34:46 PM) Viny: w/e I only have like 300 other games I can play
- (1:57:45 PM) Yxskaft left the room (quit: Quit: Page closed).
- (1:59:21 PM) Fluffmonster: I love the smell of disconnects in the morning (evening).!
- (2:13:33 PM) Someone: you have a horrible taste in smells :/
- (2:18:05 PM) Zednar [webchat@c-67-183-208-132.hsd1.wa.comcast.net] entered the room.
- (2:18:08 PM) Kermos [webchat@p54B7744A.dip0.t-ipconnect.de] entered the room.
- (2:19:50 PM) Zednar left the room (quit: Quit: Page closed).
- (2:24:55 PM) Carrot [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (2:25:56 PM) Carrot: goddamit :P
- (2:26:11 PM) TheShocker: you will always be Potato from now on
- (2:27:08 PM) Carrot: but mum..i wanna be a carrot :(
- (2:31:44 PM) TheShocker: can you be a mirepoix instead?
- (2:32:03 PM) Wara left the room (quit: Quit: Page closed).
- (2:33:04 PM) Carrot: judging by the name, it must be something french, so no :P
- (2:33:27 PM) TheShocker: you racist against the french? :O
- (2:35:46 PM) Carrot: i was forced to learn french, cant help it :(
- (2:38:14 PM) Someone: Praize Tzeentch!!! My Chosen has been chosen!
- (2:38:16 PM) Someone: https://drive.google.com/file/d/0BykHdjSTbDVrSXFoSzllZHhBWTA/view?usp=sharing
- (2:38:24 PM) Someone: not sure if I'm happy about that mutation tho'
- (2:40:01 PM) Carrot: this is wrong on so many lvls
- (2:41:57 PM) Fluffmonster: wtf :')
- (2:46:08 PM) Fluffmonster: I can throw this in: http://fs5.directupload.net/images/151102/73mrxli5.jpg (a bit older though)
- (2:46:43 PM) Someone: Tzeentch is too strong in this one...
- (2:47:19 PM) Someone: https://drive.google.com/file/d/0BykHdjSTbDVrTHZJU1hTZ3F5RHc/view?usp=sharing my WE before mustation with my Chosen :/
- (2:52:17 PM) Viny left the room (quit: Quit: Page closed).
- (2:52:45 PM) Carrot: http://i.imgur.com/NsycCcB.jpg good ol' t1 :')
- (2:53:16 PM) BenzZ [webchat@82.246.144.154] entered the room.
- (2:54:48 PM) BenzZ left the room (quit: Quit: Page closed).
- (2:57:38 PM) Carrot: tu es francais? :O
- (2:57:48 PM) Torax [webchat@k9242.upc-k.chello.nl] entered the room.
- (2:59:08 PM) Niblolkik [webchat@88-106-190-100.dynamic.dsl.as9105.com] entered the room.
- (3:00:25 PM) Vallan [webchat@178.128.106.17.dsl.dyn.forthnet.gr] entered the room.
- (3:00:48 PM) TheShocker: un tres petit peut
- (3:00:57 PM) Torax left the room (quit: Quit: Page closed).
- (3:01:47 PM) Kolkuth [webchat@85-170-148-115.rev.numericable.fr] entered the room.
- (3:02:35 PM) Carrot: was in the NL twice this year
- (3:02:52 PM) ihasrabies [webchat@178-116-4-167.access.telenet.be] entered the room.
- (3:05:49 PM) TheShocker: where'd you go? and that's one of the first times I've heard someone praise dutch food btw ;)
- (3:06:02 PM) TheShocker: not saying there's not great dutch food, raw herring for instance is amazing
- (3:08:22 PM) ihasrabies: the only dutch dish i know is 'broodje kroket'
- (3:09:21 PM) TheShocker: yeah, those can be pretty good too, although the quality of kroketten has really gone down
- (3:10:16 PM) Carrot: omg it was so tasty
- (3:11:10 PM) TheShocker: yeah those are awesome
- (3:11:22 PM) TheShocker: I have to bring those to my family in the US whenever I go there
- (3:11:31 PM) Carrot: bitterballen as well :')
- (3:12:02 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (3:13:07 PM) TheShocker: yeah, those are the same as kroketten
- (3:13:13 PM) TheShocker: you should try speculaas some time too
- (3:13:25 PM) TheShocker: they're basically biscuits with what yanks call pumpkin spices
- (3:14:25 PM) TheShocker: they're great
- (3:14:37 PM) Carrot: got a friend living in Rotterdam so basically i tried almost everything :P
- (3:14:52 PM) TheShocker: ever had endives mash with bacon bits?
- (3:15:37 PM) Carrot: sweet memories
- (3:15:37 PM) TheShocker: amazingly good isn't it? XD
- (3:16:45 PM) Carrot: everybody was talking about dutch weed but i was so obsessed with the food :P
- (3:35:37 PM) Vallan left the room (quit: Quit: Page closed).
- (3:42:20 PM) blastoise_ left the room (quit: Quit: Page closed).
- (3:49:08 PM) TheShocker: yeah, shitloads
- (3:49:19 PM) TheShocker: thanks goes to your zerg at CoT
- (3:50:44 PM) TheShocker: the keep in ellyrion
- (3:51:27 PM) TheShocker: it's fine, got 2 ranks and 3 renown ranks off the bozos
- (3:51:36 PM) TheShocker: in about 10 minutes
- (3:54:20 PM) Merz [webchat@ip72-193-104-101.lv.lv.cox.net] entered the room.
- (3:54:42 PM) Merz: DC's everywhere i look
- (3:54:58 PM) Niblolkik: cant get charactor
- (3:58:48 PM) Niblolkik left the room (quit: Quit: Page closed).
- (4:12:13 PM) Viny left the room (quit: Quit: Page closed).
- (4:17:16 PM) TheShocker: don't bother trying to get in, you get dcd every 5 minutes anyway
- (4:18:15 PM) dike [webchat@70.41.27.77.dynamic.mundo-r.com] entered the room.
- (4:19:38 PM) ravz [webchat@host109-147-123-140.range109-147.btcentralplus.com] entered the room.
- (4:21:03 PM) ravz left the room (quit: Quit: Page closed).
- (4:23:44 PM) liryc [webchat@90.206.199.204] entered the room.
- (4:43:22 PM) Jojo^^ left the room (quit: Signed off).
- (4:56:44 PM) liryc left the room (quit: Ping timeout).
- (5:01:40 PM) Carrot left the room (quit: Quit: Page closed).
- (5:05:08 PM) Nurwar [webchat@AMontsouris-655-1-53-188.w90-44.abo.wanadoo.fr] entered the room.
- (5:07:12 PM) Nurwar left the room (quit: Quit: Page closed).
- (5:11:37 PM) Merz: login server is down D:
- (5:12:29 PM) TheShocker: try closing and opening the launcher a few times, it'll probably show as online again
- (5:12:47 PM) sinisterror left the room (quit: Ping timeout).
- (5:22:53 PM) Kolkuth left the room (quit: Quit: Page closed).
- (5:32:15 PM) asdasd [webchat@223.Red-83-41-230.dynamicIP.rima-tde.net] entered the room.
- (5:32:59 PM) asdasd: launched dodnt work
- (5:36:25 PM) asdasd: please help me
- (5:36:31 PM) ***asdasd slaps Merz around a bit with a large fishbot
- (5:37:49 PM) asdasd: ?????????????????????????????????????????????????????
- (5:38:00 PM) asdasd: IM BEING MURDERED
- (5:41:17 PM) TheShocker: yeah, more people are having problems, no idea what's going on
- (5:44:40 PM) TheShocker has changed the topic to: login server may be down, not saying it's aliens, but... ALIENS || http://returnofreckoning.com/join.php
- (5:47:41 PM) Zednar [webchat@c-67-183-208-132.hsd1.wa.comcast.net] entered the room.
- (5:48:14 PM) Zednar left the room (quit: Quit: Page closed).
- (5:51:21 PM) TommyB [webchat@68-184-116-252.dhcp.smyr.ga.charter.com] entered the room.
- (5:51:48 PM) TommyB: strange that some people can log while others cant
- (5:52:43 PM) TheShocker: earlier on I had problems loggin in too, closing and reopening the launcher a few times fixed it
- (5:52:59 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (5:53:00 PM) TheShocker: it's probably related to the DDoS, protection dropping legitimate traffic
- (5:53:56 PM) TheShocker: not sure, give it a go
- (6:03:43 PM) Nom [webchat@124-170-176-4.dyn.iinet.net.au] entered the room.
- (6:07:46 PM) ihasrabies left the room (quit: Quit: Page closed).
- (6:08:08 PM) Fluffmonster left the room (quit: Ping timeout).
- (6:08:42 PM) TommyB: nope, been trying on and off for an hour
- (6:08:53 PM) TheShocker: it's definitely aliens if you ask me
- (6:10:26 PM) Nom: has anyone been able to get on in the last hour ?
- (6:11:35 PM) TheShocker: no idea, haven't tried, been watching tv
- (6:32:33 PM) zEDNAR [webchat@c-67-183-208-132.hsd1.wa.comcast.net] entered the room.
- (6:33:04 PM) zEDNAR left the room (quit: Quit: Page closed).
- (6:40:25 PM) Merz left the room (quit: Quit: Page closed).
- (6:42:42 PM) TommyB left the room (quit: Ping timeout).
- (6:49:46 PM) asdasd: just had to restart a couple times
- (7:04:24 PM) TheShocker: lag doesn't seem so bad atm
- (7:06:35 PM) sullemunk left the room (quit: Quit: Page closed).
- (7:10:15 PM) Zednar [webchat@c-67-183-208-132.hsd1.wa.comcast.net] entered the room.
- (7:11:48 PM) Kermos left the room (quit: Quit: Page closed).
- (7:12:55 PM) Zednar left the room (quit: Quit: Page closed).
- (7:42:40 PM) Nom left the room (quit: Quit: Page closed).
- (7:44:04 PM) Viny left the room (quit: Quit: Page closed).
- (8:08:41 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (8:15:58 PM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (8:55:07 PM) daela left the room (quit: Ping timeout).
- (9:06:50 PM) Viny left the room (quit: Ping timeout).
- (9:20:18 PM) sinisterror left the room (quit: Ping timeout).
- (9:31:15 PM) Medulla left the room (quit: Ping timeout).
- (9:33:48 PM) asdasd left the room (quit: Ping timeout).
- (9:35:35 PM) Minimeow left the room (quit: Quit: Page closed).
- (10:16:51 PM) Viny[laptop] [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (10:23:36 PM) daela [~daela@172-15-218-187.lightspeed.gnvlsc.sbcglobal.net] entered the room.
- (10:32:51 PM) Viny[laptop] left the room (quit: Ping timeout).
- (10:34:44 PM) Someone left the room (quit: Quit: Page closed).
- (10:45:41 PM) dike left the room (quit: Quit: Page closed).
- (11:59:20 PM) Macavity left the room (quit: Signed off).
- (11/3/2015 12:25:31 AM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (1:10:06 AM) sinisterror left the room (quit: Ping timeout).
- (1:15:04 AM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (1:30:45 AM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (2:38:11 AM) The topic for #martyrs_square is: login server may be down, not saying it's aliens, but... ALIENS || http://returnofreckoning.com/join.php
- (2:38:11 AM) Topic for #martyrs_square set by TheShocker at 5:44:40 PM on 11/2/2015
- (3:42:42 AM) sinisterror left the room (quit: Ping timeout).
- (3:42:54 AM) sinisterror [sinisterro@87-100-159-230.bb.dnainternet.fi] entered the room.
- (4:24:09 AM) Londo left the room (quit: Quit: Page closed).
- (5:01:18 AM) sinisterror left the room (quit: Read error: Connection reset by peer).
- (6:56:51 AM) Cucumber [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (7:01:46 AM) Cucumber left the room (quit: Quit: Page closed).
- (7:04:16 AM) TheShocker: ugh, there's some fucking retarded people playing this game
- (7:12:21 AM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (7:13:56 AM) Macavity [~Macavity@Macavity.users.quakenet.org] entered the room.
- (7:33:48 AM) TheShocker: someone opens a wb, tells people to join, then seemingly kicks random people (think they might not have been rank 26, but he kicked almost all of the healers too), has all the healers that remain in the same group, and refuses to listen to anyone
- (7:44:39 AM) Viny: solution: open your own wb and manage it properly
- (8:00:44 AM) Tissue [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (8:13:52 AM) TheShocker: I'm not running no pug wb
- (8:56:35 AM) Viny: I thought of it
- (8:56:45 AM) Viny: I even got a ts server running for it
- (9:20:27 AM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (9:33:46 AM) Viny: hey Elratie
- (9:54:06 AM) Elratie: seems most player wait for T3
- (10:07:59 AM) Viny: I still have 5rr to murder before I get my 3d tactic slot
- (10:08:17 AM) Viny: tried farming a bit today but these fucking rp warbands are a fucking nightmare
- (10:58:56 AM) Tissue: suzu got banned? :(
- (10:59:29 AM) Azarael [Azarael@Azarael.users.quakenet.org] entered the room.
- (11:01:51 AM) TheShocker: apparently, Tissue
- (11:02:15 AM) TheShocker: Viny: please send this to luffy: https://www.youtube.com/watch?v=bZJXWkWeS2k
- (11:02:36 AM) TheShocker: oh wait, Tissue, that's for you :P
- (11:04:02 AM) TheShocker: :P
- (11:06:35 AM) Tissue: you confuse me with someone else, im Tissue :P
- (11:06:53 AM) TheShocker: tu sei la patata. se ti parlo la tua voce, mi risponde stranamente con accento straniero
- (11:07:40 AM) Tissue: my god, how many languages do u speak :P
- (11:08:14 AM) TheShocker: I speak 2 well and about 6 really badly
- (11:09:33 AM) TheShocker: although, I did know what trockenproviant meant earlier on XD
- (11:09:43 AM) TheShocker: which is not a common word XD
- (11:09:57 AM) TheShocker: Suzu = asuzu, or azuzu, not sure, a sorc
- (11:10:22 AM) TheShocker: oh hey Azarael, didn't notice you joining
- (11:10:45 AM) Elratie: ah k never saw ingame
- (11:11:10 AM) Azarael: hi
- (11:11:54 AM) TheShocker: he's from the US though, so not the same timezone
- (11:17:39 AM) Elratie: Hi Aza
- (11:19:37 AM) Elratie: so what did 'he/she/it' do? burnt some witches? cheated his wife? exploited some gold from items? killed player with one shot? traveled between tima and space?
- (11:19:44 AM) TheShocker: loads of spam on the forums suddenly
- (11:20:07 AM) Viny: it's just this one idiot trolling his two threads
- (11:20:24 AM) Viny: although I do have to admit I haven't seen suzu in a while
- (11:20:35 AM) Viny: would be shit if he got banned, he ran a tight crew
- (11:20:57 AM) Elratie: yeah just looking on page to look if there is a news, the people are just gotten shit and sickening to the brain
- (11:21:29 AM) Elratie: good old T1 times :)
- (11:21:42 AM) TheShocker: running a tight crew is not an excuse if you're exploiting though
- (11:21:47 AM) Viny: suzu is taking a break and he just got free publicity for his UI and stream
- (11:22:59 AM) Viny: I don't imagine Azarael would confirm or deny, there's a reason they keep ban lists private
- (11:23:40 AM) Viny: ban wave post on the front page is Thu Oct 29, 2015 7:19
- (11:23:55 AM) Viny: suzus profile says Last visited:Sun Nov 01, 2015 3:12 pm
- (11:24:21 AM) Viny: it's called deduction
- (11:24:22 AM) Elratie: the questions was more for tissue since he brought it up with suzu
- (11:24:38 AM) Viny: I think he just meant the forums
- (11:24:46 AM) TheShocker: tissue's real name is potato
- (11:25:45 AM) TheShocker: Azarael: last week when I had a few beers I made a witch elf called Dicksucking, is that allowed?
- (11:25:52 AM) TheShocker: he last name was supposed to be Ducklips
- (11:26:19 AM) Tissue: http://i.imgur.com/t1tb9EQ.jpg?1
- (11:28:39 AM) Tissue: potato-chan :3
- (11:29:47 AM) Azarael: considered asking Suzu directly?
- (11:30:15 AM) TheShocker: try his twitch
- (11:30:17 AM) Viny: and if he is banned then asking on forums wouldn't be conclusive
- (11:31:19 AM) Viny: I'm afraid to ask :<
- (11:31:35 AM) Tissue: hahahaha
- (11:32:41 AM) TheShocker: think I'm going to switch my engi to grenadier instead of rifleman
- (11:32:56 AM) TheShocker: at least while leveling, getting so much renown from tagging people with aoe XD
- (11:33:16 AM) TheShocker: they're fun
- (11:34:46 AM) Tissue: i have a low lvl one, so boring >.<
- (11:35:54 AM) TheShocker: nah, they debuff their own damage type (like BWs can with the ignite tactic), they're pretty good if you know what you're doing
- (11:36:20 AM) TheShocker: only they don't need a tactic for it, they have an aoe grenade that does it for them
- (11:36:36 AM) Viny: I wish puddle on shammy lowered all resists
- (11:36:43 AM) Viny: would be so nice for double sorc premades
- (11:36:49 AM) TheShocker: that + armor debuffs is hilarious in t1, you can see the tanks melt before your eyes
- (11:37:12 AM) Tissue: still one of the most boring classes :P
- (11:37:14 AM) TheShocker: chosen have a spirit debuff
- (11:37:32 AM) TheShocker: an aura that does it, great for sorc bombing
- (11:38:57 AM) Tissue: screw chosen, get a BO to punt ppl out of the aoe :')
- (11:41:37 AM) TheShocker: Exile
- (11:41:49 AM) Viny: path of exile is an awesome game
- (11:41:55 AM) TheShocker: best punt in the game
- (11:42:11 AM) Viny: I such at it badly but my god do I love playing it
- (11:42:36 AM) Elratie: Shocker try Pricksucking
- (11:44:52 AM) TheShocker: http://www.returnofreckoning.com/armory.php?character_id=176906&character_name=Dicksucking too late
- (11:45:33 AM) TheShocker: 'you were killed by dicksucking', that's got to hurt, no?
- (11:45:45 AM) Viny: aaaaaaaand that's enough internet for today
- (11:46:14 AM) Tissue: HAHAHAHAHAH
- (11:55:40 AM) TheShocker: Azarael: any idea what caused the massive lag and disconnects yesterday btw?
- (11:56:13 AM) TheShocker: coincided with a huge destro blob attacking CoT
- (12:00:27 PM) Viny: ow max spotted on the forums
- (12:01:05 PM) Tissue: there are no longer brackets on t2 scs?
- (12:02:20 PM) Azarael: t2 bolster is 26
- (12:02:27 PM) Azarael: because of the current level caps
- (12:02:59 PM) TheShocker: ahh, is the lvl 31 bolster only in the t3 sc that you added?
- (12:04:32 PM) Azarael: you should get 31 bolster in all scenarios if you're in the t3 bracket
- (12:18:15 PM) TheShocker: think that would just make people with high end tallies and gear even more OP
- (12:25:37 PM) Londo [webchat@96.53.92.146] entered the room.
- (12:27:19 PM) Fluffmonster [webchat@55d403da.access.ecotel.net] entered the room.
- (12:30:38 PM) chaser_ [webchat@94.234.170.209] entered the room.
- (12:31:08 PM) Elratie: hi
- (12:31:37 PM) chaser_: Where ti pick up the quest for killing 150 enemy players on the Order side?
- (12:36:20 PM) Viny: order or destro
- (12:37:02 PM) chaser_: Im on a bloody iphone at the moment so ill try to answer the q again in a while one a cpu so i can idke for the answer. Peace good ppl
- (12:37:12 PM) chaser_: Viny
- (12:37:19 PM) chaser_: Order side
- (12:37:48 PM) chaser_: Peace
- (12:39:48 PM) chaser_ left the room (quit: Ping timeout).
- (12:43:39 PM) Elratie: Trollcountry Warcamp west exit
- (12:48:30 PM) chaser_ [webchat@h75n9-m-rg-a13.ias.bredband.telia.com] entered the room.
- (12:49:12 PM) chaser_: here again
- (12:55:29 PM) Elratie: wb
- (12:55:46 PM) Elratie: <Elratie> Trollcountry Warcamp west exit/ your quest
- (12:57:28 PM) chaser_: didn't finish the question before u answered :)
- (1:01:30 PM) Viny: the lag is real
- (1:08:41 PM) chaser_: is it still like yesterday when u got DC'ed after 12 secs?
- (1:10:07 PM) Viny: just lag
- (1:18:23 PM) chaser_: yeah, it is way better then last night
- (1:19:49 PM) TheShocker: I thought it was hilarious, destro showed up with a ginormous blob at CoT which had maybe 10-15 people in it max and got wrecked XD
- (1:19:59 PM) TheShocker: got 2 levels and 3 rr out of it
- (1:25:30 PM) Viny: I was getting reat fps at the keep earlier
- (1:29:12 PM) TheShocker: just falafel
- (1:29:52 PM) chaser_: where u from Shocker?
- (1:31:58 PM) TheShocker: nah, I'm dutch
- (1:37:32 PM) Elratie left the room (quit: Quit).
- (1:38:53 PM) TheShocker: ....no?
- (1:39:23 PM) TheShocker: oh goddammit
- (1:40:08 PM) Viny: I've been thinking about doing gear giveaways on stream
- (1:40:29 PM) Viny: but idk how much I'll be streaming these days so w/e
- (1:44:04 PM) Tissue: WTB server restart, paying well
- (1:47:43 PM) TheShocker: restart won't fix anything as long as people keep zerging
- (1:48:47 PM) Zanilos [webchat@97e7c48a.skybroadband.com] entered the room.
- (1:49:12 PM) Strzyga [webchat@78.8.46.17] entered the room.
- (1:49:19 PM) Strzyga: :(
- (1:53:20 PM) Merz [webchat@ip72-193-104-101.lv.lv.cox.net] entered the room.
- (1:57:55 PM) Strzyga: is there a list of confirmed/working renown abilities available somewhere, on forum maybe?
- (2:04:19 PM) Viny: Strzyga: here you go http://www.returnofreckoning.com/forum/viewtopic.php?f=2&t=6355&hilit=renown+abilities#p69956
- (2:06:29 PM) Strzyga: deft defender and reflexes <3
- (2:18:47 PM) Tissue: is it still laggy? anyone on?
- (2:21:40 PM) Tissue: sad panda :(
- (2:39:47 PM) Tissue: seems less laggy to me
- (2:40:16 PM) Nurwar [webchat@AMontsouris-655-1-53-188.w90-44.abo.wanadoo.fr] entered the room.
- (2:43:54 PM) Nurwar left the room (quit: Quit: Page closed).
- (2:52:06 PM) Strzyga: bad jokes don't go unnoticed by server
- (2:52:08 PM) Minimeow [webchat@x5f734d1a.dyn.telefonica.de] entered the room.
- (2:52:31 PM) Strzyga: I said on /advice 'WTB lag resistance amulets' and almost instantly crashed
- (2:53:16 PM) Tissue: sign from God
- (2:53:25 PM) Merz: praise the raven gods
- (2:53:26 PM) Medulla [webchat@x590d9883.dyn.telefonica.de] entered the room.
- (2:53:27 PM) Strzyga: I guess I'll just shut up from now on :/
- (2:55:27 PM) Merz: i cant connect ;-; is it still restarting?
- (2:55:32 PM) Strzyga: at least I'll stop woith bad puns about the lag, server hamster god noticed me :(
- (2:57:12 PM) Merz: i cant connect ;-;
- (2:57:45 PM) Strzyga: happens during server reboots y'know
- (2:58:03 PM) Viny: d
- (2:59:42 PM) Merz: inb4 skips t3 and goes straight to t4
- (3:01:07 PM) Macavity` [~Macavity@Macavity.users.quakenet.org] entered the room.
- (3:03:08 PM) Macavity left the room (quit: Ping timeout).
- (3:11:57 PM) Kolkuth [webchat@85-170-148-115.rev.numericable.fr] entered the room.
- (4:43:55 PM) TheShocker: found a great guild btw, Viny :)
- (4:47:19 PM) Viny: if you have a 6 man going now would be the time to queue :)
- (5:03:45 PM) TheShocker: just logged off, we were roaming with a pretty random setup, had a lot of fun though
- (5:04:26 PM) TheShocker: rp, wp, sl, sw, my bw and one more I forgot
- (5:04:36 PM) TheShocker: went really well though :D
- (5:13:05 PM) Merz left the room (quit: Quit: Page closed).
- (5:14:43 PM) TheShocker: good to find a group of people who know not to follow a 'retreat', and how to roam around a bit
- (5:14:54 PM) TheShocker: think we pissed off epo/eepo's group though XD
- (5:15:01 PM) TheShocker: got accused of running a bombing group
- (5:15:36 PM) TheShocker: we did outnumber them, tbh
- (5:15:55 PM) TheShocker: should ask them for a 6v6 whenever I level my kotbs
- (5:16:13 PM) TheShocker: we could use an IB too, guess I'll level one of those too :P
- (5:16:52 PM) Viny: come mod on the channel if you're not playing :)
- (5:17:13 PM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (5:26:28 PM) The topic for #martyrs_square is: login server may be down, not saying it's aliens, but... ALIENS || http://returnofreckoning.com/join.php
- (5:26:28 PM) Topic for #martyrs_square set by TheShocker at 5:44:40 PM on 11/2/2015
- (5:50:32 PM) Kolkuth left the room (quit: Quit: Page closed).
- (6:03:29 PM) Fluffmonster left the room (quit: Quit: Page closed).
- (6:04:53 PM) TheShocker: was fun to watch again, viny
- (6:05:12 PM) Viny: ye it got better towards the end
- (6:05:24 PM) Viny: shitloads of buffering at the start tho, no clue why
- (6:05:52 PM) TheShocker: was the game really choppy for you too at some points?
- (6:06:50 PM) Viny: stutters
- (6:11:43 PM) TheShocker: anyone got a gfx card recommendation? time to upgrade again
- (6:12:45 PM) Tissue: its that time of the year? :P
- (6:13:01 PM) Viny: dx 12 looks very tasty
- (6:13:07 PM) Viny: I got fucked over with this nvidia lock
- (6:13:22 PM) TheShocker: nvidia does dx12 too though
- (6:13:59 PM) Viny: it will be destroyed in benchmarks
- (6:13:59 PM) TheShocker: tbh I had horrible experiences with amd cards
- (6:19:16 PM) Zanilos left the room (quit: Ping timeout).
- (6:28:02 PM) Viny: well I'm off TheShocker, thanks for stopping by on the channel
- (6:29:24 PM) Viny left the room (quit: Quit: Page closed).
- (6:29:29 PM) TheShocker: think I'll call it a night too, tired as hell
- (6:30:22 PM) chaser_ left the room (quit: Quit: Page closed).
- (6:35:40 PM) Strzyga left the room (quit: Quit: Page closed).
- (7:41:51 PM) Londo left the room (quit: Quit: Page closed).
- (8:49:25 PM) Medulla left the room (quit: Ping timeout).
- (8:49:41 PM) Genisaurus [webchat@c-69-250-44-136.hsd1.va.comcast.net] entered the room.
- (8:50:00 PM) Genisaurus left the room (quit: Quit: Page closed).
- (9:03:16 PM) Londo [webchat@96.53.92.146] entered the room.
- (9:15:15 PM) TheShocker: POTATO!
- (9:17:05 PM) Tissue left the room (quit: Ping timeout).
- (10:27:57 PM) Macavity` left the room (quit: Signed off).
- (11:17:07 PM) Minimeow left the room (quit: Ping timeout).
- (11/4/2015 2:02:50 AM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (3:12:39 AM) The topic for #martyrs_square is: login server may be down, not saying it's aliens, but... ALIENS || http://returnofreckoning.com/join.php
- (3:12:39 AM) Topic for #martyrs_square set by TheShocker at 5:44:40 PM on 11/2/2015
- (3:34:39 AM) Strzyga [webchat@dynamic-78-8-46-17.ssp.dialog.net.pl] entered the room.
- (4:57:38 AM) Strzyga left the room (quit: Ping timeout).
- (7:09:11 AM) Teddybear [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (7:29:10 AM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (7:43:02 AM) Azarael [~Azarael@cpc65021-brad20-2-0-cust146.17-1.cable.virginm.net] entered the room.
- (7:43:02 AM) Azarael left the room (quit: Registered).
- (7:43:02 AM) Azarael [~Azarael@Azarael.users.quakenet.org] entered the room.
- (7:46:42 AM) TheShocker: Viny: you disgust me, grouping up with sekundus
- (7:47:06 AM) Azarael: diligent in his quest of ganking random order with a 6man
- (7:47:30 AM) TheShocker: runs away as soon as the going gets tough
- (7:48:41 AM) TheShocker: no lowbie low enough to gank
- (7:48:54 AM) Azarael: He truly understands the spirit of WAR
- (7:49:16 AM) Azarael: and if those lowbies will insult him by existing in his presence
- (7:51:11 AM) Viny: give me a break
- (7:51:19 AM) Viny: m just trying to score some renown :<
- (7:51:23 AM) TheShocker: NO BREAKS
- (7:51:29 AM) Viny: fucking get your own squad then
- (7:51:52 AM) TheShocker: yeah, so much renown in killing single level 15 order :P
- (7:52:02 AM) Viny: maybe you are 15
- (7:52:08 AM) Viny: get the fo out of rvr lake then? :D
- (7:52:28 AM) TheShocker: blame Azarael for raising the level cap in t2 :P
- (7:53:03 AM) TheShocker: what are you supposed to do before level 26? PVE? kill champ rats? lol
- (7:53:15 AM) Azarael: do I hear the sound of falling tears?
- (7:53:28 AM) TheShocker: nah, that's vomit falling on the ground
- (7:53:34 AM) Viny: az wth happened to anywhere traine
- (7:53:41 AM) Viny: was it disabled or did something break
- (7:54:26 AM) Azarael: AT should work for specializing
- (7:54:36 AM) Viny: but why? :<
- (7:54:50 AM) Azarael: off to the keep with ya :D
- (7:55:40 AM) TheShocker: that didn't work on live either
- (7:57:07 AM) TheShocker: got accused of running a bombing group by Epo's team yesterday XD
- (7:57:10 AM) Viny: and I'm in dps gear atm, dpsing like a boss
- (7:57:23 AM) Viny: don't tell anyone or they'll kick me out of the guild
- (7:57:26 AM) TheShocker: we were running without any tanks, one person was level 20, and I was the only BW
- (7:58:42 AM) Viny: how many people do you have in BV right now?
- (8:00:04 AM) TheShocker: there was virtually nobody there when I left
- (8:00:16 AM) TheShocker: think I had 400% AAO when you were roaming
- (8:02:14 AM) TheShocker: there's just nothing to do, destro keeps traveling in a huge server crushing blob
- (8:05:58 AM) Viny: yeah we had a strong group at stk earlier
- (8:06:38 AM) Viny: website says only 4% pop advantage but it's different for our bracket probably
- (8:09:04 AM) Teddybear left the room (quit: Quit: Page closed).
- (8:09:14 AM) TheShocker: Azarael: there are a couple dozen altars of the raven floating in the air at the docks in altdorf XD
- (8:09:30 AM) Azarael: how rageworthy
- (8:11:04 AM) TheShocker: nah, even less rageworthy than someone calling latency ping
- (8:12:53 AM) Azarael: but it's such a common usage, especially in a gaming context
- (8:13:05 AM) Azarael: (UT2004, for example, displays it as PING: x in the scoreboard)
- (8:13:14 AM) Azarael: you know how language evolves
- (8:13:23 AM) TheShocker: heh, actually agree with you on that
- (8:13:25 AM) Azarael: usages which are strictly wrong can adopt the correct meaning through sheer usage
- (8:13:33 AM) TheShocker: but I'm old, so I get to be annoyed by it XD
- (8:13:40 AM) Viny: TheShocker: do you remember some guy in irc asked about lag spikes while in warband
- (8:13:47 AM) TheShocker: nah
- (8:13:55 AM) TheShocker: please don't bother Azarael XD
- (8:14:14 AM) TheShocker: or the last one that did it anyway
- (8:14:31 AM) Viny: I'm having that now by the looks of it :/
- (8:14:50 AM) TheShocker: are you in a warband zerging or is there actual opposition?
- (8:15:18 AM) Viny: because, you know, very fun to do that apparently
- (8:16:50 AM) TheShocker: also, Azarael, UT2004 is still an awesome game
- (8:17:00 AM) TheShocker: actual still play it regularly
- (8:17:15 AM) Viny: we just wiped
- (8:17:23 AM) Viny: he streams sometimes
- (8:17:31 AM) TheShocker: well that explains your lag
- (8:17:49 AM) TheShocker: and shame, could have used the shitload of xp/rp defending
- (8:20:59 AM) Azarael: mostly when I play UT2004 now it's on the mod servers we run
- (8:23:06 AM) TheShocker: I play with a very specific set of mods usually
- (8:23:12 AM) TheShocker: forget the names, hold on, I'll check
- (8:24:35 AM) TheShocker: and a translocator mutator that makes it act like in original ut
- (8:25:17 AM) TheShocker: basically just high damage but not instagib level
- (8:25:36 AM) TheShocker: and some really cool guns, biogel assault rifle with scope etc
- (8:25:45 AM) TheShocker: ok now I need to play some ut2004 :P
- (8:26:33 AM) TheShocker: used to host a server with friends, a long long time ago, using elitemachines
- (8:27:01 AM) Azarael: our servers are for assault/race, ballistic weapons, invasion (bw again) and some miscellaneous mods like chaosut
- (8:27:01 AM) Macavity [~Macavity@Macavity.users.quakenet.org] entered the room.
- (8:27:11 AM) Azarael: I mostly played Assault in the game's heyday, with some TAM
- (8:27:23 AM) Azarael: hard to get games of AS these days tho
- (8:27:26 AM) Azarael: so I mostly play ballistic weapons
- (8:34:31 AM) TheShocker: I really liked onslaught too
- (8:35:29 AM) Azarael: yup
- (8:35:52 AM) TheShocker: especially with ridiculously powerful weapons, and on that desert map with the ruins
- (8:36:10 AM) TheShocker: seriously high pace, match decided in 10 seconds sometimes
- (8:47:21 AM) TheShocker: Azarael: you guys know that when you get killed, log off, then log on again later you're alive in the spot where you died, right?
- (8:50:45 AM) TheShocker: ah ok, keep seeing that abused by the same people checking if keeps are still defended
- (8:54:34 AM) Viny: turned out suzu was banned after all
- (8:54:40 AM) Viny: I talked to a guy from fc yesterday
- (8:56:13 AM) Azarael: thought I'd dropped enough hints
- (8:57:34 AM) Viny: I didn't want to believe :<
- (8:58:05 AM) Viny: it sucks big time
- (9:00:35 AM) Viny: I wonder how many order players were banned of those 70
- (9:02:05 AM) TheShocker: none*
- (9:02:17 AM) TheShocker: Azarael is order-biased, remember?
- (9:02:40 AM) Azarael: but the GM corps handles bans
- (9:02:48 AM) Azarael: so I guess that old chestnut won't work here ^_^
- (9:02:53 AM) TheShocker: oh there you go again with your facts -_-
- (9:03:05 AM) Azarael: of the players whose account names I recognised from the forum
- (9:03:13 AM) Azarael: there were an equal number on order and destruction who were banned.
- (9:04:16 AM) Viny: ow is the new sp episode out today?
- (9:08:00 AM) TheShocker: I remember when they were still funny
- (9:08:50 AM) Viny: they've been running out of steam lately
- (9:09:02 AM) Viny: now they've just been around for too long
- (9:19:31 AM) Sebbeleu: they even parody simpsons for running too long, lol
- (9:21:22 AM) TheShocker: sekundus running away from an equal number of lowbies again, w00t, skill XD
- (9:23:24 AM) TheShocker: choppa was killing newly created characters in the starting zone -_-
- (9:23:31 AM) TheShocker: bet it's the same person who did that a few days back
- (9:23:52 AM) TheShocker: name was cutechoppa in this case, Azarael, if you care ;)
- (9:24:15 AM) TheShocker: haven't seen it personally, just saw people complain in /ad
- (9:24:46 AM) Azarael: well, kills on Order at the starting zone will show in the rvr ticker as from Grimmenhagen
- (9:24:58 AM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (9:25:13 AM) TheShocker: thanks for taking a look, really appreciate it :)
- (9:26:33 AM) TheShocker: hey Elratie :)
- (9:26:49 AM) Elratie: look at what? ^^
- (9:28:02 AM) TheShocker: oh there was a choppa at the starting zone killing new players
- (9:28:10 AM) TheShocker: or is, he's still there apparently
- (9:28:40 AM) TheShocker: back in the day when there were free trial t1 twinks it was a serious problem sometimes
- (9:31:29 AM) TheShocker: omg the advanced renown trainer addon is awesome
- (9:31:47 AM) TheShocker: Azarael: any way to incorporate addons into the game for you btw? was wondering about that
- (9:33:11 AM) Viny: what does it do TheShocker
- (9:36:53 AM) TheShocker: hold on, I'll take a screenshot
- (9:37:09 AM) TheShocker: Azarael: I mean incorporate an addon in the game itself, is that at all possible?
- (9:37:45 AM) Azarael: I don't understand the point of the question
- (9:41:14 AM) TheShocker: maybe it was a stupid one XD
- (9:45:05 AM) Viny: what determines how much renown you get on keep take
- (9:50:00 AM) Emptyglass [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (9:51:36 AM) TheShocker: I'll take that screenshot in a bit Viny, got to get to a keep first
- (9:54:58 AM) TheShocker: http://dl.dropbox.com/u/3281245/Gorram_004.jpg
- (9:55:03 AM) TheShocker: http://dl.dropbox.com/u/3281245/Gorram_005.jpg
- (9:55:06 AM) TheShocker: http://dl.dropbox.com/u/3281245/Gorram_006.jpg
- (9:55:08 AM) TheShocker: http://dl.dropbox.com/u/3281245/Gorram_007.jpg
- (9:55:24 AM) TheShocker: it is indeed
- (9:55:53 AM) Viny: what was it called again
- (10:07:48 AM) Elratie: <@TheShocker> omg the advanced renown trainer addon is awesome
- (10:08:20 AM) TheShocker: that's why I asked Azarael if maybe that could be made the default, but yeah ,everyone can just install the addon really
- (10:09:42 AM) TheShocker: oh now I see XD
- (11:09:42 AM) Viny: how come postern at spites is still broekn
- (11:18:58 AM) TheShocker: BV and ellyrion keeps too Viny
- (11:19:31 AM) Viny: someone in advice said CoT works fine
- (11:24:27 AM) Emptyglass: order AH is so damn expensive
- (11:24:34 AM) Emptyglass: it brings a tear to my eye :')
- (11:36:47 AM) Elratie: potions are still under 2g or did the price rise?
- (11:37:10 AM) TheShocker: no idea, I make my own luckily
- (11:37:36 AM) Emptyglass: 10g for a stack of useless willp pots :')
- (11:38:15 AM) Emptyglass: im too lazy to make my own :(
- (11:55:19 AM) Viny: my god
- (11:55:24 AM) Viny: where have you been all my life
- (12:03:00 PM) Elratie: lol i pushed down the pot price to 2g down a few weeks back
- (12:11:20 PM) Emptyglass: guys where is the name registrar on order? :(
- (12:11:52 PM) Azarael: there are a pair of gates in the north section of the main square you come into, after leaving the flight master. go through them and turn right, heading up the stairs.
- (12:16:00 PM) Emptyglass: aaaah ty=D
- (12:35:18 PM) Elratie: http://www.worldoffishing.net/ awesome this is what we needed!
- (12:38:25 PM) TheShocker: 'travel around the worlds' yeah, all the worlds
- (12:51:42 PM) Viny: chillest place i've ever went fishing in sweden
- (12:52:07 PM) TheShocker: lake?
- (12:52:56 PM) Viny: better yet
- (12:53:18 PM) Viny: http://imgur.com/BVOKME3
- (12:53:54 PM) TheShocker: your country looks photoshopped
- (1:22:10 PM) Azarael` [Azarael@cpc65021-brad20-2-0-cust146.17-1.cable.virginm.net] entered the room.
- (1:22:18 PM) Azarael` left the room (quit: Quit).
- (1:25:47 PM) TheShocker: oh god help us they're multiplying
- (1:26:12 PM) Viny[laptop] [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (1:29:09 PM) Viny[laptop] left the room (quit: Quit: Page closed).
- (1:32:18 PM) Elratie: pls kill the others first
- (1:33:18 PM) TheShocker: DON'T KILL ME I HAVE CATS
- (1:42:22 PM) Viny: I was trying to get a photo off my phone
- (1:42:39 PM) Viny: bluetooth refused
- (1:46:08 PM) TheShocker: wifi is a lot quicker and easier
- (1:46:58 PM) Elratie: the Computer say´s No
- (2:02:42 PM) Elratie: are there destro premades in sc´s?
- (2:07:45 PM) Viny left the room (quit: Ping timeout).
- (2:10:01 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (2:20:20 PM) TheShocker: tend to run into the same ones over and over again
- (2:36:00 PM) Viny left the room (quit: Ping timeout).
- (2:50:29 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (3:10:39 PM) Viny: we are lagging to shit again
- (3:15:21 PM) Viny: Azarael: pls :<
- (3:16:35 PM) Azarael: yeah I'm gonna restart it in a minute
- (3:20:31 PM) TheShocker: Azarael: Y RESPEC SO MUCH GOLDS? :(
- (3:22:25 PM) Azarael: enjoy paying gold
- (3:22:37 PM) Azarael: perhaps we'll change respec to be a % of your wealth
- (3:22:47 PM) Azarael: a nice flat 50% tax
- (3:22:52 PM) Azarael: that'll even the economy out very nicely
- (3:24:57 PM) TheShocker: I'd actually be paying less if I had to pay 50% of my gold :P
- (3:25:23 PM) Azarael: need some street beggar npcs
- (3:25:27 PM) Azarael: which hound you if you have stupid amounts of money
- (3:25:35 PM) Azarael: every day
- (3:25:40 PM) Azarael: they'll pickpocket you for x% of your total wealth
- (3:25:56 PM) TheShocker: let WHs and WEs be able to do that
- (3:26:08 PM) TheShocker: imagine the tears
- (3:26:15 PM) TheShocker: no, wait, let WLs be able to do it
- (3:26:27 PM) TheShocker: when they pounce you lose half your gold
- (3:27:02 PM) Azarael: who was it that told me that destro were looking out for me on my destro toons
- (3:27:08 PM) Azarael: the first one
- (3:27:14 PM) Azarael: so that they could pounce me
- (3:27:35 PM) Azarael: they can't have known who I was playing, but I agree that pounce is great :D
- (3:28:05 PM) TheShocker: can't wait until maras get terrible embrace and destro defends it
- (3:28:24 PM) TheShocker: ok ok, engies get magnet pull, magus get rift
- (3:28:28 PM) Azarael: and the best thing?
- (3:28:36 PM) TheShocker: yup
- (3:28:44 PM) Niblolkik [webchat@88-106-190-100.dynamic.dsl.as9105.com] entered the room.
- (3:29:00 PM) TheShocker: WELL WE WOULDN'T KNOW THAT AZARAEL WOULD WE?
- (3:29:15 PM) TheShocker: we might be 26 forever
- (3:29:27 PM) TheShocker: except for level not life
- (3:29:40 PM) Azarael: so I can use the melee heal on wp/dok
- (3:29:44 PM) Azarael: for that short time
- (3:29:47 PM) Azarael: that they work as advertised
- (3:30:10 PM) TheShocker: I'll pretend that concussion grenade doesn't suck right now, how about that? :P
- (3:31:18 PM) TheShocker: really the lamest lvl 20 ability I remember
- (3:31:58 PM) Viny: t3 confirmed?
- (3:33:13 PM) Niblolkik: my weapon on blackorc vanished
- (3:33:54 PM) TheShocker: you were probably holding it wrong
- (3:34:00 PM) TheShocker: try relogging, Niblolkik
- (3:34:12 PM) TheShocker: if that doesn't work it'll probably be in your bags after the next reset
- (3:36:10 PM) Niblolkik: was a basic level 2 thing anyhoo
- (3:43:00 PM) TheShocker: aw, not a huge deal then?
- (3:44:42 PM) Niblolkik: but it still vanished
- (3:46:59 PM) TheShocker: had that happen with my staff and boots on my BW
- (3:47:09 PM) TheShocker: I was trying to do t2 orvr when I realised ;)
- (4:31:45 PM) TheShocker: Azarael: what's the plan btw with t3, once it gets releaseed. lvl 31 cap, keep renown cap as is?
- (4:37:02 PM) Niblolkik left the room (quit: Quit: Page closed).
- (4:39:28 PM) TheShocker: fairy nuff
- (4:47:15 PM) Azarael: like an old friend
- (5:09:49 PM) Viny: this ping pong at madreds is so idiotic
- (5:09:56 PM) Viny: it's like they're not even trying
- (5:17:57 PM) TheShocker: https://m.youtube.com/watch?v=HC89KRV7l9M nice shot
- (5:18:09 PM) TheShocker: it's driving me insane
- (5:28:49 PM) Azarael: makes me laff
- (5:28:57 PM) Azarael: I stand on the tower at mandred's
- (5:29:02 PM) Azarael: watching the sheep go back and forth, baaing
- (5:30:35 PM) Valnak: like the keep itself isn't even very op, it's the fact that order multiplies by 10 every time destro goes to siege it for some reason
- (5:31:23 PM) TheShocker: plus you guys rarely guard postern :P
- (5:32:26 PM) TheShocker: seen that more the last few days, nazgul hanging around there
- (5:34:29 PM) Valnak: they seem quite large nowadays
- (5:35:32 PM) TheShocker: got some good players too
- (5:37:11 PM) Viny: I mean you either have to have proper morales or like a tanwall at the door
- (5:37:29 PM) Viny: TheShocker: tell order to queue premades
- (5:38:32 PM) TheShocker: guarding postern isn't that hard, you just have to stick with it
- (5:38:58 PM) TheShocker: people coming from the wc have 0 morales up, and the ones in the keep can't do all that much unless they jump down
- (5:39:07 PM) TheShocker: all you have to do is not be horny for arpees ;)
- (5:39:20 PM) TheShocker: sometimes it sucks, sometimes you have great fights
- (5:40:39 PM) TheShocker: wish more posterns worked, would make it easy to get into the keep in ellyrion for instance XD
- (5:40:56 PM) Viny: you are easy game for the 1023435534 order that's already in the kee
- (5:41:21 PM) TheShocker: nah, not really, because most of them are idiots horny for arpees busy hitting tanks ;)
- (5:51:34 PM) Viny: TheShocker: what's the difference between apathy and ignorance?
- (5:54:01 PM) TheShocker: apathy means you don't care, ignorance that you don't know
- (5:56:14 PM) Viny: the correct answer is: I don't know and I don't care
- (5:56:56 PM) TheShocker: no, you should have asked it the other way around for that to work :P
- (6:04:59 PM) Viny: what is love
- (6:27:10 PM) Viny: temple?
- (6:27:23 PM) Viny: we had like two million healers
- (6:27:28 PM) Azarael: T_T
- (6:27:32 PM) Viny: I wish I was healing whole SC solo
- (6:27:53 PM) Azarael: was on the verge of slotting FO for the first time in desperation
- (6:28:12 PM) Viny: I'm 5.5% to 39
- (6:28:53 PM) Viny: which I intend to do
- (6:29:00 PM) Azarael: (went without saying :^) )
- (6:29:41 PM) Viny: I'm starting to feel like kripparian of warhammer
- (6:30:03 PM) Viny: all I need is to start drinking juice from bottle on stream
- (6:32:03 PM) Azarael: get yourself down to the shop
- (6:33:26 PM) TheShocker: it's dark outside, and Viny lives in the arctic, he'd be frozen solid the moment he steps out the front door
- (6:33:39 PM) Viny: reality :/
- (6:35:01 PM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (6:36:41 PM) The topic for #martyrs_square is: login server may be down, not saying it's aliens, but... ALIENS || http://returnofreckoning.com/join.php
- (6:36:41 PM) Topic for #martyrs_square set by TheShocker at 5:44:40 PM on 11/2/2015
- (6:36:49 PM) Viny: it gets dark so early here these days
- (6:36:57 PM) Viny: I have to go out for runs like mid day
- (6:37:24 PM) TheShocker: little less so than where you are, but still
- (6:37:39 PM) Viny: sweden is a fucky place for weather
- (6:37:42 PM) TheShocker: so glad I'm going to california and hawaii in january
- (6:37:55 PM) Viny: storms, blizzards, heavy rain
- (6:38:02 PM) Viny: here its like meh
- (6:38:06 PM) Viny: then it clears
- (6:38:14 PM) Viny: then its sunny
- (6:38:21 PM) TheShocker: close to the sea I bet?
- (6:38:31 PM) TheShocker: same here
- (6:44:50 PM) Viny: I don't notice any
- (6:50:49 PM) Viny: after installing 3 fucking media centers from samsung
- (6:50:59 PM) Viny: and trying to set up bluetooth
- (6:51:18 PM) Viny: I murdered my payment plant on the phone and pushed the picture through facebook
- (6:53:32 PM) Viny: http://imgur.com/syZvPRj
- (6:53:38 PM) Viny: this is the best night from last summer
- (6:55:26 PM) Emptyglass left the room (quit: Quit: Page closed).
- (6:57:11 PM) TheShocker: ferry?
- (6:57:34 PM) Viny: stockholm tallin
- (6:57:48 PM) Viny: if you luck out and not have too many drunk russians on board
- (6:58:16 PM) Viny: thats from the highest part of the boat
- (7:01:13 PM) Macavity left the room (quit: Signed off).
- (7:01:42 PM) TheShocker: nah, logged out about 2 hours ago, got bored
- (7:01:57 PM) Viny: ah kk
- (7:02:43 PM) TheShocker: don't think I'll log in again tonight, probably tomorrow afternoon again
- (7:03:20 PM) TheShocker: want to change my engie to a total troll build
- (7:03:35 PM) TheShocker: 25% more reach for grenades and 50% larger area
- (7:03:52 PM) TheShocker: just to leech points during keep defences :P
- (7:07:01 PM) Viny: well we are getting slow pops so nvm then
- (7:07:58 PM) TheShocker: playing your dok atm? how much more do you need?
- (7:09:13 PM) Viny: 7% in to lvl 39
- (7:10:01 PM) Viny: pop is ultra low
- (7:17:55 PM) Viny left the room (quit: Quit: Page closed).
- (7:47:49 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (7:52:15 PM) Viny left the room (quit: Quit: Page closed).
- (8:22:44 PM) Onyx_ [webchat@162-203-6-47.lightspeed.dybhfl.sbcglobal.net] entered the room.
- (8:31:42 PM) Onyx_: TheShocker: get on and T1 order =P We getting zerged
- (10:19:42 PM) Onyx_ left the room (quit: Ping timeout).
- (11/5/2015 4:40:30 AM) Londo left the room (quit: Ping timeout).
- (4:43:24 AM) JuicyLucy [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (5:21:51 AM) Symbelmyne [webchat@94.117.201.233] entered the room.
- (5:23:02 AM) Symbelmyne_ [webchat@94.117.201.233] entered the room.
- (5:24:51 AM) Symbelmyne left the room (quit: Ping timeout).
- (5:25:02 AM) Symbelmyne_ left the room (quit: Ping timeout).
- (5:55:15 AM) Macavity [~Macavity@Macavity.users.quakenet.org] entered the room.
- (6:59:54 AM) sinisterror [sinisterro@87-100-170-163.bb.dnainternet.fi] entered the room.
- (7:08:31 AM) JuicyLucy left the room (quit: Quit: Page closed).
- (8:46:23 AM) TheShocker: oops
- (9:21:01 AM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (9:22:15 AM) TheShocker: hey
- (9:36:22 AM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (10:08:12 AM) Macavity` [~Macavity@Macavity.users.quakenet.org] entered the room.
- (10:08:47 AM) TheShocker: our country reeks of trees
- (10:08:52 AM) TheShocker: our yaks are really large
- (10:08:59 AM) TheShocker: and they smell like rotting beef carcasses
- (10:11:23 AM) Macavity left the room (quit: Ping timeout).
- (10:13:48 AM) Macavity` left the room (quit: Ping timeout).
- (10:19:19 AM) TheShocker: the royal canadian kilted yaksmen anthem
- (10:19:21 AM) TheShocker: https://vimeo.com/38184318
- (11:12:52 AM) TheShocker: yes
- (11:24:01 AM) sinisterror left the room (quit: Ping timeout).
- (11:24:57 AM) sinisterror [sinisterro@87-100-170-163.bb.dnainternet.fi] entered the room.
- (11:26:27 AM) Elratie: https://www.youtube.com/watch?v=wKa-wFE12DA
- (11:29:26 AM) Elratie: should pin a note on my monitor 'look once in a while over your Music Library' ^^ found some nice pieces again
- (11:36:35 AM) TheShocker: do you know the music of the original quake game?
- (11:36:58 AM) TheShocker: was made by nine inch nails, think you'd like that too, or some of it anyway. a lot is very atmospheric
- (11:39:03 AM) sinisterror: does anyone else keep crashing every 3 min
- (11:39:12 AM) sinisterror: and why the fuck is dwarf chapter 1 rally master so hard to find
- (11:39:58 AM) TheShocker: that entire place is a fucking maze
- (11:40:15 AM) Noiree [~noiree@p5B345DA3.dip0.t-ipconnect.de] entered the room.
- (11:40:20 AM) TheShocker: ekrund's a great zone, but the starting point could have been done better
- (11:40:44 AM) TheShocker: hey Noiree
- (11:42:16 AM) sinisterror: srsly im close to crying :D
- (11:42:29 AM) sinisterror: ive tried to find rally master in dwarf ch 1
- (11:42:57 AM) Elratie: xD
- (11:43:00 AM) TheShocker: when I was leveling my slayer I thought I'd jump down on that little plateau outside
- (11:43:09 AM) Elratie: https://www.youtube.com/watch?v=hMIT82JxIik
- (11:43:11 AM) TheShocker: didn't realise there are level 12-13 mobs there -_-
- (11:44:19 AM) Elratie: not ingame so cant tell with the dc´s
- (11:44:28 AM) TheShocker: me neither btw, forgot to mention that
- (11:47:01 AM) sinisterror: there cant be rally master in dwarf ch 1 atm
- (11:47:12 AM) sinisterror: i mean ive searched every fucking corner
- (11:47:21 AM) sinisterror: is it removed for some reason
- (11:48:31 AM) TheShocker: his name's rordin ironmantle
- (11:49:17 AM) Grywwy [webchat@ipb21b0e57.dynamic.kabel-deutschland.de] entered the room.
- (11:49:19 AM) TheShocker: on the other side of the bridge
- (11:49:29 AM) TheShocker: ah yeah, you need to cross the bridge to get to him
- (11:54:26 AM) Sebbeleu left the room (quit: *.net *.split).
- (11:54:29 AM) TheShocker: they really need to get /target to work :
- (11:54:53 AM) Grywwy left the room (quit: Quit: Page closed).
- (11:59:19 AM) sinisterror: can u give coordinates :D
- (11:59:30 AM) sinisterror: i made rp and booked him to ekrund
- (11:59:34 AM) sinisterror: and no rally masters around
- (11:59:42 AM) sinisterror: but it still booked me to ekrund
- (11:59:44 AM) TheShocker: hmmm, was going to suggest doing that
- (12:00:08 PM) sinisterror: i want my dwarf axe for wl;(
- (12:00:41 PM) TheShocker: Coordinates 32800, 34900
- (12:00:55 PM) TheShocker: according to http://warhammeronline.wikia.com/wiki/Rordin_Ironmane
- (12:07:10 PM) Sebbeleu [~sebbeleu@vps.xaz.se] entered the room.
- (12:10:21 PM) sinisterror: i was trying inside the huge dwarf building
- (12:10:39 PM) TheShocker: nah, it's outside, just across the bridge iirc
- (12:10:51 PM) TheShocker: just before the breached wall where greenskins are trying to get in
- (12:12:01 PM) Elratie left the room (quit: Quit).
- (12:21:22 PM) Unhealthycarrot [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (12:23:03 PM) Noiree: greeting, lethal veggie
- (12:29:17 PM) TheShocker: or should I say, γεια πατάτας
- (12:29:50 PM) Unhealthycarrot: hahahaha you know all my secrets :(
- (12:43:59 PM) TheShocker: I see people's hostnames when they join ;)
- (12:52:31 PM) TheShocker: nah, I just use a real irc client
- (12:56:43 PM) TheShocker: irssi
- (12:57:06 PM) TheShocker: it's a commandline one
- (12:57:15 PM) Azarael [Azarael@Azarael.users.quakenet.org] entered the room.
- (12:57:24 PM) TheShocker: shhh, there he is
- (12:57:35 PM) Noiree: had gfIRC for a while - was nice... super over drive scripted mIRC modified for german-freakz network
- (12:57:49 PM) Noiree: pox poxpoxpoxpox
- (12:58:01 PM) TheShocker: just one pox? wow... stingy
- (12:58:07 PM) Noiree: ey, chef - how' the server hanging?
- (12:58:15 PM) Azarael: if it's anything like yesterday
- (12:58:22 PM) Azarael: or possibly multiple
- (12:59:39 PM) TheShocker: does the pope shit in the woods?
- (12:59:46 PM) Viny: did wonders yesterday
- (1:00:09 PM) Azarael: pretending to be someone else
- (1:00:16 PM) Azarael: trying to appeal a ban for using the gold exploit
- (1:00:50 PM) Azarael: think over the last two weeks I've played more destro than order
- (1:01:06 PM) Noiree: you stay away from MY faction!
- (1:01:13 PM) Azarael: muh faction
- (1:01:19 PM) Azarael: muh neglect!
- (1:01:31 PM) Azarael: I'll be on your faction and you'll LIKE it
- (1:01:44 PM) Noiree: thou shalt be order biased unendedly! or smth.
- (1:02:39 PM) Noiree: what was your weapon of choice on the dark side of bugs?
- (1:02:52 PM) Macavity [~Macavity@Macavity.users.quakenet.org] entered the room.
- (1:03:14 PM) TheShocker: I bet
- (1:03:25 PM) TheShocker: damn right
- (1:03:36 PM) Noiree: real orcs have curves!
- (1:06:10 PM) TheShocker: ...no?
- (1:06:27 PM) TheShocker: ah, nope
- (1:06:49 PM) TheShocker: going to have dinner in a few minutes, I'll log on later
- (1:08:14 PM) Noiree: let's throw in some stereotypes... you'll have frikandel and cheese?
- (1:09:53 PM) TheShocker: made a stir fry with black rice, cabbage, scallions, broccoli, garlic, fish sauce, soy sauce and shrimp
- (1:10:42 PM) Noiree: fish sauce and soy sauce? isn't that a bit... salty? :D
- (1:10:58 PM) TheShocker: nah, it's a low sodium soy sauce, tamari
- (1:11:13 PM) TheShocker: 1 tbsp of fish sauce, 2 soy sauce
- (1:11:30 PM) TheShocker: oh, forgot to mention the mushrooms
- (1:11:57 PM) TheShocker: and toasted cashews
- (1:13:33 PM) TheShocker: I did have raw herring for lunch, Noiree
- (1:14:06 PM) Noiree: cashews are evil - way too tasty for all those carbs :(
- (1:14:31 PM) Viny: Azarael: is there maybe some way to tweak the matchmaker
- (1:14:40 PM) Viny: so that we don't have 4 healers per party in pubs
- (1:16:25 PM) Noiree: blizzard didn't manage to have a real match maker working properly with tons of paid coders how are the ror devs supposed to get one going, esspecially with the small pool of players?
- (1:17:21 PM) TheShocker: downside of better match making is longer wait times, Viny
- (1:17:43 PM) Viny: talking about wait times
- (1:17:44 PM) Noiree: Q as grp though personally I like pugging
- (1:17:44 PM) Azarael: always queue in a balanced group
- (1:17:54 PM) Viny: while you are being raped 0 500
- (1:17:59 PM) Viny: or you can wait for an even game
- (1:18:35 PM) Viny: I don't see why we can't have the cake and eat it too
- (1:18:46 PM) Noiree: also I love the usual 'omg we got 6 healers, how can I die?!' rant when the unguarded choppa/dmg chosen jumps into the two premades...
- (1:19:22 PM) Unhealthycarrot: y u letting us die Noiree
- (1:19:31 PM) Azarael: poor execution - everyone knows the best course of action is to, at the start of the game, say 'if I die, I quit' then afk at the start after dying
- (1:19:51 PM) Viny: for a pvp centric game I think this is something worth taking the time to get right
- (1:20:53 PM) Noiree: as to quote myself '(19:16:27)<Noiree>blizzard didn't manage to have a real match maker working properly with tons of paid coders how are the ror devs supposed to get one going, esspecially with the small pool of players?'
- (1:21:43 PM) Viny: idk what thefuck you are talking about
- (1:22:19 PM) Viny: bloodline champions had 12 people on staff and they got it right
- (1:22:34 PM) Viny: heartstones match maker is fine
- (1:22:52 PM) Viny: what the fuck are you talking about?
- (1:23:08 PM) Noiree: blizzard introduced a system for q'ing up into BGs - you could mark yourself as dps/tank/heal and one should expect a proper match making coming out of this - hell no... same shit, different way
- (1:23:24 PM) Azarael: blc tried to do matchmaking based around classes?
- (1:23:27 PM) Noiree: you're talking 1 vs 1 not MMO lvl
- (1:23:38 PM) Azarael: if I'm not misremembering, in smm you selected your bloodline after you were matched based on ranking
- (1:24:45 PM) Noiree: RR =|= skill lvl... wow has at least an arena ranking - RR in war is just farming
- (1:26:03 PM) Viny: in what way does this prevent us from having at least balanced parties in scs
- (1:26:37 PM) Noiree: player base is not large enough
- (1:26:46 PM) Noiree: you'll have incredibly long waiting times
- (1:27:13 PM) Noiree: especially during non prime times which will piss off americans etc.
- (1:27:42 PM) Viny: that's not how best effort works
- (1:27:49 PM) Viny: if you have a pool of people who queued
- (1:28:16 PM) Viny: you make an effort to pick the most balanced composition
- (1:28:22 PM) Noiree: personally: I'd like to an optional button for premades to chose whether or not they would fight 1 vs 2... for some grps, this would increase the fun factor by a lot
- (1:28:40 PM) Viny: and then have special cases for premades
- (1:36:40 PM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (1:42:57 PM) TheShocker: http://9gag.com/gag/a4L8dqm
- (1:43:04 PM) TheShocker: damn that was a good stir fry
- (1:47:22 PM) Unhealthycarrot: server crashed or is it my potatopc?
- (1:53:23 PM) Noiree: your gf, TheShocker? :D
- (1:54:15 PM) Noiree: dat ass!
- (1:54:27 PM) TheShocker: just found it online
- (1:55:30 PM) Londo [webchat@96.53.92.146] entered the room.
- (1:56:47 PM) Noiree: geeeeez my sense of time is so fucked up, feel like it's 3 hrs later
- (1:58:22 PM) TheShocker: it's the time change plus winter is coming :(
- (1:59:10 PM) TheShocker: no it's coming sooner than that
- (2:00:14 PM) Noiree: I swear,winter is coming in april 2016 http://www.imdb.com/title/tt0944947/episodes?season=6&ref_=tt_eps_sn_6 :D
- (2:07:06 PM) sinisterror left the room (quit: Ping timeout).
- (2:47:52 PM) Viny left the room (quit: Ping timeout).
- (2:49:03 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (2:49:24 PM) Viny: dinged rr40 and bluescreened immediately
- (4:00:45 PM) Noiree left the room (quit: Read error: Connection reset by peer).
- (4:31:49 PM) Viny: Azarael: no restart inc? stk is a lagfest right now :<
- (4:37:16 PM) TheShocker: won't really help as long as people keep zerging :P
- (4:37:37 PM) TheShocker: (saying that as someone that followed a zerg earlier on btw :P)
- (4:37:56 PM) TheShocker: 2 levels on my slayer, that's enough for today
- (4:38:35 PM) TheShocker: ooh, grats :)
- (4:38:52 PM) Viny: had the biggest 'wtf do I do know' feeling ever :<
- (4:39:07 PM) TheShocker: level an alt
- (4:39:16 PM) TheShocker: a WP, for something COMPLETELY different
- (4:39:45 PM) TheShocker: man, had a st. bernardus abt 12 earlier on, now a rochefort 10
- (4:41:52 PM) Viny: im not an authority on beers
- (4:50:10 PM) Viny: omfg
- (4:50:19 PM) Viny: I'm running at 60fps at spites right now
- (5:46:04 PM) TheShocker: Viny: check twitch right now for people playing RoR XD
- (5:46:23 PM) TheShocker: there's a slayer that's just... I don't know what to say. freenown?
- (5:47:43 PM) Azarael` [Azarael@cpc65021-brad20-2-0-cust146.17-1.cable.virginm.net] entered the room.
- (5:48:22 PM) Viny: oh gawd
- (5:48:32 PM) Viny: what next? let the bodies hit the floor
- (5:50:24 PM) Unhealthycarrot left the room (quit: Ping timeout).
- (5:51:03 PM) Viny: maybe I should log my BO and teabag him
- (5:51:12 PM) TheShocker: should've seen him in nordenwatch before
- (5:51:33 PM) TheShocker: trying to solo cap points and solo 3 destro marked 'dangerous' as a level 3 or whatever the fuck he was XD
- (5:51:45 PM) Viny: well
- (5:51:56 PM) Viny: at least he doesn't have 4 action bars like some peopl
- (5:52:23 PM) Azarael left the room (quit: *.net *.split).
- (5:53:25 PM) Viny: maybe hes not so bad after all
- (5:53:36 PM) TheShocker: notice how all his abilities are bound to mouse buttons btw? XD
- (5:53:50 PM) TheShocker: oh his music's fine, really
- (5:54:07 PM) TheShocker: you mean potato
- (5:54:25 PM) Viny: next time she comes act natural
- (5:54:35 PM) Viny: she doesn't know how IP addresses work, it's so adorable
- (5:54:52 PM) TheShocker: she's cool though, really, else I wouldn't call her potato ;)
- (5:55:18 PM) TheShocker: I wanted to make a character called potato, but that and potatoe are taken already :(((((
- (5:55:50 PM) Viny: I had so many cool names on my first accound
- (5:56:52 PM) Viny: how is your destro chars coming along anywa
- (5:57:20 PM) TheShocker: need to get my chosen out of t1
- (5:57:41 PM) TheShocker: the WE is fun, but... meh, mdps is kinda shitty in the current meta
- (5:58:06 PM) TheShocker: all mdps except slayer, WL and mara are kinda shitty in the current meta
- (5:58:23 PM) TheShocker: choppas are ok too
- (5:59:00 PM) TheShocker: and WL are only ok because of gimmick abilities
- (6:23:23 PM) Viny: no
- (6:23:37 PM) Valnak: odd
- (6:33:14 PM) Viny: that slayer was russian apparently
- (6:35:06 PM) TheShocker: well, at least he wasn't driving
- (6:39:14 PM) TheShocker: I'm dutch, we're all very good at taht
- (6:44:33 PM) TheShocker: lately I've been saying 'how do y'alls make them funny letters' whenever I see russian in /ad XD
- (6:44:50 PM) TheShocker: someone else picked up and calls them chinese now XD
- (6:45:47 PM) TheShocker: hrm, I've had 4 beers, should I watch tv, go to sleep, or play some more warhammer, Viny? ;D
- (6:46:22 PM) Viny: I'm not sure where the 4 beers fit in in the decision making :D
- (6:46:37 PM) TheShocker: opening number 5 in a second
- (6:46:43 PM) TheShocker: aw :(
- (6:46:54 PM) TheShocker: yeah, it's just zerging or nothing atm :
- (6:47:15 PM) Viny: well mom was fun while it lasted
- (6:47:57 PM) TheShocker: I logged off after people were being idiots at STK
- (6:48:28 PM) TheShocker: told them, just all go into the lords room, spam aoe and group heals, but no
- (6:48:39 PM) TheShocker: got a shitload of renown, xp and inf though :P
- (6:49:22 PM) TheShocker: think I'll level my slayer to 26 before I touch my engie again
- (6:50:31 PM) TheShocker: got 5 inf rewards in emp and elves in about an hour today on him, was nice
- (6:56:08 PM) Viny: you can't expect too much
- (6:58:03 PM) TheShocker: they put up a good fight
- (6:58:44 PM) TheShocker: well, not stupid, afraid to die because they're lowbies with shitty gear
- (6:58:52 PM) TheShocker: rightfully afraid, in other words
- (6:59:05 PM) TheShocker: heh
- (6:59:29 PM) TheShocker: see them blowing their M1 constantly on stupid stuff instead of saving up for m2/3
- (6:59:49 PM) TheShocker: that's why I told them to all group up in the lords room
- (7:00:13 PM) Viny: if you are in a group
- (7:00:27 PM) Viny: then m2-3 is useless
- (7:00:37 PM) TheShocker: most of them at STK were in a group
- (7:00:40 PM) Viny: comapred to like m1 heal that can score you some extra rr
- (7:00:42 PM) TheShocker: there were 2 full wbs there afaik
- (7:01:29 PM) TheShocker: nah, 50% cast time reduction just when destro charges in is pretty great ;)
- (7:02:45 PM) Viny: but that sort of thing has to be timed over voip usually
- (7:02:59 PM) Viny: you cant do that from /ad or /wb
- (7:03:14 PM) TheShocker: it's doable, but yeah, not easy XD
- (7:03:35 PM) TheShocker: but people need to be situationally aware
- (7:03:40 PM) TheShocker: and there lies the problem ;)
- (7:04:26 PM) TheShocker: still amazes me how people can't see a flanking attack coming a mile away
- (7:04:44 PM) TheShocker: I mean, there are even dots on your bloody map at the moment XD
- (7:04:58 PM) Viny: flanking in warhammer is not really that amazing
- (7:05:34 PM) Viny: yesterday evening when I was farming rr on my dok at stk
- (7:05:55 PM) Viny: nazgul did at totally amazing flank on order zerg that stormed the keep
- (7:06:04 PM) Viny: and then they wiped at the first floor
- (7:06:16 PM) TheShocker: yeah they're pretty good
- (7:06:38 PM) TheShocker: they did a seriously failed charge today or yesterday at shadowlands keep though XD
- (7:06:44 PM) TheShocker: jumped down and just melted
- (7:07:05 PM) Viny: morale coordination is everything
- (7:08:06 PM) TheShocker: that's the problem I see to often, people wasting immunities
- (7:08:18 PM) Viny: or people who punt people out of melee trains
- (7:08:18 PM) TheShocker: stupid 3 second stagger from engie mines, etc
- (7:08:49 PM) TheShocker: or stagger and then attack that same target -_-
- (7:08:52 PM) Azarael`: I still cannot fathom the decision-making process behind punting people out of melee trains
- (7:09:17 PM) Azarael left the room (quit: Registered).
- (7:09:17 PM) Azarael [Azarael@Azarael.users.quakenet.org] entered the room.
- (7:09:59 PM) Viny: I think it goes something like this
- (7:10:00 PM) TheShocker: I have to admit that during keep defences, when I'm one of a handful of order defending, I sometimes put someone that's channeling, like a sorc XD
- (7:10:08 PM) Viny: click click
- (7:10:40 PM) TheShocker: or punt a WE trying to gank people down the slope at BV keep, that's always fun
- (7:10:57 PM) Azarael: I mostly mean when some tank
- (7:11:05 PM) Azarael: runs into a group of his allies attacking a single target
- (7:11:11 PM) Azarael: 'What this really needs is my Repel'
- (7:11:34 PM) Azarael: I need to add code to detect this
- (7:11:40 PM) Azarael: and broadcast an informative message to the numbskulls that do it
- (7:12:56 PM) TheShocker: DOOOO EEEEEEEEET!
- (7:13:45 PM) TheShocker: tbh, even in t4 with reasonably skilled people this was a problem, don't give immunity to a group when you have a tank with bloody aoe stagger
- (7:14:10 PM) TheShocker: using skilled in a very generous way here, as in, people who SHOULD know better
- (7:14:41 PM) TheShocker: what I actually really like about RoR is that it allows people to play more different classes easily, without having to pay multiple subs
- (7:14:51 PM) TheShocker: should teach them a thing or two about who does what best
- (7:18:09 PM) TheShocker: think one of the things that leads to people wasting puns is other people wasting them, it's more of an 'OMG HE'S NOT IMMUNE TO PUNTS LET'S GO!' thing XD
- (7:20:16 PM) TheShocker: Viny: about that renown trainer addon I showed you, that's sorta what it used to look like until EA 'improveds' the interface in patch 1.4.0 or 1.4.2 or so
- (7:20:37 PM) Viny: I noticed it resets after speccing
- (7:20:41 PM) TheShocker: tell me you understand how the fuck anyone could think the current interface is better? XD
- (7:20:52 PM) TheShocker: yeah, same as the normal interface, think that's a server bug
- (7:20:54 PM) Valnak: Viny: i think i was in that one
- (7:21:17 PM) Viny: I had 4 suicidal melees in my party
- (7:22:03 PM) TheShocker: suicide melee is fun Viny ;)
- (7:22:19 PM) Viny: only if you have a pocket healer
- (7:22:40 PM) Viny: because if you don't its only fun for a very short period of time :D
- (7:23:40 PM) Viny: you guys will hate me for it
- (7:23:48 PM) Viny: but I made a small adjustment to my hotkeys
- (7:24:01 PM) Viny: I have a quest pot on alt E now
- (7:24:25 PM) Viny: it's fucking amazing :D
- (7:24:46 PM) TheShocker: quest pot? you mean the heal pots for 150 kills?
- (7:25:28 PM) Viny: s
- (7:25:40 PM) TheShocker: you can make much better pots than those
- (7:25:52 PM) Viny: but these are free essentially
- (7:25:59 PM) Viny: and they have their own cooldown
- (7:26:06 PM) TheShocker: ah, that's true
- (7:26:18 PM) Viny: btw when will pot CD show up on the action bars Azarael
- (7:26:21 PM) TheShocker: shame they don't show on Potion Bar
- (7:26:33 PM) Viny: ok
- (7:26:43 PM) TheShocker: do they share a cooldown with the renown pots btw?
- (7:27:00 PM) TheShocker: hmmm, I'll check that tomoro
- (7:27:01 PM) Azarael: nal said one of the bytes in the item packet represented cd group for pots
- (7:27:12 PM) Azarael: I only did the ability side of those
- (7:27:51 PM) TheShocker: ah, wonder if you put in a bullshit value there or the value for renown pots
- (7:28:14 PM) TheShocker: bullshit value might work XD
- (7:28:22 PM) Azarael: I know how the cd is displayed, at least, I believe I'm right
- (7:28:31 PM) Azarael: have to resend the item with the cd set
- (7:28:40 PM) Azarael: it's just not being handled right
- (7:28:46 PM) Azarael: more important things to do and all
- (7:28:59 PM) TheShocker: PEOPLE ARE DYING IN RVR AZARAEL
- (7:29:07 PM) Azarael: oh shit
- (7:29:18 PM) Azarael: well
- (7:29:22 PM) Azarael: the fewer position updates
- (7:29:29 PM) Azarael: let 'em rot
- (7:30:11 PM) TheShocker: still enjoying the hell out of playing again, lag and bugs and whatever don't matter that much
- (7:30:35 PM) Azarael: not since two days ago
- (7:30:35 PM) Viny: it feels like there's less lag on keep takes
- (7:30:38 PM) TheShocker: earlier today we went from shadowlands to ellyrion and collided with a destro wb right under the gates
- (7:30:44 PM) Viny: placebo maybe
- (7:31:04 PM) Viny: that gate is so shit at keeping people out
- (7:31:16 PM) Viny: and it doesn't do shit
- (7:31:36 PM) Viny: I so wish that elf scenario was in
- (7:31:48 PM) Viny: probably a pain to code tho it had a weird score mechanic
- (7:31:59 PM) TheShocker: serpents spine is what I want
- (7:32:07 PM) Viny: azrael pls :<
- (7:32:15 PM) Azarael: which elf scenario are you on about
- (7:32:17 PM) TheShocker: it's like nordenwatch but better
- (7:32:53 PM) Azarael: mostly what holds back scenarios is a) me being busy with something higher priority and b) lack of packetlogs for the scenario
- (7:32:53 PM) Azarael: I'd have put battle for praag up if I knew how the HUD timers work
- (7:32:56 PM) Azarael: really? people actually WANT Khaine's Embrace?
- (7:33:00 PM) TheShocker: wut?
- (7:33:11 PM) TheShocker: nooooooo
- (7:33:25 PM) Azarael: serp's -_-
- (7:33:30 PM) Azarael: I still can't forget launcher
- (7:33:32 PM) Azarael: launch*
- (7:33:35 PM) Azarael: and how overplayed that crap was
- (7:33:43 PM) Azarael: well you're in luck; phoenix gate has a packetlog
- (7:33:58 PM) Azarael: however I was intending to do Stonetroll Crossing first
- (7:34:10 PM) Viny: https://www.youtube.com/watch?v=kQwpQHHe8z0
- (7:34:12 PM) TheShocker: do you have one for serpent's spine too?
- (7:34:12 PM) Azarael: just nostalgia you see - when I started playing, that scenario WAS t2
- (7:34:21 PM) Azarael: serpent's passage has a log too, yes
- (7:34:41 PM) Viny: also there was another scenario in t2 with a mountain in the middle
- (7:34:44 PM) TheShocker: glad to know that that's possible in the future too then
- (7:34:49 PM) Azarael: mostly the issue with not having a log is with the ones which have doors or new mechanics
- (7:35:02 PM) Azarael: but I also use them to get the right scenario object ID to link them with the interface without guessing
- (7:35:16 PM) TheShocker: what was that completely shit sc with basically plateaus with railings on the side?
- (7:35:34 PM) TheShocker: the one where all the fucking BGs on the server queued for it because lol punt bai
- (7:35:56 PM) Azarael: remind me to level my BG for it
- (7:35:57 PM) TheShocker: only played that one like 3 times on my BW ever I think, no LoS, fucking punts, it was HELL
- (7:36:04 PM) TheShocker: fuck you Azarael ;)
- (7:36:11 PM) Azarael: we need to develop the weaker scenarios first
- (7:36:15 PM) Azarael: to build a new appreciation for them
- (7:36:25 PM) Azarael: to this end, you'll be playing dragon's bane for weeks
- (7:36:38 PM) TheShocker: oh btw Azarael, when you talk in /ad and some asshole says 'HE SPEAKS! WE'RE NOT WORTHY! WE'RE NOT WORTHY!', that's me XD
- (7:36:50 PM) Azarael: better than what I usually get
- (7:36:56 PM) Azarael: had some guy pm me
- (7:36:59 PM) Azarael: to draw attention to a thread he made
- (7:37:06 PM) Azarael: about tradeability of bq / lady weapons for appearance
- (7:37:22 PM) TheShocker: meh, I can reach you here some time, or PM on the forum if I'm desperate I guess, not fucking with your gameplay
- (7:37:25 PM) Azarael: I was polite, but I was thinking 'you know I read every thread, and I chose not to respond - are you really choosing to pm me about this in game?'
- (7:37:50 PM) TheShocker: read that thread, it was stupid
- (7:38:01 PM) Azarael: I know I'm not obliged to consider the requests
- (7:38:04 PM) Azarael: even though I shouldn't
- (7:38:09 PM) Azarael: I just can't stop myself from thinking about it
- (7:38:09 PM) TheShocker: same with the 'GIEF SC WEAPONS FOR FREE PLX' thread
- (7:38:16 PM) Azarael: I can shift the blame on that one
- (7:38:20 PM) Azarael: prices were decided by the GM Corps
- (7:38:42 PM) Azarael: but equally, since I changed it to 2/1
- (7:38:46 PM) Azarael: I don't see any reason to complain
- (7:38:53 PM) Azarael: and that's from someone who doesn't even have any of the weapons yet
- (7:38:54 PM) TheShocker: yeah that was an awesome change
- (7:39:05 PM) TheShocker: I have the t1 ones on my engie
- (7:39:46 PM) TheShocker: took me about 3 hours total -_-
- (7:39:46 PM) TheShocker: t2 ones take longer though
- (7:39:47 PM) Azarael: now there's a word which needs more exercise
- (7:40:08 PM) Azarael: the thinking was we'd need to add a grind so that people had something to do
- (7:40:14 PM) Azarael: cause people love that grind
- (7:40:15 PM) TheShocker: speaking of excercise, I need to walk to the fridge for another beer, brb
- (7:40:40 PM) TheShocker: back
- (7:40:56 PM) TheShocker: the fridge is 10 feet away ;)
- (7:41:15 PM) TheShocker: can't make everyone happy no matter what you do Azarael, so don't even try is all I can say :
- (7:41:42 PM) Azarael: people are our best friends as long as we're doing exactly what they want
- (7:41:45 PM) TheShocker: make the most annoying ones unhappy maybe?
- (7:41:49 PM) Azarael: and to be fair in a project like this, that's quite often
- (7:41:53 PM) Azarael: but when it isn't something people want :D
- (7:42:31 PM) Azarael: new pounce thread
- (7:42:35 PM) TheShocker: YAY!
- (7:42:40 PM) TheShocker: imma go troll brb lawl
- (7:43:17 PM) TheShocker: heh, I laughed my ass off about the thread about merchants being higher level suddenly
- (7:43:37 PM) TheShocker: suddenly all this bitching about BW AOE and how can you even get to the lords room and halp and whatever
- (7:43:53 PM) TheShocker: then it turned out that the merchants were only higher level in destro keeps
- (7:44:08 PM) Azarael: INTERESTING
- (7:44:45 PM) TheShocker: ah, you didn't hear about that? apparently it's true, haven't had a problem with it because I don't go up there until after the lord's dead usually XD
- (7:46:42 PM) TheShocker: would be nice for leveling scavenging actually
- (7:47:11 PM) Valnak: ninja patches seem to come in every now and then
- (7:47:17 PM) Valnak: like the bolster to 31 in scenarios
- (7:47:44 PM) TheShocker: I'm going to open a new topic about pounce, a petition to extend the range to 100ft
- (7:48:20 PM) TheShocker: I'll wait until this one dies down first
- (7:48:20 PM) Valnak: i think magus need to be nerfed too
- (7:49:02 PM) TheShocker: those grenades, with their aoe
- (7:49:14 PM) TheShocker: ticks for like 30/sec sometimes
- (7:49:19 PM) Valnak: i was in a scenario where an engie got like 13dbs
- (7:49:33 PM) TheShocker: probably a grenade build, not kidding
- (7:49:44 PM) Valnak: he was doing something that would double tick on my chosen for 2x 500s
- (7:50:12 PM) TheShocker: engies have a corp resist debuff grenade, and almost all their damage is corp
- (7:50:36 PM) TheShocker: it's actually really nice with armor levels the way they are now
- (7:51:06 PM) TheShocker: what's your chosen called, Valnak?
- (7:52:15 PM) Valnak: so what causes this bug
- (7:52:18 PM) Valnak: http://puu.sh/laVj2/8cb784b31e.jpg
- (7:52:19 PM) TheShocker: do you mostly do scs? don't recall you killing me in orvr ;)
- (7:52:31 PM) Valnak: look at my target's buffs/debuffs
- (7:52:52 PM) Valnak: some orvr with my guild
- (7:52:57 PM) TheShocker: I see that on mobs almost all the time, Valnak
- (7:53:11 PM) TheShocker: I see AAO buffs on mobs in pve etc
- (7:53:12 PM) Valnak: ok i was wondering if it was an addon
- (7:53:21 PM) Valnak: i had a massive scenario party bug for a while
- (7:53:24 PM) TheShocker: nah, think it's just the server being odd
- (7:53:26 PM) Valnak: where i couldn't join parties
- (7:53:52 PM) TheShocker: yeah, had that too, keep clicking join and leave over and over, that helped for me
- (7:53:53 PM) Azarael: valnak: should happen if the server for whatever reason doesn't send the end packet for a the buff/debuff to you
- (7:54:01 PM) Azarael: which it should always do, but eh...
- (7:54:18 PM) TheShocker: not saying it's aliens, but....
- (7:55:05 PM) Valnak: so get an addon to manage buffs/debuffs?
- (7:56:39 PM) TheShocker: Azarael: your explanation about negative toughness suddenly explains something to me, how I didn't die in a keep defence one time when there was horrible lag
- (7:57:02 PM) TheShocker: think I took a screenshot that showed me having negative thousands of toughness and other stats
- (7:57:17 PM) Azarael: That shouldn't happen. Ever. But clearly it does, so I'd better figure out why sometime soon.
- (7:57:34 PM) Azarael: Buffs should be guaranteed to both begin and end, which takes care of both ends of stat modification.
- (7:57:41 PM) TheShocker: hmmm, is there a tool we can use to make packet dumps like we did for live?
- (7:57:48 PM) Azarael: Yeah. The same packet logger that was used on live.
- (7:58:34 PM) TheShocker: cool, I'll run it when I expect huge numbers of people during a keep defence, might help you out
- (7:59:24 PM) TheShocker: think I still have it somewhere, but is there a link somewhere on the forums otherwise?
- (8:05:10 PM) TheShocker: http://www.returnofreckoning.com/forum/viewtopic.php?f=4&t=7419 people like this drive me insane XD
- (8:05:40 PM) TheShocker: just how exactly do you get that bad at filing bug reports?
- (8:05:52 PM) TheShocker: Azarael: don't answer that, I bet you see more than I do these days XD
- (8:08:28 PM) TheShocker: I try not to file them for trivial shit :P
- (8:20:05 PM) TheShocker: you know how people sometimes say 'it takes two to fight'?
- (8:20:18 PM) TheShocker: I always want to punch those people in the face
- (8:20:21 PM) Azarael: the Nac Mac Feegle would disagree
- (8:20:28 PM) TheShocker: just to see how they respond
- (8:20:36 PM) TheShocker: hah, pratchett fan, nice :D
- (8:20:56 PM) TheShocker: and yes, they most definitely would XD
- (8:21:19 PM) TheShocker: it's a seriously stupid saying though -_-
- (8:21:34 PM) TheShocker: had a teacher tell me that once when someone pushed be through a fucking window
- (8:25:08 PM) TheShocker: funny btw that the person who said it in the tv show I'm watching had a scottish accent XD
- (8:26:07 PM) Azarael: well, almost anything a teacher will say about fighting is wrong
- (8:31:14 PM) TheShocker: that youtube video of the chicken apocalypse was awesome btw
- (8:31:23 PM) TheShocker: the one linked on the twitter account
- (8:31:42 PM) TheShocker: think I'm in it a few times, recognise a few charges XD
- (8:34:53 PM) TheShocker: Azarael: would it be possible to do something like that in a t3 zone at this moment? port people there or something?
- (8:35:18 PM) TheShocker: or to lotd or whatever, off the normal map
- (8:35:29 PM) TheShocker: hmmm
- (8:37:43 PM) Viny: my christ what are you still doing awake
- (8:38:03 PM) TheShocker: drinking beer and watching clone wars
- (8:38:32 PM) Viny: trying to send luffy to sleep
- (8:38:54 PM) Viny: that
- (8:39:18 PM) TheShocker: tell her she needs her beauty sleep
- (8:39:38 PM) Viny: coming from me it would just sound sarcastic :
- (8:39:55 PM) TheShocker: ok, tell her I'll try to get her stroopwafels if she goes to bed then
- (8:41:01 PM) Viny: Azarael: can we close the suzu ui thread maybe
- (8:41:09 PM) Viny: 's getting out of hand in there
- (8:42:16 PM) TheShocker: what, you mean he doesn't have hand cancer? :P
- (8:44:29 PM) Viny: ffs
- (8:44:53 PM) Azarael: Reminds me. Got to get back to brawndo
- (8:45:09 PM) TheShocker: that asherdoom person with his fake virus warnings is annoying
- (8:45:22 PM) Viny: what's with brawndo? he's ex critical acclaim
- (8:45:37 PM) Viny: its a cess pool that thread
- (8:46:18 PM) Azarael: he was messaging me re mitigating the ban on suzu and the other two
- (8:47:05 PM) Viny: can't we just take the gold and the items
- (8:47:39 PM) Viny: was he even doing it or just banned by association
- (8:48:13 PM) TheShocker: point of an alpha is that people report bugs and exploits though :
- (8:48:31 PM) Azarael: and yeah
- (8:48:36 PM) Azarael: there's all too much of this shit
- (8:48:40 PM) Azarael: people think it's like live all over again
- (8:48:46 PM) Azarael: hide all the good 'sploits, we can have an advantage
- (8:48:53 PM) Viny: how did he not know he'd get cought
- (8:49:05 PM) Azarael: we suck hard at actually detecting exploiters
- (8:49:13 PM) Azarael: it's useful to maintain such a perception
- (8:49:45 PM) Viny: I think he's just an idiot that one time
- (8:49:53 PM) Azarael: he didn't even do it on destro
- (8:49:59 PM) Azarael: which was part of brawndo's argument
- (8:50:09 PM) TheShocker: allow me to lol then
- (8:51:05 PM) Azarael: all stand equal before the banhammer
- (8:51:16 PM) Viny: competitive scene dried up a little but he's an idiot for doing it
- (8:51:18 PM) Azarael: if some scalps must be taken to remind people of this then it's sad, but also self-inflicted
- (8:51:30 PM) Azarael: nothing actually prevents them from making accounts and starting again
- (8:52:01 PM) Viny: not easy to do mentally, especially after 26/40
- (8:52:03 PM) TheShocker: that's kind of the point imo
- (8:52:16 PM) TheShocker: nah, it really is easy
- (8:52:25 PM) TheShocker: especially if you know people
- (8:52:27 PM) Viny: he dug himself in to a hole with twitch
- (8:52:33 PM) TheShocker: you can get to lvl 26 in a day
- (8:52:42 PM) Azarael: public banlist when
- (8:53:11 PM) Viny: 't go public
- (8:53:22 PM) Azarael: I'm actually for a public BL
- (8:53:27 PM) Azarael: don't buy any of the arguments against
- (8:53:49 PM) Viny: just delete characters entirely
- (8:54:06 PM) Viny: they might as well keep theirs
- (8:54:11 PM) Azarael: indeed
- (8:54:23 PM) TheShocker: good point, viny
- (8:54:39 PM) Viny: that way you can keep banlist private
- (8:54:43 PM) TheShocker: wipe account mail too though
- (8:54:44 PM) Viny: people just make same char and start over
- (8:54:52 PM) Viny: if you cheat
- (8:55:03 PM) Azarael: (noone will ever spot the change in renown rank)
- (8:55:03 PM) Viny: and they don't have to make alts and explain people what happened
- (8:55:07 PM) TheShocker: actually, don't even need to ban
- (8:55:17 PM) TheShocker: just make them rank 1 rr 1 and delete all items
- (8:55:30 PM) TheShocker: and buy back, mail, bank
- (8:55:39 PM) TheShocker: and trade skills
- (8:55:50 PM) Viny: how do you handle impact of exploits
- (8:55:55 PM) Viny: people can hide money pretty well
- (8:56:04 PM) Azarael: and whenever a wipe is proposed to deal with it
- (8:56:10 PM) Viny: unless the server logs the ever loving shit out everything how d oyou know what happened to the money
- (8:56:11 PM) Azarael: people scream about the Apocalypse
- (8:57:00 PM) Viny: wipe hits a lot of honest players
- (8:57:06 PM) Viny: beta or no beta they get fucked over
- (8:57:19 PM) TheShocker: can you get a trail of transactions, Azarael, or does that branch out too much too fast?
- (8:57:32 PM) Azarael: don't think we take backups
- (8:57:36 PM) Azarael: not frequently
- (8:57:37 PM) TheShocker: rollbacks require so much resources
- (8:57:43 PM) Viny: yeah ikno :<
- (8:57:57 PM) Viny: for a small project like this not an option usually
- (8:58:32 PM) TheShocker: I honestly think it shouldn't even be a priority
- (8:58:55 PM) TheShocker: you're wasting resources on cheaters, basically
- (8:59:01 PM) TheShocker: with the odd person who loses an item
- (8:59:14 PM) TheShocker: which gets restored automatically 99% of the time
- (8:59:27 PM) Azarael: that should stop next patch anyway
- (8:59:37 PM) Azarael: server will finally load characters / items / mails on demand instead of automatically
- (8:59:56 PM) TheShocker: haven't had that problem in a while tbh, but I've seen reports on the forum recently
- (9:00:03 PM) Azarael: should also mean not having to wait 6 years for the worldserver to reboot
- (9:00:39 PM) TheShocker: I actually laughed my ass off when I found out I was in orvr without boots or a staff on my BW once XD
- (9:00:52 PM) TheShocker: luckily I was at a keep during defence
- (9:02:43 PM) Azarael: I hear that
- (9:03:12 PM) Viny left the room (quit: Quit: Page closed).
- (9:04:40 PM) TheShocker: I should do that thing too with the sleeping
- (9:04:56 PM) Azarael: Indeed. So should I.
- (9:05:10 PM) Azarael: nn o/
- (9:05:17 PM) ***TheShocker goes do the bed thing
- (9:17:29 PM) Macavity left the room (quit: Signed off).
- (9:47:29 PM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (9:48:11 PM) The topic for #martyrs_square is: login server may be down, not saying it's aliens, but... ALIENS || http://returnofreckoning.com/join.php
- (9:48:11 PM) Topic for #martyrs_square set by TheShocker at 5:44:40 PM on 11/2/2015
- (10:47:54 PM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (11:54:53 PM) The topic for #martyrs_square is: login server may be down, not saying it's aliens, but... ALIENS || http://returnofreckoning.com/join.php
- (11:54:53 PM) Topic for #martyrs_square set by TheShocker at 5:44:40 PM on 11/2/2015
- (11/6/2015 12:57:33 AM) ZonderSchaduw [webchat@apn-95-41-179-140.dynamic.gprs.plus.pl] entered the room.
- (12:58:05 AM) ZonderSchaduw left the room (quit: Quit: Page closed).
- (1:48:32 AM) Reine_Noir [webchat@ppp-94-68-247-178.home.otenet.gr] entered the room.
- (1:50:25 AM) Reine_Noir: Anyone else having trouble logging in or staying logged in?
- (2:02:25 AM) Reine_Noir: we're getting ddosed again!
- (2:33:24 AM) Reine_Noir left the room (quit: Ping timeout).
- (3:54:44 AM) blastoise [webchat@194.151.7.200] entered the room.
- (3:55:03 AM) blastoise left the room (quit: Quit: Page closed).
- (6:30:08 AM) Macavity [~Macavity@Macavity.users.quakenet.org] entered the room.
- (6:37:05 AM) sinisterror [sinisterro@87-100-207-2.bb.dnainternet.fi] entered the room.
- (6:56:56 AM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (7:01:33 AM) TheShocker: hey
- (7:47:47 AM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (8:04:13 AM) Elratie: https://www.youtube.com/watch?v=NM15y9yu7AU lol
- (8:20:39 AM) TheShocker: leveling my chosen in t1, he's lvl 3 still. order had just taken shrine, some destro were coming up the ramp, so I rode around and just capped the flag without even getting off my horse XD
- (8:22:42 AM) Viny: I'm disappointed he's not 26 yet
- (8:24:01 AM) blastoise [webchat@194.151.7.200] entered the room.
- (8:24:16 AM) blastoise left the room (quit: Quit: Page closed).
- (8:24:55 AM) niblolkik [webchat@88-106-190-100.dynamic.dsl.as9105.com] entered the room.
- (8:25:08 AM) niblolkik: level 11 12str ring vanished from inventory u_u
- (8:27:31 AM) TheShocker: hard to level in t1 atm, viny
- (8:28:38 AM) Elratie: can´t be harder than it was with just t1 ^^
- (8:29:07 AM) Viny: maybe I should roll a lobie and help you out shocker
- (8:31:28 AM) TheShocker: there's plenty of people playing now actually, but the only wb there is bugged, so I have to solo, as a lvl 4 tank -_-
- (8:32:26 AM) TheShocker: aura spread failure, hwat's that?
- (8:32:42 AM) TheShocker: happened when I tried to join a bugged wb I think, huh
- (8:34:52 AM) Viny: make me either lag to shit or crash
- (8:35:23 AM) Elratie: the bug happens if you want to join a full wb
- (8:36:14 AM) sinisterror left the room (quit: Ping timeout).
- (8:36:23 AM) TheShocker: annoying with the bug where wbs don't show as full -_-
- (8:37:24 AM) niblolkik: IM IN WB BUT DOESNT SHOW ON UI EXCEPT FOR IN MANAGER
- (8:40:32 AM) TheShocker: just got an item called bloody aspis
- (8:40:39 AM) TheShocker: that's not nice to people with autism :(
- (8:56:24 AM) TheShocker: nope :(
- (8:56:40 AM) TheShocker: wasted so many pots because of dcs
- (9:16:05 AM) Viny left the room (quit: Quit: Page closed).
- (9:16:09 AM) TheShocker: one thing this game does really wrong is not give class defining abilities to some people before level 10
- (9:29:32 AM) Azarael [Azarael@Azarael.users.quakenet.org] entered the room.
- (9:36:04 AM) sinisterror [sinisterro@87-100-207-2.bb.dnainternet.fi] entered the room.
- (10:09:44 AM) TheShocker: I have a brilliant idea, Azarael
- (10:10:04 AM) TheShocker: you know how people keep asking for a way to turn xp off so they can stay in tier X because they like it so much better there?
- (10:10:37 AM) TheShocker: you should allow that, but it makes them level 2, 12, 22, or 32 depending on which tier they're in
- (10:10:56 AM) TheShocker: and then they can stay in that tier forever and have all the fun in the world :O
- (10:18:50 AM) TheShocker: I will assume you are simply stunned into silence by the absolute brilliance of my plan
- (10:24:51 AM) TheShocker: it's ok, I understand, not every day you're confronted with sheer genius
- (10:25:10 AM) TheShocker: sorry, just tired of people asking for xp lock :P
- (10:53:07 AM) niblolkik left the room (quit: Quit: Page closed).
- (11:05:36 AM) Rottenpotato [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (11:06:23 AM) TheShocker: hey :)
- (11:06:44 AM) TheShocker: was playing my chosen earlier and someone said potato but it wasn't you :(
- (11:09:21 AM) Rottenpotato: thought u only play order :O
- (11:10:14 AM) TheShocker: he's only level 4 or 5 atm
- (11:10:30 AM) TheShocker: you knew I made a WE too
- (11:10:51 AM) Rottenpotato: still not banned? :P
- (11:11:02 AM) Azarael: was getting around to it
- (11:11:19 AM) TheShocker: Y U HAET DICKSUCKING? :(
- (11:11:20 AM) Azarael: your new name shall be ToSBreach200
- (11:11:24 AM) Azarael: I hope you will be proud of it
- (11:11:46 AM) Rottenpotato: RIP Dicksucking
- (11:11:57 AM) TheShocker: do you do that btw, rename characters? seen some InvalidNames walking around
- (11:12:13 AM) Azarael: invalidname# means they were using cyrillic in their name before the restrictions on it
- (11:12:22 AM) Azarael: tosbreach# means they named their char something explicit or offensive
- (11:12:36 AM) TheShocker: thought it was either that or server communication problems
- (11:12:46 AM) TheShocker: dicksucking is neither of those
- (11:13:04 AM) TheShocker: YOU HAVEN'T HEARD THE LAST OF THIS
- (11:13:15 AM) TheShocker: you have, actually XD
- (11:13:20 AM) Azarael: I've not heard the last of so very many things that this doesn't trouble me :D
- (11:13:34 AM) Rottenpotato: you missing all the fun Aza :(
- (11:13:44 AM) Genisaurus [webchat@50-207-204-190-static.hfc.comcastbusiness.net] entered the room.
- (11:13:48 AM) TheShocker: shame I never got to give her the last name Ducklips :(
- (11:13:59 AM) TheShocker: you in STK, Rottenpotato?
- (11:14:10 AM) TheShocker: Elratie: INORITE?
- (11:14:33 AM) Elratie: no idea what you mean with this :D
- (11:15:09 AM) TheShocker: it's idiot speak for 'I know, right?'
- (11:15:43 AM) Rottenpotato: no im not on btw
- (11:15:48 AM) Rottenpotato: why whats up?
- (11:15:57 AM) TheShocker: huge order zerg attacking it
- (11:16:07 AM) TheShocker: watching a twitch stream atm
- (11:16:27 AM) TheShocker: he's playing arthurconandok
- (11:16:55 AM) Rottenpotato: when i saw the name i loled :P
- (11:17:00 AM) TheShocker: uhuh XD
- (11:17:11 AM) TheShocker: I don't think many people get the name though
- (11:17:45 AM) Rottenpotato: yeh that makes it even better :D
- (11:17:52 AM) TheShocker: door's down! lagfest time!
- (11:18:17 AM) TheShocker: my WH on live was called McCarthy
- (11:18:22 AM) TheShocker: very few people got that XD
- (11:18:36 AM) Threxx [webchat@HSI-KBW-109-192-014-148.hsi6.kabel-badenwuerttemberg.de] entered the room.
- (11:18:50 AM) Genisaurus: That's pretty brilliant
- (11:19:12 AM) Rottenpotato: were u on KN?
- (11:19:27 AM) TheShocker: I macroed 'are you or have you ever been a member of the communist party' on one ability sometimes
- (11:19:32 AM) ***Elratie slaps Threxx around a bit with a large trout
- (11:19:49 AM) TheShocker: well, norn in the end I guess
- (11:20:16 AM) Rottenpotato: someone's mad on the stream :P
- (11:20:24 AM) TheShocker: uhuh XD
- (11:20:44 AM) TheShocker: back in a bit, got to pick up my wife and then cook dinner
- (11:20:57 AM) TheShocker: with refried beans
- (11:25:29 AM) Genisaurus left the room (quit: Quit: Page closed).
- (11:28:00 AM) Rottenpotato: good luck :3
- (11:48:12 AM) Noiree [~noiree@p5B345DA3.dip0.t-ipconnect.de] entered the room.
- (11:55:56 AM) Rottenpotato left the room (quit: Quit: Page closed).
- (12:22:39 PM) Elratie_afk is now known as Elratie
- (12:48:27 PM) Viny_ [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (12:52:15 PM) Viny_ left the room (quit: Quit: Page closed).
- (1:21:48 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (1:46:15 PM) Elratie: hi
- (1:56:32 PM) Rottenpotato [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (1:57:55 PM) ***Threxx slaps Elratie around a bit with a large fishbot
- (2:45:27 PM) Jojo^^ [~Jojo@Jojo1337.users.quakenet.org] entered the room.
- (3:02:05 PM) sinisterror left the room (quit: Read error: Connection reset by peer).
- (3:16:20 PM) Rottenpotato left the room (quit: Quit: Page closed).
- (3:37:38 PM) Noiree: welcome message says I'm not allowed to be a dick, but I got no dick so this is the only way to getting close to having one... HOW can you keep me away from my dreams, TheShocker?
- (3:38:15 PM) Viny: just wow
- (3:49:00 PM) zz__ [webchat@x4db11476.dyn.telefonica.de] entered the room.
- (3:51:14 PM) zz__ left the room (quit: Quit: Page closed).
- (4:16:12 PM) TheShocker: Noiree: it says that if you are being a dick you should do it well too, so don't worry ;)
- (4:20:01 PM) Elratie: seems the game got more bugged than evea
- (4:20:04 PM) Viny: TheShocker: streams up if you wana mod a little
- (4:50:17 PM) Jojo^^ left the room (quit: Signed off).
- (5:26:14 PM) Noiree left the room (quit: Read error: Connection reset by peer).
- (6:03:32 PM) Valnak: did everyone at mandreds just dc
- (6:16:37 PM) Threxx left the room (quit: Quit: Page closed).
- (6:22:03 PM) TheShocker: I swear I get a small lag spike every couple of seconds when I'm in nordenwatch
- (6:22:19 PM) TheShocker: so weird
- (6:35:57 PM) Viny: laters TheShocker thanks for hanging out with us
- (6:36:16 PM) TheShocker: and sorry, I know I'm a seriously shitty healer XD
- (6:37:03 PM) TheShocker: I'm better at tanking and dps, somehow I just lose track of my surroundings when I heal XD
- (6:40:03 PM) TheShocker: awww
- (6:43:26 PM) Viny left the room (quit: Quit: Page closed).
- (6:52:48 PM) TommyB [webchat@68-184-116-252.dhcp.smyr.ga.charter.com] entered the room.
- (6:53:27 PM) TommyB: or just meh
- (6:53:49 PM) TheShocker: no idea, logged off half an hour ago myself
- (6:54:42 PM) Valnak: aww i was trying to level my int seeds
- (6:54:51 PM) TheShocker: :(
- (6:55:05 PM) Nkhiar [webchat@dynamic-78-8-40-160.ssp.dialog.net.pl] entered the room.
- (6:55:05 PM) TheShocker: which side do you play on? I can send you some if you're order
- (6:55:15 PM) TheShocker: sorry mate :(
- (6:55:25 PM) Valnak: just a minor annoyance, thanks though
- (6:55:27 PM) TheShocker: fucking hate it when I lose my only upgrades :|
- (6:55:46 PM) TheShocker: could ask in /ad if you can just borrow some from someone
- (6:55:57 PM) TheShocker: done that myself successfully :D
- (6:56:06 PM) Nkhiar: Hate is good. (BG here :P)
- (6:56:21 PM) Valnak: blue vial, 200 modifiers
- (6:56:25 PM) TheShocker: I know Nkhiar, I was the chosen that called you arrogant earlier on today XD
- (6:56:39 PM) TheShocker: yeah, extender multi and goldweed
- (6:56:58 PM) Nkhiar: ah! it was you... you inferior dog :P Nice to see you ;)
- (6:57:03 PM) TheShocker: I never bother with higher vials myself
- (6:57:14 PM) TheShocker: was leveling my destro alt, got bored on order
- (6:57:32 PM) TheShocker: the vials are too expensive imo :
- (6:57:35 PM) Valnak: toughness is from butchering right?
- (6:57:38 PM) TheShocker: yup
- (6:57:40 PM) Valnak: yeah they are quite expensive
- (6:57:53 PM) TheShocker: at least I think it's spiders
- (6:58:01 PM) Valnak: i'll level a mara or something
- (6:58:06 PM) Valnak: chosen is quite bad at aoe farming at this level it seems
- (6:58:15 PM) TheShocker: yeah they are :
- (6:58:39 PM) TheShocker: they're pretty good at aoe farming
- (6:58:47 PM) Valnak: i noticed but i love the melee in this game
- (6:59:04 PM) TheShocker: they're a bit easier to not die too, mdps ;)
- (6:59:25 PM) Valnak: i was gonna go with 4 characters eventually chosen/ mara or choppa / sorc or sh / zealot or shaman
- (6:59:27 PM) Sparrer78 [webchat@sparrer78.static.corbina.ru] entered the room.
- (6:59:40 PM) Nkhiar: Do we have a maintenance reset now?
- (6:59:44 PM) TheShocker: and not sure what my main is
- (6:59:56 PM) Valnak: i'm not 40 on my chosen yet so i'm sticking with that for right now
- (7:00:12 PM) Valnak: guess i'll go play call of warhammer a bit
- (7:00:13 PM) TheShocker: Nkhiar: not sure, not ingame atm, but more people asked that
- (7:00:26 PM) Valnak: http://www.returnofreckoning.com/index.php
- (7:00:31 PM) Valnak: i think it's down
- (7:00:39 PM) Nkhiar: ah
- (7:00:45 PM) Valnak: oh it's back up sorta
- (7:00:56 PM) Valnak: 9
- (7:01:10 PM) TheShocker: I blame zergers :P
- (7:01:13 PM) Sparrer78: Been wondering, is there any reason to actually go for rr40? Are we going to see conq and invader sets available in T3 level range?
- (7:01:25 PM) Valnak: sparrer: 1 extra mastery point, more stats from rr
- (7:01:34 PM) TheShocker: doubt it, bet we'll see t3 open first, Sparrer78
- (7:01:55 PM) TheShocker: and yeah, the renown abilities plus mastery point are really nice to have
- (7:02:14 PM) TheShocker: speaking of renown, everyone should use the advanced renown trainer addon
- (7:02:42 PM) TheShocker: yeah, looking them up now
- (7:02:42 PM) Valnak: i need a buff addon too, the default keeps breaking for me
- (7:02:55 PM) TheShocker: https://dl.dropboxusercontent.com/u/3281245/Gorram_004.jpg
- (7:03:00 PM) TheShocker: https://dl.dropboxusercontent.com/u/3281245/Gorram_005.jpg
- (7:03:03 PM) TheShocker: https://dl.dropboxusercontent.com/u/3281245/Gorram_006.jpg
- (7:03:05 PM) TheShocker: https://dl.dropboxusercontent.com/u/3281245/Gorram_007.jpg
- (7:03:10 PM) Valnak: https://puu.sh/laVj2/8cb784b31e.jpg
- (7:03:17 PM) Valnak: my targets always look like this
- (7:03:17 PM) TheShocker: makes it look like before patch 1.4.2 again
- (7:03:22 PM) TheShocker: or was that 1.4.0
- (7:03:40 PM) Valnak: oh crap i forgot it looked like that
- (7:03:43 PM) Sparrer78: Been using it but it appears the points reset after relog. Maybe they don't reset but it's not shown on char or ability tab or anywhere else
- (7:03:49 PM) Valnak: yeah i have buffhead but it's not quite what i'm asking for
- (7:03:51 PM) TheShocker: Sparrer78: does that no matter what :
- (7:04:01 PM) TheShocker: I just respec every time I get more points
- (7:04:11 PM) TheShocker: good thing it's free for renown abilities
- (7:04:32 PM) TheShocker: that scrolldown list is just such a horrible interface for it
- (7:04:50 PM) TheShocker: oh you mean your enemy target Valnak?
- (7:05:06 PM) TheShocker: it's a problem with the server, Azarael explained that to me here yesterday
- (7:05:19 PM) TheShocker: somehow the server doesn't send the packets that tell you buffs have run out
- (7:05:34 PM) TheShocker: he didn't have a clue why yet, but I bet they're looking into it
- (7:05:47 PM) Valnak: like the game knows the buffs aren't there
- (7:05:53 PM) TheShocker: so nothing you can do about it in the mean time
- (7:06:04 PM) TheShocker: I see it on mobs too even
- (7:06:12 PM) Valnak: gotcha
- (7:06:23 PM) TheShocker: they have like aao, pot buffs, etc, all with 0 sec
- (7:06:31 PM) Valnak: also, ever seen a dueler in a scenario?
- (7:06:41 PM) Valnak: someone who was dueling then accepted a scenario before ending the duel
- (7:06:51 PM) TheShocker: you mean they look like an enemy mob?
- (7:06:58 PM) TheShocker: seen that in TC warcamp even
- (7:07:06 PM) TheShocker: the shitty thing is you can't kill them XD
- (7:07:07 PM) Valnak: you can tab to them, target them but you can't attack them
- (7:07:10 PM) Valnak: don't know if you can heal them though
- (7:07:28 PM) TheShocker: if I wasn't complete shit as a healer I'd try it XD
- (7:07:59 PM) TheShocker: I want to level my chosen, but earlier today it was slim pickings :(
- (7:08:06 PM) TheShocker: they just look so awesome XD
- (7:08:30 PM) Valnak: i didn't notice the nerf to quake for a while
- (7:08:41 PM) Valnak: can't complain since quake is still op
- (7:08:59 PM) TheShocker: what was the nerf again? only started playing him a week or two, three back
- (7:09:04 PM) TheShocker: also, what does quake do again? XD
- (7:09:11 PM) Valnak: cone stagger
- (7:09:23 PM) TheShocker: yeah, still plenty tbh
- (7:09:25 PM) Valnak: kotbs and chosen have it, kotbs' is much much cooler
- (7:09:36 PM) TheShocker: kotbs have such awesome animations
- (7:09:45 PM) Valnak: i played one on live, was great times
- (7:10:09 PM) TheShocker: I have one that's level 15 now I think, sword and board, loads of fun already
- (7:10:27 PM) Valnak: shatter confidence, dirty tricks, the str aura giving +10% crit
- (7:10:32 PM) TheShocker: been having fun with a total troll build grenadier engi lately XD
- (7:10:38 PM) TheShocker: so much fun at keep defenses
- (7:10:39 PM) Valnak: but the damage portion of kotbs
- (7:10:44 PM) Valnak: so annoying to try to do damage
- (7:10:53 PM) Valnak: chosen has much nicer damage stuff
- (7:11:00 PM) TheShocker: yeah, not even trying that tbh, just being support
- (7:11:17 PM) TheShocker: chosen has better synergy, spirit damage
- (7:11:41 PM) Valnak: but you're going very high up a tree for damage when you still suck at it
- (7:12:31 PM) Valnak: OYG is much better than the chosen equiv, but chosen get a much better aoe heal debuff since chosen is incoming, kotbs is outgoing
- (7:12:42 PM) TheShocker: crit on parry is nice from kotbs
- (7:13:15 PM) TommyB left the room (quit: Quit: Page closed).
- (7:13:28 PM) TheShocker: sometimes an outgoing heal debuff is so much better
- (7:13:39 PM) Valnak: you're right, but you'd be negating guard at that point
- (7:14:04 PM) TheShocker: I like the BW incoming heal debuff one that does damage to the healer
- (7:14:15 PM) Valnak: i think chosen actually get that
- (7:14:21 PM) Valnak: or a modified version
- (7:14:31 PM) TheShocker: BWs get it earlier I think
- (7:14:36 PM) TheShocker: not sure tbh
- (7:14:54 PM) Valnak: chosen's is actually on the 2nd ability they get, but they need to tactic it for the healer damage
- (7:15:20 PM) TheShocker: immolation, 5 point ability
- (7:15:28 PM) TheShocker: well, 6, you need to spend the point on it
- (7:15:54 PM) TheShocker: so annoyed I can't have that AND withering heat and the ignition tactic at level 26 :(
- (7:16:18 PM) Valnak: withering is so nice
- (7:16:21 PM) Valnak: :)
- (7:16:25 PM) TheShocker: http://waronlinebuilder.org/#career=bw;0;9;0;;5:7:9:;;;0:0:0:0:
- (7:16:42 PM) TheShocker: been playing alts too much
- (7:17:09 PM) TheShocker: finally found a guild that does small group roaming, been playing him more the last week
- (7:17:23 PM) TheShocker: bw solo or in pugs sucks balls
- (7:17:28 PM) TheShocker: the kings own
- (7:17:52 PM) TheShocker: they only started a few weeks back on the server, all old players though
- (7:18:34 PM) Valnak: very active?
- (7:18:52 PM) TheShocker: yeah, got a group almost every day
- (7:18:59 PM) TheShocker: and helping people power level
- (7:19:22 PM) TheShocker: personally I want my rr to always be higher than my level XD
- (7:19:45 PM) Valnak: i figure it's a lot easier to level once you're capped than vice versa
- (7:19:58 PM) TheShocker: and you're less useless imo
- (7:20:05 PM) Valnak: at least you'll have all your abilities
- (7:20:16 PM) TheShocker: lvl 26 with no renown points to spend is still weak XD
- (7:20:29 PM) Valnak: level renown once level capped*
- (7:21:04 PM) TheShocker: when I leave t1 my rr is usually in the 20s already on my toons XD
- (7:21:29 PM) TheShocker: it can be, it can be hell too :|
- (7:21:37 PM) TheShocker: people camping warcamp exits sucks
- (7:21:39 PM) Valnak: i couldn't remember how to look for open groups for a week
- (7:21:48 PM) TheShocker: plus people not leaving even though they're lvl 12+
- (7:21:59 PM) TheShocker: 12
- (7:22:18 PM) TheShocker: think they may have changed it today, someone said that in the party I was in earlier
- (7:22:44 PM) TheShocker: yeah, they changed it to 15 on live because they made the stupid mistake to let people play for free in t1 XD
- (7:22:50 PM) TheShocker: so many twinks back then, so op
- (7:23:11 PM) TheShocker: back then you had white armor with 2 tally slots
- (7:23:20 PM) TheShocker: yup
- (7:23:34 PM) TheShocker: had a chosen twink back then that had toughness capped
- (7:23:43 PM) Valnak: every hit?
- (7:23:45 PM) TheShocker: could walk around in a warband of order without going down
- (7:23:57 PM) Valnak: it's hilarious, if you put a shield on as a tank
- (7:24:04 PM) TheShocker: I KNOW XD
- (7:24:20 PM) TheShocker: people still have misconception from live
- (7:24:31 PM) Valnak: it works for me since a lot of shield tanks really do brick
- (7:24:38 PM) TheShocker: like 'SWs and engies and maguses suck'
- (7:24:49 PM) Valnak: a magus was dueling in ic the other day
- (7:25:07 PM) Valnak: sw was pretty op near the end in live
- (7:25:15 PM) Valnak: unshakeable focus + festerbomb
- (7:25:34 PM) TheShocker: plus that other +100% damage buff
- (7:25:41 PM) TheShocker: nagaryths revenge or something?
- (7:25:50 PM) Valnak: couldn't tell you, i didn't play one
- (7:26:02 PM) Valnak: they seem to have a nice kit even at this level
- (7:26:13 PM) TheShocker: right now I play too many classes, and I'm actually thinking of making a WH XD
- (7:26:24 PM) TheShocker: yeah, 2k isn't all that weird atm
- (7:26:42 PM) Valnak: then again it seems like everything can hit for 1.5k
- (7:26:49 PM) Valnak: that black orc dude's pic was awesome
- (7:26:59 PM) TheShocker: got a BW, SW, engie, slayer, kotbs, IB, AM, chosen and WE right now
- (7:27:22 PM) TheShocker: BOs with a 2H and glass cannon build were ridiculous on live too
- (7:27:45 PM) TheShocker: was watching an old video of one a few days back
- (7:27:58 PM) Valnak: parvun inspired me to make a BO on live
- (7:28:04 PM) Valnak: worked better than i expected
- (7:28:20 PM) TheShocker: https://www.youtube.com/watch?v=6Wwu76p0qA8 that one
- (7:28:26 PM) Valnak: yep
- (7:28:36 PM) Valnak: and lucky
- (7:28:45 PM) Valnak: he had the +6% crit chest from altdorf siege
- (7:29:02 PM) Valnak: at this specific video
- (7:29:07 PM) Valnak: the 'wot armor' and m1 stacked
- (7:29:21 PM) Valnak: then again he has like 5
- (7:29:32 PM) Valnak: the last few i think he has rr100 gear
- (7:29:40 PM) TheShocker: such a shame the video quality of old vids is so shitty, would love to be able to see things better
- (7:30:02 PM) TheShocker: was watching a video of a 2H IB roaming a while back too
- (7:30:34 PM) TheShocker: just like AM/shammies now with the right build
- (7:30:46 PM) Valnak: bad
- (7:32:06 PM) TheShocker: can't keep track of how often I tell people 'don't follow that shammie, he'll fuck you up' XD
- (7:32:28 PM) TheShocker: about as often as I tell them 'don't follow sekundus, he'll fuck you up' XD
- (7:32:42 PM) TheShocker: respect the shammies a lot more because they do it solo, though
- (7:32:56 PM) Valnak: some good players, some semi-retarded
- (7:33:20 PM) Valnak: one guy joins scenarios as a dps dok, demands guards and pocket healers from pugs
- (7:33:47 PM) TheShocker: I see that a lot with BWs in t1
- (7:34:12 PM) TheShocker: just keep that combustion at 100 and demand heals and guard XD
- (7:35:39 PM) TheShocker: thing is, sekundus isn't a bad player, seen him melt a zerg with a good 6 man group, but most of the time I see him ganking lowbies, which is just so unrewarding imo
- (7:36:07 PM) Valnak: i didn't mean to imply otherwise if i did
- (7:36:24 PM) TheShocker: wasn't suggesting he's bad btw
- (7:36:31 PM) TheShocker: I've seen better sorcerers though
- (7:37:14 PM) TheShocker: on live when I was leveling my BW there was this one sorc, can't remember their name, they were always just 1 or 2 levels above me, had such great battles with that one :)
- (7:37:37 PM) Valnak: i will never understand
- (7:37:46 PM) Valnak: why euros like this game so much more than people from NA
- (7:37:49 PM) TheShocker: remember there was a set of 3 jewelry pieces, each had a different huge amount of resist?
- (7:38:03 PM) Valnak: from lairs or something?
- (7:38:16 PM) Valnak: oh right
- (7:38:22 PM) Valnak: i think it was like 4 of them or more
- (7:38:23 PM) TheShocker: or maybe it was from achievements?
- (7:38:26 PM) TheShocker: could be, yeah
- (7:38:33 PM) Valnak: something small
- (7:38:38 PM) TheShocker: I /always/ had the spirit resit one in my bags XD
- (7:38:45 PM) TheShocker: just in case I ran into that one sorc XD
- (7:39:02 PM) TheShocker: think it was tome unlocks, now that I think about it
- (7:39:12 PM) Valnak: http://warhammeronline.wikia.com/wiki/Strife
- (7:39:22 PM) Valnak: http://warhammeronline.wikia.com/wiki/Torment_%28item%29
- (7:39:23 PM) TheShocker: really hope they implement tome unlock gear
- (7:39:31 PM) TheShocker: yeah, those are the ones :D
- (7:40:27 PM) TheShocker: like the time piece on order, not sure destro had that one
- (7:40:37 PM) Valnak: that gave armor
- (7:40:44 PM) Valnak: that also was a cure-all
- (7:40:46 PM) TheShocker: yeah, remember that one too
- (7:40:58 PM) Valnak: there was also the corpse chest pocket thing
- (7:41:00 PM) TheShocker: that one was seriously nice for scs
- (7:41:05 PM) Valnak: that made you immune to something for a very short time
- (7:41:31 PM) TheShocker: remember the halloween even items? like the gobbo mask?
- (7:42:06 PM) TheShocker: can't believe I actually miss some of those pve items
- (7:42:12 PM) Valnak: i remember farming like 3k snotlings on a warrior priest
- (7:42:16 PM) Valnak: and got 2 battle brew backpacks
- (7:42:21 PM) Valnak: sold one for 2k gold kept the other like 2 years
- (7:42:50 PM) Valnak: http://warhammeronline.wikia.com/wiki/Kossar's_Helm
- (7:42:54 PM) TheShocker: remember farming undead for the tome unlock to get damage reduction for lotd lairs and tovl
- (7:43:28 PM) TheShocker: hah, nice, remember that one XD
- (7:44:46 PM) Valnak: no game has even come close to the tome yet :(
- (7:47:08 PM) TheShocker: fact that the tier sets have tome unlocks makes me happy, means that they've at least implemented the functionality already :)
- (7:49:16 PM) TheShocker: one thing I REALLY want is the serpent's spine sc
- (7:59:45 PM) TheShocker: someone stole my WHs name :(
- (8:00:04 PM) TheShocker: a lvl 1 IB called mccarthy. <rage>
- (8:22:45 PM) Sparrer78 left the room (quit: Quit: Page closed).
- (8:40:57 PM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (8:47:36 PM) Viny left the room (quit: Quit: Page closed).
- (9:15:28 PM) TheShocker: YES BUT ALSO SLIGHTLY DRUNK
- (9:32:58 PM) TheShocker: heh, made a WH, joined a wb for orvr while waiting for queues to pop, saw a lvl 11 WH need on a shoulder item he didn't need, whispered to him if I could have it. he gave me a shitload of gear, like 10 items. guy dcs, and while he's gone I get this lvl 11 blue belt. he comes back, I gave him the belt, he almost wouldn't take it XD
- (9:34:24 PM) Nkhiar: I've participated in two Tier2 locks today and didn't got a single medal for either :(
- (9:35:11 PM) Valnak: i never have
- (9:35:43 PM) Nkhiar: how else are we supposed to buy T2 items for oRvR medals w/o medals? :P
- (9:36:44 PM) Nkhiar: it happened to me on T1 one day. i was like 'cool I went through 5 locks, I should have enough medals for... wait what? not a single one :/ ' no idea why it sometimes happens :(
- (9:38:17 PM) TheShocker: you don't get medals for the locks there :(
- (9:38:39 PM) TheShocker: had it on t1 too on my engi, didn't get medals for 3 out of 5 locks while in t1 :|
- (9:39:05 PM) TheShocker: kept relogging hoping it'd fix it, but nope :|
- (9:39:29 PM) TheShocker: Nkhiar: t2 items were added back again just last week I think
- (9:39:50 PM) TheShocker: they removed them all after an exploit allowed people on destro to basically buy an unlimited amount
- (9:40:10 PM) TheShocker: that was a few months back, only added them again recently
- (9:40:27 PM) TheShocker: REALLY wish we'd get medals for locks in t2 though
- (9:40:33 PM) Nkhiar: so nobody has such item on them but they exist at vendors?
- (9:40:44 PM) TheShocker: nah, they were even removed from the vendors
- (9:40:54 PM) TheShocker: and all existing items were wiped in the database
- (9:41:02 PM) TheShocker: so nobody had them anymore afaik
- (9:41:46 PM) Nkhiar: I am confused now. I'm talking about Obliterator's set at the moment
- (9:41:59 PM) TheShocker: the t2 set
- (9:42:05 PM) Nkhiar: looking at it at vendor now :/
- (9:42:16 PM) TheShocker: yeah, they exist again now
- (9:42:26 PM) TheShocker: like I said, put back in last week, or two weeks ago
- (9:42:53 PM) Nkhiar: hmmm, I guess I'll focus on scenarios in such case
- (9:43:13 PM) TheShocker: you can get better green gear from vendors in IC mate
- (9:43:26 PM) TheShocker: well, not sc weapons, those are still really good
- (9:43:46 PM) TheShocker: forget what it's called, in IC, bottom of the map, there are renown gear vendors
- (9:44:06 PM) Nkhiar: like in Altdorf in War Quarters probbaly
- (9:44:09 PM) TheShocker: they basically have the best armor except for the epic weird pieces
- (9:44:32 PM) TheShocker: for BW for instance they have a staff with 90 int
- (9:44:32 PM) Nkhiar: I guess I'll have to go there after a bit of leveling, yes.
- (9:44:40 PM) TheShocker: yeah, you should check it
- (9:44:54 PM) TheShocker: they have renown requirements, but they're a cheap option for getting great stuff
- (9:46:44 PM) TheShocker: that's actually something I really like, you can get awesome gear for a few silver atm
- (9:47:12 PM) TheShocker: literally nothing costs even 1 gold
- (9:47:52 PM) TheShocker: think it's 70-something silver for the most expensive stuff
- (9:48:27 PM) Nkhiar: ..not that getting gold is a problem, while farming for talisman ingredients
- (9:48:39 PM) TheShocker: or doing the kill quests
- (9:49:21 PM) TheShocker: or selling those stupid white drops, they seriously add up XD
- (9:54:32 PM) TheShocker: I do the kill quest thing in all warcamps while queueing often, when you get out, requeue, travel to all wcs to collect, usually you manage to collect all 6 before a pop
- (9:55:44 PM) TheShocker: was in a murderball sc before, think it was morkain, and I collect the thingie, and then I don't get healed by the AM that's standing right next to me
- (9:56:12 PM) TheShocker: so I die, and the bloody AM picks it up, and when I said it's nice if the carrier gets healed he says it's nice if you defend the carrier
- (9:56:29 PM) TheShocker: I asked why? you're not healing me, why should I protect you?
- (9:56:39 PM) TheShocker: answer: because I was carrying the item
- (9:57:45 PM) Nkhiar: I can't seem to find anywhere npc selling t2 scenario (medalions) stuff :/
- (9:58:32 PM) Nkhiar: I went to southern part, there are some npc's with renown armor and weapon, including orvr sets
- (9:58:41 PM) Nkhiar: but none of them has medalion items
- (9:58:50 PM) TheShocker: is the name of the npc, I think
- (9:59:34 PM) TheShocker: yeah, http://www.returnofreckoning.com/forum/viewtopic.php?t=4867&f=2
- (10:00:49 PM) Nkhiar: yeah, but he's not there :D not with all other vendors. Bugger went for a lunch break or is hidden in some obvious place
- (10:01:35 PM) TheShocker: haven't been there in RoR so far, so I don't really know, just info I got from a destro player recently :
- (10:04:56 PM) Nkhiar: on main plaza, standing in the open
- (10:05:05 PM) Nkhiar: not in the south war quarter :P
- (10:05:42 PM) TheShocker: glad you found him :)
- (10:06:59 PM) Nkhiar: need lvl 20, but these items from him look kick ass....
- (10:07:26 PM) TheShocker: not kidding, those weapons are some of the best you can get
- (10:08:28 PM) Nkhiar: http://www.arsenalofwar.com/items/Destruction/Titan's%20Glaive%20of%20Brutality
- (10:09:19 PM) TheShocker: how I miss those
- (10:09:49 PM) TheShocker: what was that instance in chaos wastes? bastion stairs?
- (10:10:14 PM) TheShocker: that one had a wing where you could get some of the best weapons before the city siege ones
- (10:10:35 PM) TheShocker: still pissed off they changed it so 2H weapons couldn't have two of the same tallies :|
- (10:10:49 PM) TheShocker: should petition the devs to revert that stupid limitation
- (10:11:28 PM) TheShocker: I should go to bed, it's 4AM here :P
- (10:11:51 PM) Nkhiar: nn
- (11/7/2015 12:06:32 AM) Macavity left the room (quit: Signed off).
- (12:07:57 AM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (1:46:27 AM) The topic for #martyrs_square is: login server may be down, not saying it's aliens, but... ALIENS || http://returnofreckoning.com/join.php
- (1:46:27 AM) Topic for #martyrs_square set by TheShocker at 5:44:40 PM on 11/2/2015
- (6:07:01 AM) Nkhiar: Soundtrack for my scenarios as BG :P https://www.youtube.com/watch?v=yPGKlb8hklQ&feature=youtu.be&t=1500
- (6:12:05 AM) TheShocker: not sure you're allowed to play slayer as a BG
- (6:12:24 AM) TheShocker: that album's a classic though
- (6:12:56 AM) TheShocker: seen them live a few times :D
- (6:18:08 AM) TheShocker: https://www.youtube.com/watch?v=uNMEbaQtMR8 this whole album's great too
- (6:21:04 AM) Nkhiar: wait what? what do you mean 'not sure if I'm allowed to play Slayer as BG' :D
- (6:21:15 AM) TheShocker: it's for Slayers of course
- (6:21:51 AM) Nkhiar: lol. they'd wish
- (6:23:12 AM) TheShocker: https://www.youtube.com/watch?v=HuO3wwLuF0w I play this sometimes when I play by BW
- (6:24:58 AM) TheShocker: big black was such a great band, but they didn't make it easy to google them
- (6:33:34 AM) TheShocker: https://www.youtube.com/watch?v=MYsBvZRXF7A more gud stuff
- (6:39:15 AM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (6:39:50 AM) TheShocker: now I have listen to Ministry for a few hours
- (6:41:13 AM) TheShocker: heya
- (7:22:12 AM) Londo: added few screenshots of Karak Eight Peaks (Greenskin capital city) http://www.returnofreckoning.com/forum/viewtopic.php?f=8&t=3405&start=50
- (7:51:41 AM) Macavity [~Macavity@Macavity.users.quakenet.org] entered the room.
- (8:04:39 AM) TheShocker: I remember seeing pictures of it on the old warhammer forums, cool Londo
- (8:09:08 AM) Londo left the room (quit: Quit: Page closed).
- (8:29:18 AM) sinisterror [sinisterro@87-100-207-2.bb.dnainternet.fi] entered the room.
- (9:22:53 AM) Elratie left the room (quit: Read error: Connection reset by peer).
- (9:36:23 AM) Viny [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (9:54:50 AM) Nkhiar left the room (quit: Ping timeout).
- (10:38:52 AM) Elratie [~Ele@p54A9C339.dip0.t-ipconnect.de] entered the room.
- (10:41:30 AM) TheShocker: lol, outdamaged a level 7 BW in an sc as a level 6 WH with starter gear and one green sword XD
- (10:41:37 AM) Potato__ [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (10:42:15 AM) Potato__: Afternoon =D
- (10:43:10 AM) Valnak: so
- (10:43:17 AM) Valnak: what resist should i be focusing on?
- (10:43:26 AM) Valnak: corp is some bw/engi
- (10:43:29 AM) Valnak: elemental is mostly bw?
- (10:43:47 AM) TheShocker: and yeah, engi is corp
- (10:43:56 AM) TheShocker: all in all, corp's a good one to invest in
- (10:44:05 AM) Valnak: just making sure, these rings i want to use don't have spirit
- (10:44:12 AM) Valnak: which leaves me uncapped on spirit with my aura
- (10:44:32 AM) Valnak: bring on the SM rapetrain
- (10:44:43 AM) TheShocker: yeah, all those SMs playing ;)
- (10:44:53 AM) Valnak: well every sc last night i played had 2
- (10:45:08 AM) Valnak: one was shield and we never hit him, he died through guard
- (10:45:19 AM) TheShocker: I see them almost every time I level a character in t1 too, actually
- (10:45:32 AM) Valnak: i tried to play a BO since i did on live
- (10:45:42 AM) Valnak: even the tiny amount of lag i have on this just makes it frustrating
- (10:46:02 AM) Potato__: why would someone even roll a BO =p
- (10:46:12 AM) Valnak: https://www.youtube.com/watch?v=6Wwu76p0qA8
- (10:46:23 AM) Valnak: i think they are legit the best tanky tank this tier
- (10:46:31 AM) Valnak: +50% block
- (10:46:56 AM) Potato__: Shocker stop roleplaying :P
- (10:47:11 AM) TheShocker: I have all this gear on my WH and I'm not high enough level to wear it :(
- (10:48:07 AM) TheShocker: 6
- (10:48:36 AM) TheShocker: so much fun running into sorcerers
- (10:48:53 AM) TheShocker: they get scared and run away, which is the stupidest thing you can do with a backstabber coming at you XD
- (10:49:03 AM) TheShocker: :D
- (10:49:14 AM) TheShocker: I do it to choppas and maras too
- (10:50:32 AM) Valnak: i will guard you
- (10:50:44 AM) Potato__: with ur BO? =p
- (10:51:47 AM) Potato__: can never say no to a pocket chosen :3
- (10:53:16 AM) TheShocker: the point of WHs is for sorces to hate them ;)
- (10:53:47 AM) Potato__: bully x2 :( come destrooooo
- (11:08:30 AM) TheShocker: yeah I should level up dicksucking
- (11:08:37 AM) TheShocker: wait, that sounded really wrong XD
- (11:08:45 AM) TheShocker: my WE called dicksucking
- (11:47:33 AM) Elratie: yeah right your WE.. :D
- (12:16:42 PM) TheShocker: this goldilocks person is driving me nuts in /ad :|
- (12:18:24 PM) Viny left the room (quit: Ping timeout).
- (12:29:19 PM) TheShocker: like a hyperactive teenage girl
- (12:31:05 PM) TheShocker: didn't know you had a WP :)
- (12:53:17 PM) Noiree [~noiree@p5B345DA3.dip0.t-ipconnect.de] entered the room.
- (1:01:23 PM) TheShocker: heya Noiree
- (1:02:11 PM) TheShocker: good, played some t1 scs earlier, got both my weapons on my WH now :)
- (1:02:17 PM) TheShocker: can't /use/ them, but I have them XD
- (1:02:26 PM) TheShocker: 3 more levels I think -_-
- (1:03:42 PM) Noiree: ya was planning to play my tiny AM later on, too
- (1:03:57 PM) Noiree: back to the bloody damn roooots
- (1:04:30 PM) TheShocker: yeah, WH was my original main too :)
- (1:04:43 PM) TheShocker: forgot how much fun they are
- (1:05:29 PM) Noiree: they're pretty stylish, too though the cup looks a bit strange
- (1:08:38 PM) TheShocker: AMs have really cool tier and dungeon sets
- (1:08:44 PM) TheShocker: earlier than WHs get them imo
- (1:09:10 PM) TheShocker: WH started looking cool only from invader onward imo
- (1:09:30 PM) Potato__: i wanna punch him
- (1:09:33 PM) TheShocker: I dunno -_-
- (1:09:41 PM) TheShocker: punch him in the penus
- (1:10:04 PM) TheShocker: where else ya gonna punch, right?
- (1:10:19 PM) Noiree: just a sad excuse to touch that guy'spenis
- (1:10:42 PM) Potato__: now u know Noiree :(
- (1:13:06 PM) TheShocker: you don't need an excuse to touch a guy's penis
- (1:14:18 PM) Noiree: just a toilet... and good running shoes
- (1:14:54 PM) TheShocker: you mean use his foreskin to make running shoes? OMG THAT'S HORRIBLE HOW CAN YOU THINK THAT? :O
- (1:15:23 PM) TheShocker: I KNOW RIGHT???
- (1:17:05 PM) Noiree: welp... could be problematic in Israel
- (1:34:23 PM) Potato__: no running shoes for em :(
- (1:52:09 PM) ocr|Sio^ding left the room (quit: Ping timeout).
- (1:52:20 PM) ocr|Sio^ding [~alex@sioding.users.quakenet.org] entered the room.
- (1:54:06 PM) endy left the room (quit: Ping timeout).
- (1:59:07 PM) endy [~endy@62-210-129-137.rev.poneytelecom.eu] entered the room.
- (2:01:51 PM) Noiree: how much I like those ppl 'no tits, no like' rly...
- (2:05:51 PM) TheShocker: I love to pretend I'm a gay guy to people like that and call them hottie and ask for dick picks
- (2:26:13 PM) TheShocker has changed the topic to: surf's up! || http://returnofreckoning.com/join.php
- (2:33:30 PM) TheShocker: just logged on 4 minutes ago
- (2:34:30 PM) Noiree: when I was in super heal mode with my AM
- (2:39:44 PM) TheShocker: got dcd
- (2:47:32 PM) Potato__: getting dced :/
- (2:52:28 PM) TheShocker: ridiculous how people just stand there fighting like they were in napoleon's army instead of pushing -_-
- (2:55:41 PM) Viny_ [webchat@c213-89-207-146.bredband.comhem.se] entered the room.
- (2:56:11 PM) TheShocker: yase
- (2:57:30 PM) TheShocker: in t1 it's great atm
- (2:57:46 PM) TheShocker: I think there's an order group attacking stk atm in t2
- (2:58:47 PM) Viny_: me and a guy from the guild did a 2man group roam yesterday
- (2:59:02 PM) TheShocker: you on your shammie?
- (2:59:05 PM) Viny_: got purple shoulders and purple gloves for BG :D
- (2:59:14 PM) TheShocker: shammies are so good for that
- (3:02:47 PM) TheShocker: I got a chosen axe again today
- (3:03:04 PM) TheShocker: glad they at least sell for like 30 silver XD
- (3:10:43 PM) Viny_: I'm still in need of bw gear btw
- (3:11:00 PM) Viny_: in case you get some random drops :>
- (3:12:53 PM) TheShocker: got nothing at all on WH so far :
- (3:14:48 PM) Macavity` [~Macavity@Macavity.users.quakenet.org] entered the room.
- (3:16:50 PM) chaser_ [webchat@h75n9-m-rg-a13.ias.bredband.telia.com] entered the room.
- (3:17:15 PM) chaser_: how to reset/respec crafting skill?'
- (3:17:30 PM) Macavity left the room (quit: Ping timeout).
- (3:17:46 PM) TheShocker: with /say .respec Crafting
- (3:18:08 PM) sinisterror left the room (quit: Ping timeout).
- (3:18:59 PM) Elratie: order player´s are all noobs
- (3:20:32 PM) Potato__ left the room (quit: Ping timeout).
- (3:22:42 PM) chaser_: and where to pick up talisman making?
- (3:22:51 PM) chaser_: and do i need something else aswell?
- (3:23:14 PM) TheShocker: you can go to the chapter 1 town or altdorf for that
- (3:23:22 PM) TheShocker: you need to talk to a hedge wizard to learn it
- (3:23:54 PM) TheShocker: I'd suggest getting scavenging on a character you play often, and make an alt to do salvaging on
- (3:24:23 PM) chaser_: scavining for?
- (3:26:37 PM) TheShocker: scavenging to get fragments and curios
- (3:31:33 PM) TheShocker: they need to fix the level ranges back to what it was on live before the free trials
- (3:31:43 PM) TheShocker: can go to t2 at 10, have to at 12
- (3:47:18 PM) Potato__ [webchat@130.43.48.60.dsl.dyn.forthnet.gr] entered the room.
- (4:11:13 PM) Noiree: did the obligatory streaming - hope ppls are happy now
- (4:19:19 PM) chris^sb is now known as Chris^SB
- (4:26:30 PM) TheShocker: I'm in zone 28 :O
- (4:26:43 PM) TheShocker: when I press M I see 'This map is not yet available'
- (4:37:14 PM) Erron_Black [webchat@dynamic-78-8-40-160.ssp.dialog.net.pl] entered the room.
- (4:45:39 PM) Erron_Black: WTB server restart. 20 silver :P
- (4:55:50 PM) chris^sb is now known as Chris^SB
- (4:56:49 PM) sinisterror [sinisterro@87-100-207-2.bb.dnainternet.fi] entered the room.
- (5:05:59 PM) Macavity` is now known as Macavity
- (5:31:54 PM) Londo [webchat@96.53.92.146] entered the room.
- (5:32:55 PM) sinisterror left the room (quit: Ping timeout).
- (5:34:37 PM) TheShocker: oh godfuckingdammit, you don't even get xp in pve in t2 as a level 9
- (5:35:09 PM) TheShocker: WHO'S DICK DO I HAVE TO SUCK TO GET OUT OF T1 ASAP?
- (5:35:21 PM) TheShocker: think so
- (5:35:25 PM) Noiree: erm... Azarael's, I guess
- (5:35:55 PM) TheShocker: ah, must've been a bug
- (5:36:00 PM) TheShocker: getting xp and inf now -_-
- (5:36:12 PM) Noiree: I need a laptop... want to code from my bed
- (5:42:53 PM) TheShocker: can do that with a tablet and kbd too
- (5:46:40 PM) Noiree: ebay is an interesting portal: there's a guy 'selling' pretty much nothing, just having a pic that says 'pics later' and a text that says absolutely nothing but infos later... ppl still buy whatever might be behind this... it's just 'dell latitude notebook #2' and #3 #4 #5 etc
- (5:51:59 PM) TheShocker: someone I know fell for that, got a nice box with a picture in it XD
- (5:53:08 PM) Noiree: guy who did this had 800+ sales and all positive
- (5:53:37 PM) Noiree: but with absolutely no description of what you might get, I'd invest no money at all
- (5:55:36 PM) Noiree: waaaait a sec...we got a laptop in this house... hmm...maybe eclipse can run on oldschool win xp
- (5:56:39 PM) Viny_: TheShocker: you need to boost your tank to 26 right meo
- (5:59:51 PM) TheShocker: got you some BW boots just now, viny
- (6:00:25 PM) Viny_: but we are short a tank for our late night groups :<
- (6:09:23 PM) TheShocker: powerlevel my lvl 5 chosen then
- (6:10:51 PM) Viny_: what was the name again
- (6:11:11 PM) Noiree: glorious... every time the dps say 'great heals' the one who definitely wasn't the reason that was said, writes 'thank you' :D
- (6:14:38 PM) TheShocker: Viny_: pwnies, but I'm on my WH now
- (6:25:26 PM) chaser_ left the room (quit: Quit: Page closed).
- (6:28:56 PM) sinisterror [sinisterro@87-100-207-2.bb.dnainternet.fi] entered the room.
- (6:32:10 PM) Upgrayedd [webchat@ip68-0-230-39.ri.ri.cox.net] entered the room.
- (6:32:24 PM) Upgrayedd left the room (quit: Quit: Page closed).
- (6:39:24 PM) Valnak: Viny_: i'm on right now, invite
- (6:40:09 PM) Valnak: hmm
- (6:40:39 PM) TheShocker: http://i.imgur.com/gjqWgbq.jpg
- (6:42:51 PM) TheShocker: is that a hotdog next to him?
- (6:43:17 PM) Viny_: destro
- (7:08:09 PM) Viny_ left the room (quit: Quit: Page closed).
- (7:08:33 PM) Potato__ left the room (quit: Quit: Page closed).
- (7:17:26 PM) Noiree: healer - so easy so grind eRPees...lvl 11, RR15np
- (7:18:22 PM) Noiree: crosshealing - it ain'tfor everybody
- (7:21:15 PM) Valnak: is so amazing
- (7:21:47 PM) Valnak: http://puu.sh/ldivt/f5a2801f50.jpg
- (7:39:31 PM) sinisterror left the room (quit: Ping timeout).
- (7:48:54 PM) Noiree left the room (quit: Read error: Connection reset by peer).
- (8:27:49 PM) Macavity left the room (quit: Signed off).
- (8:29:30 PM) TheShocker: heh, my BW was rr 20 when I was level 12 XD
- (8:29:39 PM) TheShocker: killing blows are so easy as a BW
- (8:29:48 PM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (8:49:09 PM) The topic for #martyrs_square is: surf's up! || http://returnofreckoning.com/join.php
- (8:49:09 PM) Topic for #martyrs_square set by TheShocker at 2:26:10 PM on 11/7/2015
- (9:11:00 PM) The account has disconnected and you are no longer in this chat. You will automatically rejoin the chat when the account reconnects.
- (9:37:14 PM) The topic for #martyrs_square is: surf's up! || http://returnofreckoning.com/join.php
- (9:37:14 PM) Topic for #martyrs_square set by TheShocker at 2:26:10 PM on 11/7/2015
- (9:37:24 PM) Valnak: what a ruckus that was at mandreds
Yahoo Messenger is a free to use software that enables you to see when friends are online and to chat with them.
Buddy vs. buddy
See how skilled your friends are in a bunch of social games, like Backyard Monsters or Pool.
Facebook friendly
Now you are able to chat with your Facebook contact right from your Messenger.
Share away, all from Messenger
Share and update your status with your friends, post comments and keep up with your conversations across Facebook, and Yahoo all from your Yahoo Messenger.
IM On Mobile
Appreciate your conversations on the go over your iPhone, Android or any Internet enabled mobile phone.
Always on chats
Always stay signed in to and never miss any dialogue, either you are home, at your office or on your mobile device.
Tabbed IMs
Chat with all your contacts from one easy and useful window with tabbed IMs
===== Dark Age of Camelot Version 1.80 Release Notes Darkness Rising October 11, 2005. Patch Notes: Version 1.80 ===== Dark Age of Camelot Version 1.80 Release Notes. Darkness Rising is available via two methods - either by purchase and download from the internet, or by purchasing and installing the new 'Epic' edition of Dark Age of.
Pros
1 109 Verification
- The new Messenger comes with a wide variety of new and enhanced features.
- The photo sharing feature was significantly improved.
Cons
- This new version does not support older operating systems, such as Windows XP.
- The new version does not work with 3rd party applications, such as Pidgin or Trilian.
Name | Yahoo! Messenger |
---|---|
Version | 0.8.231 |
Developer | Yahoo! | see all products from this developer |
Product Homepage | Yahoo! Messenger |
License | Free (Freeware) |
Last Week Downloads | 86 |
All Time Downloads | 5,613,523 |
Filename | yahoo-messenger-0.8.231-win32.exe |
Filesize | 44.0MB |
MD5 Checksum | 418D3E531FB9F0F3ED1839D33C891CE8 |
OS Support | Win 7/8/8.1/10 |
Category | Internet |
100% CLEAN Certification
Yahoo! Messenger has been tested by Download82.com team against viruses, spyware, adware, trojan, backdoors and was found to be 100% clean. Our editors will recheck this software periodically to assure that it remains clean.
Comments
Section 1 109 Illinois Code Of Civil Procedure
Savoy 302 1 109
Old Versions
Ironman 1 109 Tire
Software | Date Added |
---|---|
Yahoo! Messenger 0.8.231 | September 08, 2016 - Latest Version |
Yahoo! Messenger 0.8.155 | August 11, 2016 |
Yahoo! Messenger 0.8.109.244 | August 02, 2016 |
Yahoo! Messenger 11.5.0.228 | January 14, 2013 |
Yahoo! Messenger 11.5.0.192 | March 03, 2012 |
Comments are closed.