Created
February 10, 2014 05:43
-
-
Save anonymous/8910903 to your computer and use it in GitHub Desktop.
Beginnings of Full EveOnline Log Analyzer
(the other gist with same name is incomplete)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
#============================================================================== | |
# .~- EveAnalyze ~-. | |
# v-0.1_alpha | |
# Created on 1/16/14 | |
# | |
# @author: ProC3ss | |
# | |
#============================================================================== | |
""" | |
import datetime | |
from pyqtgraph.Qt import QtGui, QtCore | |
import pyqtgraph as pg | |
import re | |
combat_regexp = re.compile("(?:\[ )(?P<timestamp>\d+.\d+.\d+ \d+:\d+:\d+)(?: \])(?: \(combat\) \<\S+\>\<b\>)" | |
"(?P<dammageAmmount>\d+)(?:\<[ \S]+\>)(?P<tofrom>to|from)(?:\<[ \S]+\>)" | |
"(?P<attacked>[\S]+\s+[\S]+[\[\]\(\)\w]+)(?:\<[ \S]+\> \- )(?P<attacker_weapon>" | |
"[\w ]+)(?: - )(?P<hitType>[\w]+)") | |
class Attack(object): | |
def __init__(self): | |
self.__missed = None | |
self.__hitType = None | |
self.__attacker_name = None | |
self.__attacker_weapon = None | |
self.__attacked = None | |
self.__damageAmmount = None | |
self.__timestamp = None | |
def __repr__(self): | |
a = "\n Attacker: %s" % (self.attacker_name) | |
a += "\n %s: %s" % (self.hitType, self.attacked) | |
a += "\n For: %s damage" % (self.damageAmmount) | |
a += "\n With: %s" % (self.attacker_weapon) | |
a += "\n At: %s" % (self.timestamp) | |
a += "\n" | |
return a | |
@property | |
def attacker_name(self): | |
if self.__attacker_name == None: return "0" | |
else: return self.__attacker_name | |
@attacker_name.setter | |
def attacker_name(self, val): | |
self.__attacker_name = val | |
@property | |
def hitType(self): | |
if self.__hitType == None: return "Attacked" | |
else: return self.__hitType | |
@hitType.setter | |
def hitType(self, val): | |
self.__hitType = val | |
@property | |
def attacked(self): | |
if self.__attacked is None: return "0" | |
else: return self.__attacked | |
@attacked.setter | |
def attacked(self, val): | |
self.__attacked = val | |
@property | |
def damageAmmount(self): | |
if self.__damageAmmount == None: return "0" | |
else: return self.__damageAmmount | |
@damageAmmount.setter | |
def damageAmmount(self, val): | |
self.__damageAmmount = val | |
@property | |
def attacker_weapon(self): | |
if self.__attacker_weapon is None: return "0" | |
else: return self.__attacker_weapon | |
@attacker_weapon.setter | |
def attacker_weapon(self, val): | |
self.__attacker_weapon = val | |
@property | |
def timestamp(self): | |
if self.__timestamp is None: return "0" | |
else: return self.__timestamp | |
@timestamp.setter | |
def timestamp(self, val): | |
self.__timestamp = val | |
@property | |
def missed(self): | |
if self.__missed is None: return "0" | |
else: return self.__missed | |
@missed.setter | |
def missed(self, val): | |
self.__missed = val | |
def setVals_fromLine(self, logline): | |
""" | |
Set the values for a single Attack from a log line | |
:param logline: | |
""" | |
lvs = combat_regexp.match(logline).groups() | |
self.timestamp = lvs[0] | |
self.damageAmmount = lvs[1] | |
if str(lvs[2]) == "to": | |
self.attacked = lvs[3] | |
self.attacker_name = "You" | |
if str(lvs[2]) == "from": | |
self.attacked = "You" | |
self.attacker_name = lvs[3] | |
self.attacker_weapon = lvs[4] | |
self.hitType = lvs[5] | |
def asArray(self): | |
return (self.attacker_name, self.hitType, self.attacked, self.damageAmmount, self.attacker_weapon, self.timestamp) | |
def readlog(self, logfile): | |
""" | |
Takes an open logfile and returns an array of Attacks | |
:param logfile: | |
:return: | |
""" | |
combatlines = [] | |
for line in logfile: | |
event = Attack() | |
try: | |
event.setVals_fromLine(line) | |
except: | |
event = 0 | |
if event != 0: | |
combatlines.insert(-1, event) | |
return combatlines | |
class Engagement(object): | |
def __init__(self): | |
self.weapons = [] | |
self.pilots = [] | |
self.hits_dealt = [s.asArray() for s in combatlines if s.asArray()[0] != 'You'] | |
self.hits_received = [s.asArray() for s in combatlines if s.asArray()[0] == 'You'] | |
self.dmg_received = sum([int(s.asArray()[3]) for s in combatlines if s.asArray()[0] == 'You']) | |
self.dmg_dealt = sum([int(s.asArray()[3]) for s in combatlines if s.asArray()[0] != 'You']) | |
for event in combatlines: | |
if event.asArray()[4] not in self.weapons: | |
self.weapons.insert(-1, event.asArray()[4]) | |
if event.asArray()[0] not in self.pilots: | |
self.pilots.insert(-1, event.asArray()[0]) | |
def __repr__(self): | |
a = "Hits Dealt: " + str(len(self.hits_dealt)) + "\t\tTotal Damage: " + str(self.dmg_dealt) | |
a += "\nHits Recvd: " + str(len(self.hits_received)) + "\t\tTotal Damage: " + str(self.dmg_received) | |
return a | |
def graph(self): | |
self.win = pg.GraphicsWindow(title="Attack Event") | |
self.win.resize(1000,600) | |
self.win.setWindowTitle('Attack Event') | |
pg.setConfigOptions(antialias=True) | |
x = [datetime.datetime.strptime(s.asArray()[5], "%Y.%m.%d %H:%M:%S") for s in combatlines if s.asArray()[0] == 'You'] | |
y = [int(s.asArray()[3]) for s in combatlines if s.asArray()[0] == 'You'] | |
p1 = self.win.addPlot(title="Event") | |
p1.plot(y) | |
self.win.nextRow() | |
if __name__ == '__main__': | |
import sys | |
app = QtGui.QApplication([]) | |
fpath = QtGui.QFileDialog.getOpenFileName() | |
logfile = open(fpath, "r") | |
combatlines = Attack().readlog(logfile) | |
a = Engagement() | |
print str(a) | |
print "--------" | |
for s in a.pilots: | |
print s | |
print "--------" | |
for s in a.weapons: | |
print s | |
a.graph() | |
sys.exit(app.exec_()) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------------------------ | |
Gamelog | |
Listener: Bob | |
Session Started: 2014.01.16 01:26:23 | |
------------------------------------------------------------ | |
[ 2014.01.16 01:30:18 ] (info) The shortcut Alt-Shift-F1 is already being used for modules/Toggle Overload on Medium Power Slot 1. | |
[ 2014.01.16 01:30:24 ] (info) The shortcut Ctrl-Shift-F1 is already being used for modules/Toggle Overload on Low Power Slot 1. | |
[ 2014.01.16 01:30:35 ] (info) The shortcut Alt-Shift-F1 is already being used for modules/Toggle Overload on Medium Power Slot 1. | |
[ 2014.01.16 01:33:27 ] (info) The shortcut F3 is already being used for charactercreator/Pick Portrait 3. | |
[ 2014.01.16 01:33:29 ] (info) The shortcut Alt is already being used for combat/Look at. | |
[ 2014.01.16 01:43:29 ] (info) The shortcut Alt is already being used for combat/Look at. | |
[ 2014.01.16 01:54:39 ] (None) Undocking from Hallanen IV - Caldari Navy Assembly Plant to Hallanen solar system. | |
[ 2014.01.16 01:55:20 ] (notify) Loading the Hybrid Charge into the Hybrid Weapon; this will take approximately 5.00 seconds. | |
[ 2014.01.16 02:02:00 ] (notify) You cannot target the Minmatar Control Tower Small while you are inside a force field. | |
[ 2014.01.16 02:02:01 ] (notify) You cannot target the Minmatar Control Tower Small while you are inside a force field. | |
[ 2014.01.16 02:02:03 ] (notify) You cannot target the Minmatar Control Tower Small while you are inside a force field. | |
[ 2014.01.16 02:02:21 ] (notify) You cannot target the Federation Navy Comet while you are inside a force field. | |
[ 2014.01.16 02:02:21 ] (notify) You cannot target the Federation Navy Comet while you are inside a force field. | |
[ 2014.01.16 02:02:27 ] (notify) Target is invulnerable. | |
[ 2014.01.16 02:02:33 ] (notify) You cannot launch that while you are inside a force field. | |
[ 2014.01.16 02:02:52 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:03:12 ] (notify) Requested to dock at Hallanen IV - Caldari Navy Assembly Plant station | |
[ 2014.01.16 02:03:12 ] (notify) Your docking request has been accepted. Your ship will be towed into station. | |
[ 2014.01.16 02:14:40 ] (None) Undocking from Hallanen IV - Caldari Navy Assembly Plant to Hallanen solar system. | |
[ 2014.01.16 02:15:12 ] (notify) You cannot do that while warping. | |
[ 2014.01.16 02:16:11 ] (notify) Requested to dock at Hallanen IV - Caldari Navy Assembly Plant station | |
[ 2014.01.16 02:16:11 ] (notify) Your docking request has been accepted. Your ship will be towed into station. | |
[ 2014.01.16 02:40:43 ] (None) Undocking from Hallanen IV - Caldari Navy Assembly Plant to Hallanen solar system. | |
[ 2014.01.16 02:40:49 ] (notify) Requested to dock at Hallanen IV - Caldari Navy Assembly Plant station | |
[ 2014.01.16 02:40:49 ] (notify) Can't do that while undocking.<br>You should be squeezed out in 5 seconds. | |
[ 2014.01.16 02:41:00 ] (notify) Requested to dock at Hallanen IV - Caldari Navy Assembly Plant station | |
[ 2014.01.16 02:41:00 ] (notify) Your docking request has been accepted. Your ship will be towed into station. | |
[ 2014.01.16 02:45:36 ] (None) Undocking from Hallanen IV - Caldari Navy Assembly Plant to Hallanen solar system. | |
[ 2014.01.16 02:46:56 ] (notify) Interference from the warp you are doing is preventing your sensors from getting a target lock on Acceleration Gate. | |
[ 2014.01.16 02:46:57 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:46:58 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:48:50 ] (notify) You cannot do that while warping. | |
[ 2014.01.16 02:48:53 ] (notify) Ship stopping | |
[ 2014.01.16 02:48:53 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:49:09 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:49:10 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:49:10 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:49:11 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:49:11 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:49:12 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:49:12 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:49:12 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:49:13 ] (notify) Target is invulnerable. | |
[ 2014.01.16 02:49:13 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:49:16 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:51:55 ] (notify) The scanner is recalibrating, please wait a second | |
[ 2014.01.16 02:56:48 ] (notify) You failed to target nothing. | |
[ 2014.01.16 02:56:48 ] (notify) You have defended a Tactical Site for Gallente Federation | |
[ 2014.01.16 02:57:00 ] (notify) You don't have enough bandwidth to launch Hobgoblin II. You need 5.0 Mbit/s but only have 0.0 Mbit/s available. | |
[ 2014.01.16 02:57:04 ] (notify) Drones engaging Federation Frigate | |
[ 2014.01.16 02:57:08 ] (combat) <color=0xff00ffff><b>49</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Federation Frigate</b><font size=10><color=0x77ffffff> - Hobgoblin II - Hits | |
[ 2014.01.16 02:57:08 ] (combat) <color=0xff00ffff><b>45</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Federation Frigate</b><font size=10><color=0x77ffffff> - Hobgoblin II - Hits | |
[ 2014.01.16 02:57:08 ] (notify) All drones returning and orbiting ship | |
[ 2014.01.16 02:57:09 ] (combat) <color=0xff00ffff><b>56</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Federation Frigate</b><font size=10><color=0x77ffffff> - Hobgoblin II - Hits | |
[ 2014.01.16 02:57:39 ] (notify) Target is invulnerable. | |
[ 2014.01.16 03:00:38 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:00:44 ] (notify) You cannot do that while warping. | |
[ 2014.01.16 03:00:46 ] (notify) Ship stopping | |
[ 2014.01.16 03:00:47 ] (notify) Ship stopping | |
[ 2014.01.16 03:00:54 ] (notify) You cannot navigate that way with the selected object as it is too far away. Try moving in its direction instead. | |
[ 2014.01.16 03:00:54 ] (notify) You cannot navigate that way with the selected object as it is too far away. Try moving in its direction instead. | |
[ 2014.01.16 03:00:55 ] (notify) You cannot navigate that way with the selected object as it is too far away. Try moving in its direction instead. | |
[ 2014.01.16 03:00:59 ] (notify) You cannot navigate that way with the selected object as it is too far away. Try moving in its direction instead. | |
[ 2014.01.16 03:01:02 ] (notify) You cannot navigate that way with the selected object as it is too far away. Try moving in its direction instead. | |
[ 2014.01.16 03:03:38 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:03:38 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:03:40 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:04:49 ] (question) Aggression against this peaceful entity may have consequences such as a standings penalty or returned aggression. It is recommended that you reconsider. | |
<br><br>Do you wish to proceed? | |
[ 2014.01.16 03:05:30 ] (combat) <color=0xff00ffff><b>181</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Federation Frigate</b><font size=10><color=0x77ffffff> - 150mm Railgun II - Glances Off | |
[ 2014.01.16 03:05:44 ] (combat) <color=0xff00ffff><b>235</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Federation Frigate</b><font size=10><color=0x77ffffff> - 150mm Railgun II - Hits | |
[ 2014.01.16 03:05:45 ] (notify) The 150mm Railgun II cannot be manually deactivated in the middle of an operation, it will deactivate without repeating in 1 second (its activation duration is 2 seconds). | |
[ 2014.01.16 03:05:48 ] (combat) <color=0xff00ffff><b>254</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Federation Frigate</b><font size=10><color=0x77ffffff> - 150mm Railgun II - Smashes | |
[ 2014.01.16 03:06:19 ] (notify) Federation Frigate is too far away to use your 5W Infectious Power System Malfunction on, it needs to be closer than 6,025 meters. | |
[ 2014.01.16 03:07:46 ] (notify) The scanner is recalibrating, please wait a second | |
[ 2014.01.16 03:08:05 ] (notify) The scanner is recalibrating, please wait a second | |
[ 2014.01.16 03:08:29 ] (notify) The scanner is recalibrating, please wait a second | |
[ 2014.01.16 03:08:54 ] (notify) The scanner is recalibrating, please wait a second | |
[ 2014.01.16 03:09:28 ] (notify) The scanner is recalibrating, please wait a second | |
[ 2014.01.16 03:10:16 ] (notify) The scanner is recalibrating, please wait a second | |
[ 2014.01.16 03:11:21 ] (notify) Requested to dock at Hallanen IV - Caldari Navy Assembly Plant station | |
[ 2014.01.16 03:11:21 ] (notify) Setting course to docking perimeter | |
[ 2014.01.16 03:11:26 ] (notify) Your docking request has been accepted. Your ship will be towed into station. | |
[ 2014.01.16 03:20:38 ] (None) Undocking from Hallanen IV - Caldari Navy Assembly Plant to Hallanen solar system. | |
[ 2014.01.16 03:21:16 ] (notify) You cannot do that while warping. | |
[ 2014.01.16 03:21:17 ] (notify) Please wait... | |
[ 2014.01.16 03:21:17 ] (notify) Please wait... | |
[ 2014.01.16 03:22:14 ] (notify) You cannot navigate that way with the selected object as it is too far away. Try moving in its direction instead. | |
[ 2014.01.16 03:22:15 ] (notify) You cannot navigate that way with the selected object as it is too far away. Try moving in its direction instead. | |
[ 2014.01.16 03:22:15 ] (notify) You cannot navigate that way with the selected object as it is too far away. Try moving in its direction instead. | |
[ 2014.01.16 03:23:42 ] (notify) You cannot navigate that way with the selected object as it is too far away. Try moving in its direction instead. | |
[ 2014.01.16 03:24:22 ] (notify) Breacher is too far away to use your Faint Epsilon Warp Scrambler I on, it needs to be closer than 9,000 meters. | |
[ 2014.01.16 03:24:30 ] (notify) Ship stopping | |
[ 2014.01.16 03:24:47 ] (notify) Drones engaging . | |
[ 2014.01.16 03:24:54 ] (notify) Breacher is too far away to use your Faint Epsilon Warp Scrambler I on, it needs to be closer than 10,800 meters. | |
[ 2014.01.16 03:24:55 ] (combat) <color=0xff00ffff><b>24</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:24:59 ] (combat) <color=0xff00ffff><b>18</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Warrior II - Glances Off | |
[ 2014.01.16 03:25:03 ] (combat) Your Warrior II misses Jeff' Moreau completely - Warrior II | |
[ 2014.01.16 03:25:07 ] (combat) <color=0xff00ffff><b>15</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Warrior II - Grazes | |
[ 2014.01.16 03:25:11 ] (combat) Your Warrior II misses Jeff' Moreau completely - Warrior II | |
[ 2014.01.16 03:25:13 ] (combat) <color=0xffcc0000><b>59</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Grazes | |
[ 2014.01.16 03:25:15 ] (combat) <color=0xffcc0000><b>127</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Penetrates | |
[ 2014.01.16 03:25:17 ] (combat) <color=0xffcc0000><b>71</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Grazes | |
[ 2014.01.16 03:25:17 ] (combat) <color=0xffffffff><b>Warp scramble attempt</b> <color=0x77ffffff><font size=10>from</font> <color=0xffffffff><b><fontsize=11><color=0xFFF5DEB3><b>Stabber</b></color></fontsize> [<color=0xFFFFB900>PLEX</color>] <color=0xFFFFFFFF><b>Rahzhial Arran</b></color> Test <fontsize=11><color=0xFFFEFF6F><b></b> <color=0x77ffffff><font size=10>to <b><color=0xffffffff></font>you! | |
[ 2014.01.16 03:25:18 ] (combat) <color=0xffffffff><b>Warp scramble attempt</b> <color=0x77ffffff><font size=10>from</font> <color=0xffffffff><b><fontsize=11><color=0xFFF5DEB3><b>Breacher</b></color></fontsize> [<color=0xFFFFB900>ATONE</color>] <color=0xFFFFFFFF><b>Jeff' Moreau</b></color> . <fontsize=11><color=0xFFFEFF6F><b></b> <color=0x77ffffff><font size=10>to <b><color=0xffffffff></font>you! | |
[ 2014.01.16 03:25:19 ] (combat) <color=0xffffffff><b>Warp scramble attempt</b> <color=0x77ffffff><font size=10>from</font> <color=0xffffffff><b>you</b> <color=0x77ffffff><font size=10>to <b><color=0xffffffff></font><fontsize=11><color=0xFFF5DEB3><b>Breacher</b></color></fontsize> [<color=0xFFFFB900>ATONE</color>] <color=0xFFFFFFFF><b>Jeff' Moreau</b></color> . <fontsize=11><color=0xFFFEFF6F><b> | |
[ 2014.01.16 03:25:20 ] (combat) <color=0xffcc0000><b>18</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Grazes | |
[ 2014.01.16 03:25:21 ] (notify) External factors are preventing your Limited 1MN Microwarpdrive I from responding to this command | |
[ 2014.01.16 03:25:22 ] (combat) <color=0xffcc0000><b>19</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Grazes | |
[ 2014.01.16 03:25:23 ] (combat) <color=0xffffffff><b>Warp scramble attempt</b> <color=0x77ffffff><font size=10>from</font> <color=0xffffffff><b><fontsize=11><color=0xFFF5DEB3><b>Stabber</b></color></fontsize> [<color=0xFFFFB900>PLEX</color>] <color=0xFFFFFFFF><b>Rahzhial Arran</b></color> Test <fontsize=11><color=0xFFFEFF6F><b></b> <color=0x77ffffff><font size=10>to <b><color=0xffffffff></font>you! | |
[ 2014.01.16 03:25:24 ] (combat) <color=0xffcc0000><b>70</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:24 ] (combat) Hobgoblin II belonging to Jeff' Moreau misses you completely - Hobgoblin II | |
[ 2014.01.16 03:25:24 ] (combat) Hobgoblin II belonging to Jeff' Moreau misses you completely - Hobgoblin II | |
[ 2014.01.16 03:25:24 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:24 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:25 ] (combat) <color=0xffcc0000><b>37</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Grazes | |
[ 2014.01.16 03:25:26 ] (combat) <color=0xffcc0000><b>80</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:26 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:27 ] (combat) Warrior II belonging to Rahzhial Arran misses you completely - Warrior II | |
[ 2014.01.16 03:25:27 ] (combat) <color=0xffcc0000><b>33</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Smashes | |
[ 2014.01.16 03:25:27 ] (combat) <color=0xffcc0000><b>21</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:27 ] (combat) Warrior II belonging to Rahzhial Arran misses you completely - Warrior II | |
[ 2014.01.16 03:25:27 ] (combat) Warrior II belonging to Rahzhial Arran misses you completely - Warrior II | |
[ 2014.01.16 03:25:27 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:27 ] (combat) Rahzhial Arran misses you completely | |
[ 2014.01.16 03:25:28 ] (combat) <color=0xffcc0000><b>11</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Grazes | |
[ 2014.01.16 03:25:28 ] (combat) <color=0xffcc0000><b>14</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Glances Off | |
[ 2014.01.16 03:25:28 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:29 ] (combat) <color=0xffcc0000><b>103</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:29 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:29 ] (combat) <color=0xffcc0000><b>20</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Grazes | |
[ 2014.01.16 03:25:31 ] (combat) <color=0xffcc0000><b>106</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:31 ] (combat) <color=0xffcc0000><b>25</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:31 ] (combat) <color=0xffcc0000><b>19</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Glances Off | |
[ 2014.01.16 03:25:31 ] (combat) <color=0xffcc0000><b>15</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Grazes | |
[ 2014.01.16 03:25:31 ] (combat) <color=0xffcc0000><b>17</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Glances Off | |
[ 2014.01.16 03:25:31 ] (combat) Warrior II belonging to Rahzhial Arran misses you completely - Warrior II | |
[ 2014.01.16 03:25:31 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:32 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:32 ] (combat) <color=0xffcc0000><b>19</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Hits | |
[ 2014.01.16 03:25:32 ] (combat) <color=0xffcc0000><b>24</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Penetrates | |
[ 2014.01.16 03:25:32 ] (combat) Rahzhial Arran misses you completely | |
[ 2014.01.16 03:25:33 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:34 ] (combat) <color=0xffcc0000><b>108</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:34 ] (combat) <color=0xffcc0000><b>19</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Grazes | |
[ 2014.01.16 03:25:34 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:34 ] (notify) Please wait... | |
[ 2014.01.16 03:25:34 ] (notify) Please wait... | |
[ 2014.01.16 03:25:35 ] (combat) <color=0xffcc0000><b>32</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Smashes | |
[ 2014.01.16 03:25:35 ] (combat) <color=0xffcc0000><b>20</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:35 ] (combat) <color=0xffcc0000><b>26</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Penetrates | |
[ 2014.01.16 03:25:35 ] (combat) <color=0xffcc0000><b>15</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Grazes | |
[ 2014.01.16 03:25:35 ] (combat) <color=0xffcc0000><b>27</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Penetrates | |
[ 2014.01.16 03:25:35 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:36 ] (combat) <color=0xffcc0000><b>127</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:36 ] (combat) <color=0xffcc0000><b>21</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Penetrates | |
[ 2014.01.16 03:25:36 ] (combat) <color=0xffcc0000><b>19</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Hits | |
[ 2014.01.16 03:25:36 ] (combat) Rahzhial Arran misses you completely | |
[ 2014.01.16 03:25:36 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:37 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:39 ] (combat) <color=0xffcc0000><b>127</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:39 ] (combat) <color=0xffcc0000><b>14</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Grazes | |
[ 2014.01.16 03:25:39 ] (combat) <color=0xffcc0000><b>23</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:39 ] (combat) <color=0xffcc0000><b>36</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Smashes | |
[ 2014.01.16 03:25:39 ] (combat) <color=0xffcc0000><b>15</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Grazes | |
[ 2014.01.16 03:25:39 ] (combat) <color=0xffcc0000><b>21</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:39 ] (combat) Rahzhial Arran misses you completely | |
[ 2014.01.16 03:25:39 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:39 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:40 ] (combat) <color=0xffcc0000><b>10</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Grazes | |
[ 2014.01.16 03:25:40 ] (combat) <color=0xffcc0000><b>13</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Glances Off | |
[ 2014.01.16 03:25:41 ] (combat) <color=0xffcc0000><b>127</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:41 ] (combat) Rahzhial Arran misses you completely | |
[ 2014.01.16 03:25:41 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:41 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:43 ] (combat) <color=0xffcc0000><b>124</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:43 ] (combat) <color=0xffcc0000><b>33</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Smashes | |
[ 2014.01.16 03:25:43 ] (combat) <color=0xffcc0000><b>17</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Glances Off | |
[ 2014.01.16 03:25:43 ] (combat) <color=0xffcc0000><b>28</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Penetrates | |
[ 2014.01.16 03:25:43 ] (combat) <color=0xffcc0000><b>17</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Glances Off | |
[ 2014.01.16 03:25:43 ] (combat) <color=0xffcc0000><b>30</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Penetrates | |
[ 2014.01.16 03:25:43 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:43 ] (combat) <color=0xffcc0000><b>89</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Grazes | |
[ 2014.01.16 03:25:44 ] (combat) <color=0xffcc0000><b>23</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Hits | |
[ 2014.01.16 03:25:44 ] (combat) <color=0xffcc0000><b>14</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Glances Off | |
[ 2014.01.16 03:25:44 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:45 ] (combat) <color=0xffcc0000><b>98</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:45 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:46 ] (combat) <color=0xffcc0000><b>88</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Grazes | |
[ 2014.01.16 03:25:46 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:47 ] (combat) <color=0xffcc0000><b>115</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:47 ] (combat) <color=0xffcc0000><b>16</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:47 ] (combat) <color=0xffcc0000><b>30</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Penetrates | |
[ 2014.01.16 03:25:47 ] (combat) <color=0xffcc0000><b>22</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:47 ] (combat) <color=0xffcc0000><b>20</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Penetrates | |
[ 2014.01.16 03:25:47 ] (combat) <color=0xffcc0000><b>27</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Penetrates | |
[ 2014.01.16 03:25:47 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:48 ] (combat) <color=0xffcc0000><b>18</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Glances Off | |
[ 2014.01.16 03:25:48 ] (combat) <color=0xffcc0000><b>17</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Grazes | |
[ 2014.01.16 03:25:48 ] (combat) <color=0xffcc0000><b>140</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Glances Off | |
[ 2014.01.16 03:25:49 ] (combat) <color=0xffcc0000><b>85</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:49 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:49 ] (notify) Drones engaging . | |
[ 2014.01.16 03:25:50 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:50 ] (combat) <color=0xffcc0000><b>133</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Hits | |
[ 2014.01.16 03:25:51 ] (combat) <color=0xffcc0000><b>112</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:51 ] (combat) <color=0xffcc0000><b>13</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Grazes | |
[ 2014.01.16 03:25:51 ] (combat) <color=0xffcc0000><b>14</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Grazes | |
[ 2014.01.16 03:25:51 ] (combat) <color=0xffcc0000><b>12</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Glances Off | |
[ 2014.01.16 03:25:51 ] (combat) <color=0xffcc0000><b>14</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Glances Off | |
[ 2014.01.16 03:25:51 ] (combat) <color=0xffcc0000><b>20</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Penetrates | |
[ 2014.01.16 03:25:51 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:51 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:52 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:52 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:52 ] (combat) <color=0xffcc0000><b>23</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Hits | |
[ 2014.01.16 03:25:52 ] (combat) <color=0xffcc0000><b>15</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Hobgoblin II - Grazes | |
[ 2014.01.16 03:25:52 ] (notify) There are not enough charges to fully load all of your modules. Some of your modules have been left partially loaded or empty. | |
[ 2014.01.16 03:25:52 ] (notify) Small Capacitor Booster II has run out of charges | |
[ 2014.01.16 03:25:52 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:52 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:52 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:52 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:53 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:53 ] (combat) <color=0xffcc0000><b>84</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:53 ] (combat) <color=0xffcc0000><b>64</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Grazes | |
[ 2014.01.16 03:25:53 ] (combat) <color=0xff00ffff><b>26</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:53 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:53 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:53 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:53 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:54 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:54 ] (combat) <color=0xffcc0000><b>90</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:54 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:54 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:54 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:54 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:54 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:54 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:55 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:55 ] (combat) <color=0xffcc0000><b>23</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:55 ] (combat) <color=0xffcc0000><b>33</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Smashes | |
[ 2014.01.16 03:25:55 ] (combat) <color=0xffcc0000><b>17</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:55 ] (combat) <color=0xffcc0000><b>77</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Wrecks | |
[ 2014.01.16 03:25:55 ] (combat) <color=0xffcc0000><b>29</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Smashes | |
[ 2014.01.16 03:25:55 ] (combat) <color=0xffcc0000><b>119</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Glances Off | |
[ 2014.01.16 03:25:55 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:55 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:55 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:55 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:56 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:56 ] (combat) <color=0xffcc0000><b>85</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:56 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:56 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:56 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:56 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:56 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:56 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:57 ] (combat) <color=0xff00ffff><b>20</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:57 ] (combat) <color=0xffcc0000><b>55</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Grazes | |
[ 2014.01.16 03:25:57 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:57 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:57 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:57 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:58 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:58 ] (combat) <color=0xffcc0000><b>115</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:25:58 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:25:58 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:25:58 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:58 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:58 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:58 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:59 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:59 ] (combat) <color=0xffcc0000><b>15</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Glances Off | |
[ 2014.01.16 03:25:59 ] (combat) <color=0xffcc0000><b>11</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Grazes | |
[ 2014.01.16 03:25:59 ] (combat) <color=0xffcc0000><b>27</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Smashes | |
[ 2014.01.16 03:25:59 ] (combat) <color=0xffcc0000><b>14</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:59 ] (combat) <color=0xffcc0000><b>18</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:25:59 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:25:59 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:25:59 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:00 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:00 ] (combat) <color=0xffcc0000><b>87</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:26:00 ] (combat) Rahzhial Arran misses you completely | |
[ 2014.01.16 03:26:00 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:26:00 ] (notify) Small Armor Repairer II requires 40.0 units of charge. The capacitor has only 12.6 units. | |
[ 2014.01.16 03:26:00 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:00 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:00 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:00 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:01 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:01 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:26:01 ] (notify) Small Ancillary Armor Repairer requires 40.0 units of charge. The capacitor has only 12.6 units. | |
[ 2014.01.16 03:26:01 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:01 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:01 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:01 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:02 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:02 ] (combat) <color=0xffcc0000><b>117</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:26:02 ] (combat) <color=0xff00ffff><b>26</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Warrior II - Penetrates | |
[ 2014.01.16 03:26:02 ] (combat) <color=0xff00ffff><b>202</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Light Ion Blaster II - Smashes | |
[ 2014.01.16 03:26:02 ] (combat) Rahzhial Arran misses you completely | |
[ 2014.01.16 03:26:02 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:02 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:02 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:02 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:03 ] (combat) <color=0xffcc0000><b>22</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:26:03 ] (combat) <color=0xffcc0000><b>22</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:26:03 ] (combat) <color=0xffcc0000><b>20</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:26:03 ] (combat) <color=0xffcc0000><b>29</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Penetrates | |
[ 2014.01.16 03:26:03 ] (combat) <color=0xffcc0000><b>27</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Smashes | |
[ 2014.01.16 03:26:03 ] (combat) <color=0xff00ffff><b>44</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Light Neutron Blaster II - Grazes | |
[ 2014.01.16 03:26:03 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:03 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:03 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:03 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:04 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:04 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:26:04 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:04 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:04 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:04 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:05 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:05 ] (combat) <color=0xffcc0000><b>103</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:26:05 ] (combat) Rahzhial Arran misses you completely | |
[ 2014.01.16 03:26:05 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:05 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:05 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:06 ] (combat) <color=0xff00ffff><b>20</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:26:06 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:26:06 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:26:06 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:07 ] (combat) <color=0xffcc0000><b>87</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:26:07 ] (combat) <color=0xffcc0000><b>57</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Wrecks | |
[ 2014.01.16 03:26:07 ] (combat) <color=0xffcc0000><b>25</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Smashes | |
[ 2014.01.16 03:26:07 ] (combat) <color=0xffcc0000><b>17</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:26:07 ] (combat) Warrior II belonging to Rahzhial Arran misses you completely - Warrior II | |
[ 2014.01.16 03:26:07 ] (combat) <color=0xffcc0000><b>17</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:26:07 ] (combat) Rahzhial Arran misses you completely | |
[ 2014.01.16 03:26:07 ] (notify) Please wait... | |
[ 2014.01.16 03:26:07 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:07 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:08 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:08 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:26:08 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:26:08 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:08 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:09 ] (combat) <color=0xffcc0000><b>89</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:26:09 ] (combat) Rahzhial Arran misses you completely | |
[ 2014.01.16 03:26:09 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:09 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:09 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:10 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:10 ] (combat) <color=0xff00ffff><b>13</b> <color=0x77ffffff><font size=10>to</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Warrior II - Grazes | |
[ 2014.01.16 03:26:10 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:11 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:11 ] (combat) <color=0xffcc0000><b>88</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:26:11 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:26:11 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:26:11 ] (combat) <color=0xffcc0000><b>14</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Glances Off | |
[ 2014.01.16 03:26:11 ] (combat) <color=0xffcc0000><b>16</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:26:11 ] (combat) <color=0xffcc0000><b>22</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Penetrates | |
[ 2014.01.16 03:26:11 ] (combat) <color=0xffcc0000><b>16</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Hits | |
[ 2014.01.16 03:26:11 ] (combat) <color=0xffcc0000><b>11</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Rahzhial Arran[CERBY](Stabber)</b><font size=10><color=0x77ffffff> - Warrior II - Grazes | |
[ 2014.01.16 03:26:11 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:11 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:12 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:12 ] (combat) Rahzhial Arran misses you completely | |
[ 2014.01.16 03:26:12 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:12 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:12 ] (notify) External factors are preventing your warp drive from responding to this command. | |
[ 2014.01.16 03:26:12 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:13 ] (combat) Your group of Light Ion Blaster II misses Jeff' Moreau completely - Light Ion Blaster II | |
[ 2014.01.16 03:26:13 ] (combat) Your group of Light Neutron Blaster II misses Jeff' Moreau completely - Light Neutron Blaster II | |
[ 2014.01.16 03:26:13 ] (notify) Ship is out of control | |
[ 2014.01.16 03:26:13 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:13 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:14 ] (combat) <color=0xffcc0000><b>77</b> <color=0x77ffffff><font size=10>from</font> <b><color=0xffffffff>Jeff' Moreau[CFTF](Breacher)</b><font size=10><color=0x77ffffff> - Nova Rage Rocket - Hits | |
[ 2014.01.16 03:26:14 ] (notify) You cannot do that while warping. | |
[ 2014.01.16 03:26:14 ] (notify) You are unable to align or warp to the selected object because your warp drive is unable to lock onto it. | |
[ 2014.01.16 03:26:14 ] (notify) You cannot do that while warping. | |
[ 2014.01.16 03:27:21 ] (notify) Requested to dock at Hallanen IV - Caldari Navy Assembly Plant station | |
[ 2014.01.16 03:27:21 ] (notify) Your docking request has been accepted. Your ship will be towed into station. | |
[ 2014.01.16 03:27:57 ] (None) Undocking from Hallanen IV - Caldari Navy Assembly Plant to Hallanen solar system. | |
[ 2014.01.16 03:28:49 ] (notify) The Test is too far away, you need to be within 43200 meters of it but are actually 48882 meters away. | |
[ 2014.01.16 03:28:50 ] (notify) The Test is too far away, you need to be within 43200 meters of it but are actually 48717 meters away. | |
[ 2014.01.16 03:28:51 ] (notify) The Test is too far away, you need to be within 43200 meters of it but are actually 48712 meters away. | |
[ 2014.01.16 03:28:52 ] (notify) The Test is too far away, you need to be within 43200 meters of it but are actually 48712 meters away. | |
[ 2014.01.16 03:28:52 ] (notify) The Test is too far away, you need to be within 43200 meters of it but are actually 48711 meters away. | |
[ 2014.01.16 03:28:53 ] (notify) The Test is too far away, you need to be within 43200 meters of it but are actually 48713 meters away. | |
[ 2014.01.16 03:28:55 ] (notify) Please wait... | |
[ 2014.01.16 03:30:25 ] (notify) Requested to dock at Hallanen IV - Caldari Navy Assembly Plant station | |
[ 2014.01.16 03:30:25 ] (notify) Your docking request has been accepted. Your ship will be towed into station. | |
[ 2014.01.16 03:30:48 ] (info) To bring Small Energy Neutralizer II online requires 10.00 cpu units, but only 5.06 of the 247.56 units that your computer produces are still available. | |
[ 2014.01.16 03:34:30 ] (question) Removing this rig from the ship will permanently destroy the rig. Do you want to continue? | |
[ 2014.01.16 03:36:26 ] (question) Do you really want to quit now? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment