Download
(4Kb)
Download
Updated: 10-06-18 09:18 AM
Pictures
File Info
Compatibility:
Battle for Azeroth (8.0.1)
Updated:10-06-18 09:18 AM
Created:unknown
Downloads:23,543
Favorites:165
MD5:

Chicchai  Popular! (More than 5000 hits)

Version: 3.4.5.1
by: Lolzen, xConStruct

About

Chicchai is a little Addon that will Minimize the Chat after a few seconds.
Features
  • Minimize the Chat after X seconds
  • Maximize Chat on mouseover
  • Animations (+how long should the Animation take)
  • Configurable on wich events (Guild, say, yell,...) the chat should maximize
  • Possibility to disable maximizing in combat
  • CombatLog will be maximized when selected (optional, default)

Preview
Click for Previewvideo - Chicchai in action

Configuration
The configuration file is named cofig.lua and contains help text to guide you through.
Chicchai on Github
https://github.com/Lolzen/Chicchai
Originally: https://github.com/xconstruct/Chicchai
Thanks to
Cargor (EU-Nozdormu) aka XconStruct
Picking up the idea and materializing the addon, maintaining through years after quitting WoW

3.4.5.1
* prevent chatevents interfering while mouse is hovering over the chatframe

3.4.5
* fixup boolean error

3.4.4
* config: cleanup events removed from game and update reference list per link

3.4.3
* refix frozen chat window on login by direct calls of Animate() instead of unpdateHeight()
* respect MaximizeCombatLog on floating combatlog and handle docking/dedocking it

3.4.2.2
* fix error on chatevent when chatframe is not in config

3.4.2.1
* fix minimizing/maximizing ALL windows on mouseover

3.4.2
* config is now an own file, instead of being part of core.lua
this allows for copying/backing up your config between updates
* swept through code and used chatframes directly instead of frames tucked on the chatframes
* fixed a bug where config setting would be ignored for certain chat events (eg. only ChatFrame1 for "say" is set, but ChatFrame3 and ChatFrame4 would have been triggered)

3.4.1
* fixed "frozen" chat window on login

3.4
* crude legion update

3.3.2
* try to minimize chat on load
* Re-introduce ChatFrame:UpdateHeight() to manually update the height
* fixed a possible error with the chat-tabs

3.3.1
* fixed chat height of messages spanning multiple lines

3.3
*fixes for 3.3.5
*simpler event handling, including battle.net-events

3.2
*Prevent chat from resizing when moving it around

3.1
*TOC bump
*Added new PartyLeader event to the eventlist

3.0
* Another rewrite
* Chicchai now uses less CPU time
* You can define how many lines you'd like to see in minimized mode
* docked chatframes are now handled properly
* fixed chat frame flickering happening sometimes on mouseover
* you can define how long you should hover the frame until it maximizes
* chatframes can stay maximized for a defined time before minimizing on mouseleave
* you can configure on which custom channels the chatframe maximizes

2.0
*Core rewritten
*You are now able to manage the chatframes you want to be affected (like chatframe 5, 6, 8, and so on)
*TOC bump

1.1
*A few improvements
*Now Updates when the Chat Window is too small or big

1.0.1
*Added Option, that the Chat will stay open for a defined time after mouseover
Optional Files (0)


Post A Reply Comment Options
Unread 08-18-10, 12:07 PM  
wampafodder
A Kobold Labourer

Forum posts: 0
File comments: 16
Uploads: 0
Originally posted by Cargor
Make sure that ChatFrame2 is listed in the ChatFrameConfig (since Chicchai only modifies these frames). If you don't need any events for it, just write
["ChatFrame2"] = true
Kerecha. I Believe this is what you need to do, for whichever chat frames you want to collapse/maximize. So if you have 3 chat frames, make sure to also add ["ChatFrame3"] = true in the appropriate section as well, and so on.
Report comment to moderator  
Reply With Quote
Unread 08-19-10, 05:56 AM  
Kerecha
A Deviate Faerie Dragon
 
Kerecha's Avatar

Forum posts: 10
File comments: 196
Uploads: 0
Originally posted by wampafodder
Kerecha. I Believe this is what you need to do, for whichever chat frames you want to collapse/maximize. So if you have 3 chat frames, make sure to also add ["ChatFrame3"] = true in the appropriate section as well, and so on.
I tried that before but got some errors. But after some help elsewhere i got the solution

The lua isn't exactly clear about how to add additional channels it only says

Code:
	},
	["ChatFrame3"] = true, -- "true" just makes this frame available for minimizing and registers it with Chicchai
}
Making it ab bit of guesswork how to add 4-5-6-7.

Code:
	},
	["ChatFrame3"] = true, -- "true" just makes this frame available for minimizing and registers it with Chicchai
}	
	["ChatFrame4"] = true,
}	
	["ChatFrame5"] = true,
}	
	["ChatFrame6"] = true,
}	
	["ChatFrame7"] = true,
}
Was the first that came to mind for me with my limited lua knowledge, and it was obviously wrong

Code:
	},
	["ChatFrame3"] = true, -- "true" just makes this frame available for minimizing and registers it with Chicchai
	["ChatFrame4"] = true,
	["ChatFrame5"] = true,
	["ChatFrame6"] = true,
	["ChatFrame7"] = true,
}
Being the correct way.

If 2 "extras" was in the original code it woul be a lot easier to figure out the proper way to add more

ie

Code:
	},
	["ChatFrame3"] = true, -- "true" just makes this frame available for minimizing and registers it with Chicchai
	["ChatFrame4"] = false,  -- some info text about what false setting does or something
}

Also getting an annoying error on reloads.

When first loding it works fine.
But after a /rl this error pops

Code:
1x Chicchai-3.3.2\core.lua:179: attempt to index local 'self' (a nil value)
Chicchai-3.3.2\core.lua:221: in main chunk

Locals:
maxHeight = 120
animTime = 0.3
minimizeTime = 10
minimizedLines = 1
MaximizeOnEnter = true
WaitAfterEnter = 0
WaitAfterLeave = 0
LockInCombat = nil
MaximizeCombatLog = true
channelNumbers = <table> {
 2 = true
 1 = true
 3 = true
}
ChatFrameConfig = <table> {
 ChatFrame3 = <unnamed> {}
 ChatFrame1 = <table> {}
}
select = <function> defined =[C]:-1
UP = 1
DOWN = -1
getMinHeight = <function> @ Chicchai\core.lua:74:
Update = <function> @ Chicchai\core.lua:88:
getChicchai = <function> @ Chicchai\core.lua:115:
SetFrozen = <function> @ Chicchai\core.lua:121:
Animate = <function> @ Chicchai\core.lua:125:
Maximize = <function> @ Chicchai\core.lua:141:
Minimize = <function> @ Chicchai\core.lua:142:
MinimizeAfterWait = <function> @ Chicchai\core.lua:144:
CheckEnterLeave = <function> @ Chicchai\core.lua:150:
updateHeight = <function> @ Chicchai\core.lua:177:
chatEvent = <function> @ Chicchai\core.lua:184:
(for generator) = <function> defined =[C]:-1
(for state) = <table> {
 ChatFrame3 = <unnamed> {}
 ChatFrame1 = <table> {}
}
(for control) = "ChatFrame3"
chatname = "ChatFrame3"
options = true
chatframe = ChatFrame3 {
 0 = <userdata>
 flashTimer = 0
 tellTimer = 856081.064
 Maximize = <function> @ Chicchai\core.lua:141:
 resizeButton = ChatFrame3ResizeButton {}
 buttonFrame = ChatFrame3ButtonFrame {}
 Chicchai = <unnamed> {}
 channelList = <table> {}
 SetFrozen = <function> @ Chicchai\core.lua:121:
 clickAnywhereButton = ChatFrame3ClickAnywhereButton {}
 isDocked = 1
 Minimize = <function> @ Chicchai\core.lua:142:
 editBox = ChatFrame3EditBox {}
 UpdateHeight = <function> @ Chicchai\core.lua:177:
 isLocked = 1
Last edited by Kerecha : 08-19-10 at 05:58 AM.
Report comment to moderator  
Reply With Quote
Unread 09-23-10, 02:18 AM  
abyssis87
A Kobold Labourer

Forum posts: 1
File comments: 16
Uploads: 0
Error on /rl

I noticed Kerecha mentioned the error at the end of their last post as well. Wasn't sure if it was the same error


Code:
Message: Interface\AddOns\Chicchai\core.lua:179: attempt to index local 'self' (a nil value)
Time: 09/23/10 16:14:31
Count: 1
Stack: Interface\AddOns\Chicchai\core.lua:179: in function `updateHeight'
Interface\AddOns\Chicchai\core.lua:221: in main chunk

Locals: self = ChatFrame3 {
 0 = <userdata>
 flashTimer = 0
 tellTimer = 35656.092
 Maximize = <function> defined @Interface\AddOns\Chicchai\core.lua:141
 resizeButton = ChatFrame3ResizeButton {
 }
 buttonFrame = ChatFrame3ButtonFrame {
 }
 Chicchai = <unnamed> {
 }
 channelList = <table> {
 }
 clickAnywhereButton = ChatFrame3ClickAnywhereButton {
 }
 isDocked = 1
 SetFrozen = <function> defined @Interface\AddOns\Chicchai\core.lua:121
 editBox = ChatFrame3EditBox {
 }
 UpdateHeight = <function> defined @Interface\AddOns\Chicchai\core.lua:177
 isLocked = 1
 name = "Trade"
 Minimize = <function> defined @Interface\AddOns\Chicchai\core.lua:142
 buttonSide = "left"
 zoneChannelList = <table> {
 }
 defaultLanguage = "Common"
 messageTypeList = <table> {
 }
}
self = nil
(*temporary) = ChatFrame1 {
 channelList = <table> {
 }
 0 = <userdata>
 clickAnywhereButton = ChatFrame1ClickAnywhereButton {
 }
 isStaticDocked = true
 AddMessage = <function> defined @Interface\AddOns\!StopTheSpam\libs\AceHook-2.1\AceHook-2.1.lua:127
 editBox = ChatFrame1EditBox {
 }
 isDocked = 1
 tellTimer = 35655.985
 defaultLanguage = "Common"
 flashTimer = 0
 zoneChannelList = <table> {
 }
 resizeButton = ChatFrame1ResizeButton {
 }
 buttonFrame = ChatFrame1ButtonFrame {
 }
 messageTypeList = <table> {
 }
}
(*temporary) = nil
(*temporary) = ChatFrame3 {
 0 = <userdata>
 flashTimer = 0
 tellTimer = 35656.092
 Maximize = <function> defined @Interface\AddOns\Chicchai\core.lua:141
 resizeButton = ChatFrame3ResizeButton {
 }
 buttonFrame = ChatFrame3ButtonFrame {
 }
 Chicchai = <unnamed> {
 }
 channelList = <table> {
 }
 clickAnywhereButton = ChatFrame3ClickAnywhereButton {
 }
 isDocked = 1
 SetFrozen = <function> defined @Interface\AddOns\Chicchai\core.lua:121
 editBox = ChatFrame3EditBox {
 }
 UpdateHeight = <function> defined @Interface\AddOns\Chicchai\core.lua:177
 isLocked = 1
 name = "Trade"
 Minimize = <function> defined @Interface\AddOns\Chicchai\core.lua:142
 buttonSide = "left"
 zoneChannelList = <table> {
 }
 defaultLanguage = "Common"
 messageTypeList = <table> {
 }
}
(*temporary) = "ScrollingMessageFrame"
(*temporary) = "attempt to index local 'self' (a nil value)"
getChicchai = <function> defined @Interface\AddOns\Chicchai\core.lua:115
DOWN = -1
getMinHeight = <function> defined @Interface\AddOns\Chicchai\core.lua:74
Last edited by abyssis87 : 09-23-10 at 02:18 AM.
Report comment to moderator  
Reply With Quote
Unread 10-12-10, 03:12 PM  
wampafodder
A Kobold Labourer

Forum posts: 0
File comments: 16
Uploads: 0
Any chance this addon will be updated for Cata ?
Report comment to moderator  
Reply With Quote
Unread 10-14-10, 04:24 PM  
Lolzen
An Aku'mai Servant
 
Lolzen's Avatar
AddOn Author - Click to view AddOns

Forum posts: 36
File comments: 167
Uploads: 12
Originally posted by wampafodder
Any chance this addon will be updated for Cata ?
It will.
But it will take some time, as things in RL are starting to overhelm me.
Maybe Cargor will have a time where he's bored, but i'm sure he will focus on other Addons first, so don't expect it soon.

Sorry for that.
Report comment to moderator  
Reply With Quote
Unread 11-14-10, 04:21 AM  
twistdshade
A Fallenroot Satyr
 
twistdshade's Avatar

Forum posts: 21
File comments: 124
Uploads: 0
Got this error when switching to a different tab in my chat window

Code:
Date: 2010-11-14 04:18:47
ID: 2
Error occured in: Global
Count: 125
Message: ..\AddOns\Chicchai\core.lua line 152:
   attempt to index local 'self' (a nil value)
Debug:
   [C]: ?
   Chicchai\core.lua:152:
      Chicchai\core.lua:150
AddOns:
  Swatter, v5.9.4960 (WhackyWallaby)
  ACP, v3.3.9 
  AdvancedTradeSkillWindow, v
  Altoholic, v4.0.003
  AucAdvanced, v5.9.4960 (WhackyWallaby)
  AucFilterBasic, v5.9.4960 (WhackyWallaby)
  AucFilterOutlier, v5.9.4960.2531
  AucMatchUndercut, v5.9.4960.2531
  AucScanData, v5.9.4960 (WhackyWallaby)
  AucStatHistogram, v5.9.4960 (WhackyWallaby)
  AucStatiLevel, v5.9.4960 (WhackyWallaby)
  AucStatPurchased, v5.9.4960 (WhackyWallaby)
  AucStatSales, v5.9.4960.2842
  AucStatSimple, v5.9.4960 (WhackyWallaby)
  AucStatStdDev, v5.9.4960 (WhackyWallaby)
  AucStatWOWEcon, v5.9.4960.2530
  AucUtilAHWindowControl, v5.9.4960.3311
  AucUtilAppraiser, v5.9.4960.2530
  AucUtilAskPrice, v5.9.4960.3175
  AucUtilAutoMagic, v5.9.4960.3142
  AucUtilCompactUI, v5.9.4960.2530
  AucUtilEasyBuyout, v5.9.4960.3583
  AucUtilFixAH, v5.9.4960 (WhackyWallaby)
  AucUtilGlypher, v5.9.4960.2545
  AucUtilItemSuggest, v5.9.4960.3108
  AucUtilPriceLevel, v5.9.4960.2545
  AucUtilScanButton, v5.9.4960.2530
  AucUtilScanFinish, v5.9.4960.2530
  AucUtilScanProgress, v5.9.4960.2530
  AucUtilScanStart, v5.9.4960.4819
  AucUtilSearchUI, v5.9.4960.3655
  AucUtilSimpleAuction, v5.9.4960.4546
  AucUtilVendMarkup, v5.9.4960.2530
  Babylonian, v5.1.DEV.130
  BadBoy, v6.208
  BeanCounter, v5.9.4960 (WhackyWallaby)
  Buffet, v4.0.0.32
  Carbonite, v4.013
  CarboniteTransfer, v1.01
  Chicchai, v3.3.2
  Configator, v5.1.DEV.282
  DataStore, v4.0.001
  DataStoreAchievements, v4.0.001
  DataStoreAuctions, v4.0.001
  DataStoreCharacters, v4.0.001
  DataStoreContainers, v4.0.001
  DataStoreCrafts, v4.0.001
  DataStoreCurrencies, v4.0.001
  DataStoreInventory, v4.0.001
  DataStoreMails, v4.0.001
  DataStorePets, v4.0.001
  DataStoreQuests, v4.0.001
  DataStoreReputations, v4.0.001
  DataStoreSpells, v4.0.001
  DataStoreStats, v4.0.001
  DataStoreTalents, v4.0.001
  DBMCore, v
  DebugLib, v5.1.DEV.275
  Dominos, v1.20.0
  DominosCast, v
  DominosRoll, v
  DominosTotems, v
  DominosXP, v
  EavesDrop, v2.1
  Examiner, v10.11.07
  FishermansFriend, v
  GoGoMount, v4.0.25
  GTFO, v3.0
  Informant, v5.9.4960 (WhackyWallaby)
  Karma, v40001.02
  KarmaBroker, v40001.02
  KarmaDBAlliance, v40001.02
  MoveAnything, v11.4.5
  Omen, v3.0.11
  OPie, v
  PetLeash, v1.5.9.1
  Postal, v3.4.4
  Prat30, v3.4.10      
  Prat30Libraries, v
  PutGuildBack, v
  RatingBuster, v
  RealIDClean, v0.1a
  RedRange, v
  Skada, v1.2-30
  SkadaAbsorbs, v1.0
  SkadaCC, v1.0
  SkadaDamage, v1.0
  SkadaDamageTaken, v1.0
  SkadaDeaths, v1.0
  SkadaDebuffs, v1.0
  SkadaDispels, v1.0
  SkadaEnemies, v1.0
  SkadaFailbot, v1.0
  SkadaHealing, v1.0
  SkadaPower, v1.0
  SkadaThreat, v1.0
  SlideBar, v5.9.4960 (WhackyWallaby)
  SmartBuff, v4.0c
  SolidarityAlts, v0.5.0
  StealYourCarbon, v4.0.0.18
  Stubby, v5.9.4960 (WhackyWallaby)
  TBag, v
  TidyPlates, v5.14 (r53)
  TipTac, v10.11.12
  TipTacItemRef, v10.11.12
  TipTacTalents, v10.10.27
  TradeskillInfo, v2.0.0
  XPerl, v3.1.1
  XPerlArcaneBar, v
  XPerlParty, v
  XPerlPartyPet, v
  XPerlPlayer, v
  XPerlPlayerBuffs, v
  XPerlPlayerPet, v
  XPerlRaidAdmin, v
  XPerlRaidFrames, v
  XPerlRaidHelper, v
  XPerlRaidMonitor, v
  XPerlRaidPets, v
  XPerlTarget, v
  XPerlTargetTarget, v
  BlizRuntimeLib_enUS v4.0.1.40000 <us>
  (ck=ca3)
and this error when reloading my interface

Code:
Date: 2010-11-14 04:17:28
ID: 1
Error occured in: Global
Count: 1
Message: ..\AddOns\Chicchai\core.lua line 179:
   attempt to index local 'self' (a nil value)
Debug:
   [C]: ?
   Chicchai\core.lua:179: updateHeight()
   Chicchai\core.lua:221: in main chunk
AddOns:
  Swatter, v5.9.4960 (WhackyWallaby)
  ACP, v3.3.9 
  AdvancedTradeSkillWindow, v
  Altoholic, v4.0.003
  AucAdvanced, v5.9.4960 (WhackyWallaby)
  AucFilterBasic, v5.9.4960 (WhackyWallaby)
  AucFilterOutlier, v5.9.4960.2531
  AucMatchUndercut, v5.9.4960.2531
  AucStatHistogram, v5.9.4960 (WhackyWallaby)
  AucStatiLevel, v5.9.4960 (WhackyWallaby)
  AucStatPurchased, v5.9.4960 (WhackyWallaby)
  AucStatSales, v5.9.4960.2842
  AucStatSimple, v5.9.4960 (WhackyWallaby)
  AucStatStdDev, v5.9.4960 (WhackyWallaby)
  AucStatWOWEcon, v5.9.4960.2530
  AucUtilAHWindowControl, v5.9.4960.3311
  AucUtilAppraiser, v5.9.4960.2530
  AucUtilAskPrice, v5.9.4960.3175
  AucUtilAutoMagic, v5.9.4960.3142
  AucUtilCompactUI, v5.9.4960.2530
  AucUtilEasyBuyout, v5.9.4960.3583
  AucUtilFixAH, v5.9.4960 (WhackyWallaby)
  AucUtilGlypher, v5.9.4960.2545
  AucUtilItemSuggest, v5.9.4960.3108
  AucUtilPriceLevel, v5.9.4960.2545
  AucUtilScanButton, v5.9.4960.2530
  AucUtilScanFinish, v5.9.4960.2530
  AucUtilScanProgress, v5.9.4960.2530
  AucUtilScanStart, v5.9.4960.4819
  AucUtilSearchUI, v5.9.4960.3655
  AucUtilSimpleAuction, v5.9.4960.4546
  AucUtilVendMarkup, v5.9.4960.2530
  Babylonian, v5.1.DEV.130
  BadBoy, v6.208
  BeanCounter, v5.9.4960 (WhackyWallaby)
  Buffet, v4.0.0.32
  Carbonite, v4.013
  CarboniteTransfer, v1.01
  Chicchai, v3.3.2
  Configator, v5.1.DEV.282
  DataStore, v4.0.001
  DataStoreCharacters, v4.0.001
  DebugLib, v5.1.DEV.275
  SlideBar, v5.9.4960 (WhackyWallaby)
  Stubby, v5.9.4960 (WhackyWallaby)
  BlizRuntimeLib_enUS v4.0.1.40000 <us>
  (ck=611)
I just started having these problems after installing the Prat chat addon
__________________
Report comment to moderator  
Reply With Quote
Unread 12-25-10, 02:39 PM  
tocz
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Need help

Hey, I know nothing about scripting and need some help. I would like someone here to help me permanently minimize my chat window. It stays small (1 bar) until someone in my raid or party group talks and then it turns full size for about 3seconds. This is very distracting and I’d just like it to stay small until I say otherwise.

What do?
Report comment to moderator  
Reply With Quote
Unread 05-31-11, 02:33 PM  
nelothi
An Aku'mai Servant
AddOn Compiler - Click to view compilations

Forum posts: 36
File comments: 72
Uploads: 1
So. im guessing this addon isnt going to be updated anytime soon. is it okay for me to attempt to fix some of the issues and repost it?
Report comment to moderator  
Reply With Quote
Unread 07-18-11, 09:44 AM  
spiralofhope
A Deviate Faerie Dragon
 
spiralofhope's Avatar

Forum posts: 13
File comments: 276
Uploads: 0
Originally posted by nelothi
So. im guessing this addon isnt going to be updated anytime soon. is it okay for me to attempt to fix some of the issues and repost it?
It seems to be abandoned.. please do make a fan update.
__________________
spiralofhope.com
Report comment to moderator  
Reply With Quote
Unread 07-19-11, 08:37 AM  
wampafodder
A Kobold Labourer

Forum posts: 0
File comments: 16
Uploads: 0
Originally posted by spiralofhope
It seems to be abandoned.. please do make a fan update.
Seconded ! Please ! I love this mod
Report comment to moderator  
Reply With Quote
Unread 08-25-11, 09:50 AM  
Jelly
A Fallenroot Satyr
AddOn Author - Click to view AddOns

Forum posts: 26
File comments: 40
Uploads: 17
I do believe that I've fixed it. Or at least the errors that it was throwing at me with nothing but Tukui and Skada installed. I'll go addon-less a little later on today and play with it, to see if I can errors. If I don't then I'll push it to my girlfriend and perhaps guild to see if they get errors ... and if they don't, then I'll see about uploading it. [Will talk to Cairenn/Shirik/*insert Admin here* about what I would need to do in order to upload essentially someone else's addon]

Just a heads up - it's being worked on.
Report comment to moderator  
Reply With Quote
Unread 06-01-12, 08:04 PM  
Gwythian
A Kobold Labourer

Forum posts: 1
File comments: 1
Uploads: 0
Chichai Improved

I've been working on this addon for fun.

I've added slash commands to limit the amount of lines displayed at a given time and fixed the bugs that would make the chatframe freeze in a minimized state.

It's not quite ready for release and I'm still waiting to hear back from Lolzen, but just letting yall know.
Report comment to moderator  
Reply With Quote
Unread 09-05-12, 06:34 PM  
Dethedrus
A Defias Bandit

Forum posts: 2
File comments: 24
Uploads: 0
Re: Chichai Improved

Originally Posted by Gwythian
I've been working on this addon for fun.

I've added slash commands to limit the amount of lines displayed at a given time and fixed the bugs that would make the chatframe freeze in a minimized state.

It's not quite ready for release and I'm still waiting to hear back from Lolzen, but just letting yall know.
Any new Gwythian? Please!
Report comment to moderator  
Reply With Quote
Unread 09-17-12, 04:11 AM  
love4wheeli3z
A Kobold Labourer
 
love4wheeli3z's Avatar

Forum posts: 0
File comments: 7
Uploads: 0
I'm trying to set this up so it will maximize the chat frame that is getting updated .

I got the general -combat-group chat frames on the left screen and Guild chat on the right screen.
Whenever left chat is getting updated it will maximize works great , however when guildchat getting updated the left chat will maximize, any way i can set this up so it will maximize by itself as standalone without left chat mazimized ?

thanks for great addon.
Report comment to moderator  
Reply With Quote
Unread 11-10-12, 03:26 PM  
Dethedrus
A Defias Bandit

Forum posts: 2
File comments: 24
Uploads: 0
Anything? Anyone doing a fan update or anything at all?
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: