Jump to content

mallikia

Members
  • Posts

    3
  • Joined

Reputation

10 Good
  1. So first I enabled AA in my .ini file. That is another thing I wasn't bother to ***** about because they are obviously working on it. But seriously the shadows look almost on par with minecraft graphics. Anyway if you don't notice a problem with the shadow go any other modern game or even any game made in the last 6-8 year... perhaps 1998 was a bit harsh. Once you enable antialiasing the graphics with the exception of the shadows are fairly decent. As far as the people saying, "if you don't like the game don't play it". I do like the game for the most part. The stories and quests are amazing and like many people here I am a huge star wars fan. Aside from the shadows being completely ****** compared any modern game there is also a decent amount of screen tearing mosstly during the cut scenes. Lastly instead of assuming my computer is under powered why not ask what my computer spec are? Which are: Intel® Core™ i7 2960XM 16GB Dual Channel DDR3 at 1600MHz Dual 2GB GDDR5 NVIDIA® GeForce® GTX 580M In closing I assure you that my comment about the shadows sucking have nothing to do with my computer. My frame rates and everything else about the game (graphically) are fine. I was merely commenting on the poor quality of the shadows.
  2. They want their shadows back! Seriously they suck.
  3. While I am waiting in the 1/2 hour queue I thought I might write a blurb about my experience with AutoHotKey and SWTOR. I realize this thread will probably be met with some contempt from the people who think macros are for people who don't know how to play the game. But hopefully this thread will be useful to some people. I really liked the macro system in Rift where you could stack cast macros on top of each other and create a kind of mashable attack button. Using AutoHotKey I did sort of the same thing with my Sith Inquisitor. $NumPad2:: Loop { if not GetKeyState("NumPad2", "P") break SendInput, = ;Recklessness SendInput 8 ;Crushing Darkness SendInput 9 ;Force Lightning SendInput 0 ;Lightning strike SendInput - ;Shock Sleep 500 ;Need a slight sleept to avoid issues } First I use a Razor Naga gaming mouse. The keypad on the mouse is bound to the number pad. What the above macro does is cast Recklessness if it's up, Crushing Darkness if it's up, Force Lightning if it is up, Lightning Strike and will cast Shock if I am moving. I'm not saying this is the perfect rotation for my class, I might still be figuring that out but it does work pretty well. Next, I wanted to roll a healer. It annoyed me to no end that I didn't have the ability to make mouse over macros for healing. Call it habit but in any game I've ever played the ability to mouse over heal was there. $NumPad4:: Loop { if not GetKeyState("NumPad4", "P") break Click ;Mouse Over Target SendInput 4 ;Dark Heal SendInput +{tab} ;Target Previous Target Sleep 500 ;Need a slight sleept to avoid issues } So in the above example, when I hover my mouse over a unit frame and push the NumPad4 button on my mouse, it sends the left click which targets the person I want to heal, casts Dark Heal and retargets my last target. I have to say this works way better than I thought it might. I've made similar macros for other heals and shield as well. Last one thing that tripped me up for a minute with AutoHotKey and SWTOR is that the game runs as administrator so in order for AHK to work you need to run the scripts as administrator as well.
×
×
  • Create New...