The KGB Oracle
Serving the online gaming community since 1997
Visit www.the-kgb.com
For additional information

Join KGB DISCORD: http://discord.gg/KGB
 
KGB Information
Untitled 1

Visit KGB HQ
www.the-kgb.com

Who's Online Now
0 members (), 26 guests, and 26 robots.
Key: Admin, Global Mod, Mod
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Today's Birthdays
There are no members with birthdays on this day.
Newest Members
Luckystrikes, Shingen, BillNyeCommieSpy, Lamp, AllenGlines
1,477 Registered Users
Forum Statistics
Forums53
Topics13,095
Posts116,357
Members1,477
Most Online276
Aug 3rd, 2023
Top Likes Received (30 Days)
None yet
Top Posters(30 Days)
Sini 1
Popular Topics(Views)
2,051,082 Trump card
1,346,923 Picture Thread
482,555 Romney
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 3 of 4 1 2 3 4
#56993 01/12/10 03:00 PM
Joined: Nov 2009
Posts: 1,908
KGB Supreme Knight
***
Offline
KGB Supreme Knight
***
Joined: Nov 2009
Posts: 1,908
Originally Posted By: Squared
Can we sticky this one? Seems that quite a few number of us have the G13 now. Out of stock at Best Buy, on sale at Amazon for $59.99 with free shipping as well. Should have mine next week.



Awesome! I missed the Best Buy one and figured it would go on sale somewhere else.. Ordering soon! smile



Joined: Dec 2005
Posts: 4,115
Likes: 13
(GM5) KGB King
KGB Federal Faction
****
Offline
(GM5) KGB King
KGB Federal Faction
****
Joined: Dec 2005
Posts: 4,115
Likes: 13
Gamestop had them last weekend, for delivery only though.
Don't know if they still have them or not.


[Linked Image from w3.the-kgb.com][Linked Image from w3.the-kgb.com][Linked Image from w3.the-kgb.com][Linked Image from w3.the-kgb.com]
[Linked Image from the-kgb.com][Linked Image from oracle.the-kgb.com]
Joined: Nov 2005
Posts: 1,876
Likes: 10
Arkh Offline OP
KGB Supreme Court Justice
KGB Supreme Knight
****
OP Offline
KGB Supreme Court Justice
KGB Supreme Knight
****
Joined: Nov 2005
Posts: 1,876
Likes: 10
Fuck, I should ask some money from Logitech there.


[Linked Image from w3.the-kgb.com][Linked Image from w3.the-kgb.com]
Arkh #57005 01/12/10 06:42 PM
Joined: Nov 2009
Posts: 1,908
KGB Supreme Knight
***
Offline
KGB Supreme Knight
***
Joined: Nov 2009
Posts: 1,908
Mines all ordered. I use G15 (old full version) now but reaching on the keyboard still.. Hoping this helps laugh



Joined: May 2009
Posts: 784
KGB Knight
***
Offline
KGB Knight
***
Joined: May 2009
Posts: 784
jioned the g13 club

Joined: Jun 2008
Posts: 1,036
KGB Arch Duke
****
Offline
KGB Arch Duke
****
Joined: Jun 2008
Posts: 1,036
keyArray = {
{ -- Profile 1
[14] = { "ctrl+F3", "ctrl+F5"}, -- sword attacks
[13] = { "ctrl+F2", "ctrl+F4"}, -- sword movements
[12] = { "ctrl+F1"}, -- sword shield break
},
{ -- Profile 2

[14] = { "shift+F3", "shift+F5"}, -- 2sword attacks
[13] = { "shift+F2", "shift+F4"}, -- 2sword movements
[12] = { "shift+F1"}, -- 2sword shield break
},
{ -- Profile 3
[6] = {"f8", "f7", "f5", "f6"}, -- heal self
[14] = {"alt+U", "alt+I", "alt+y"}, -- r50 nukes
[13] = {"alt+O", "alt+K", "alt+B",}, -- big AoEs
[12] = {"ctrl+5", "ctrl+6", "ctrl+7"}, -- debuffs
[9] = {"alt+F1", "alt+F2", "alt+F3", "alt+F4", "alt+F5", "alt+F6", "alt+F7", "alt+F8", "alt+F9"}, -- buff other
[4] = {"alt+1", "alt+2", "alt+3", "alt+4", "alt+5", "alt+6", "alt+7", "alt+8", "alt+9", "alt+0", "ctrl+1"}, -- buff self
[8] = {"shift+f8", "f9", "shift+f12"}, -- heal other
[5] = {"ctrl+I", "ctrl+O", "ctrl+P"}, -- Utility spells
}
};
-- list of macros to launch. Format : key = {"macro name", "profile to activate"}
macros = {
[3] = {"Greatsword", 2},
[2] = {"staff", 3},
[1] = {"1Hander", 1}};
indexes = {{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}};
-- when the profile is changed the pad lose all pressed key, so we have to manage this
movements = {[26] = "W",
[29] = "A",
[28] = "S",
[27] = "D"};
lastGkey = 0;
profile = 1;
lastMacro = 0;

function OnEvent(event, arg)
if (event=="G_PRESSED" and arg ~=0) then
-- gets profile number
profile = GetMKeyState();
pushKey(arg);
end

if (event=="G_RELEASED" and movements[arg]) then
releaseKey(arg);
end
-- loot key, usefull for moving stuff quick (like 2000 pants)
if(event=="G_PRESSED" and arg==18 or arg==24 or arg==18) then
x, y = GetMousePosition();
PressMouseButton(1);
Sleep(10);
MoveMouseTo(54000, 45000);
Sleep(10);
ReleaseMouseButton(1);
Sleep(10);
MoveMouseTo(x, y);
end
end

function releaseKey(gkey)
ReleaseKey(movements[gkey]);
end

function pushKey(gkey)
-- launch macro if needed
if(macros[gkey]) then
macroKey(gkey);
return;
end

-- manage movement if needed
if(movements[gkey]) then
PressKey(movements[gkey]);
return;
end

-- gets key name
-- we check if the last gkey used was the same, if yes, cycle
if(lastGkey > 0 and lastGkey == gkey) then
indexes[profile][gkey] = indexes[profile][gkey] + 1;
if(indexes[profile][gkey] > table.getn(keyArray[profile][gkey])) then
indexes[profile][gkey] = 1;
end
end
lastGkey = gkey;
i = indexes[profile][gkey];
keyString = keyArray[profile][gkey][i];

-- we get modifiers to use
toCtrl = 0;
toAlt = 0;
toShift = 0;
if(string.find(keyString, "ctrl")) then
toCtrl = 1;
end
if(string.find(keyString, "alt")) then
toAlt = 1;
end
if(string.find(keyString, "shift")) then
toShift = 1;
end

-- now, we clean the key string to extract only the key
keyString = string.gsub(keyString, "ctrl", "");
keyString = string.gsub(keyString, "alt", "");
keyString = string.gsub(keyString, "shift", "");
keyString = string.gsub(keyString, "\+", "");
key = string.gsub(keyString, " ", "");
-- check if shift is already pushed
isSprint = IsModifierPressed("shift");

-- if needed release or press shift key
if((toCtrl == 1 or toAlt == 1) and isSprint and toShift == 0) then
ReleaseKey("lshift");
elseif(not isSprint and toShift == 1) then
PressKey("lshift");
end

-- press modifiers
if toCtrl == 1 then
PressKey("lctrl");
end
if toAlt == 1 then
PressKey("lalt");
end

-- press and release key
PressAndReleaseKey(key);

-- release modifiers
if toCtrl == 1 then
ReleaseKey("lctrl");
end
if toAlt == 1 then
ReleaseKey("lalt");
end

-- release or press shift if it was pressed before
if((toCtrl == 1 or toAlt == 1) and isSprint and toShift == 0) then
PressKey("lshift");
elseif(not isSprint and toShift == 1) then
ReleaseKey("lshift");
end
end

-- I have macros set for these keys and some need to change the active profile
function macroKey(key)
if(lastMacro ~= key) then
-- Abort old macro
AbortMacro();
end
isSprint = IsModifierPressed("lshift");
oldState = GetMKeyState();
-- Activate macro
PlayMacro(macros[key][1]);
-- Change profile
SetMKeyState(macros[key][2]);

if(isSprint and (macros[key][15] ~= oldState)) then
ReleaseKey("lshift");
Sleep(20);
PressKey("lshift");
end
end


posting this for a few of the guys that asked


Arkh #57425 01/19/10 10:42 AM
S
Squared
Unregistered
Squared
Unregistered
S
I hate the US Postal Service. On the early afternoon of January 12th, I ordered my G13 through Amazon and took the standard shipping that was included with the price. NOT THE CHEAPEST FREE SHIPPING, but the standard shipping through the US Postal Service. Later that day Ichy ordered his G13 from Amazon and I believe he took the standard shipping as well. On the 13th, Ichy had his G13 in his hands. Today, the 19th, I am still waiting on mine. I can understand that it shipped from Indiana and went to Ohio, so that is why Icky got next day service, but I'm in Texas. It's not like I live in Australia. How many days does it take to get a package 1000 miles? 8 days and counting. geeeez.

Meanwhile the Wii I bought from Amazon and shipped UPS standard on MONDAY from Kentucky will be here on Thursday. 4 days. Funny how a greedy profit seeking corporation does a better job than the State run USPS.

#57432 01/19/10 11:50 AM
Joined: Nov 2009
Posts: 1,908
KGB Supreme Knight
***
Offline
KGB Supreme Knight
***
Joined: Nov 2009
Posts: 1,908
Originally Posted By: Squared
I hate the US Postal Service. On the early afternoon of January 12th, I ordered my G13 through Amazon and took the standard shipping that was included with the price. NOT THE CHEAPEST FREE SHIPPING, but the standard shipping through the US Postal Service. Later that day Ichy ordered his G13 from Amazon and I believe he took the standard shipping as well. On the 13th, Ichy had his G13 in his hands. Today, the 19th, I am still waiting on mine. I can understand that it shipped from Indiana and went to Ohio, so that is why Icky got next day service, but I'm in Texas. It's not like I live in Australia. How many days does it take to get a package 1000 miles? 8 days and counting. geeeez.

Meanwhile the Wii I bought from Amazon and shipped UPS standard on MONDAY from Kentucky will be here on Thursday. 4 days. Funny how a greedy profit seeking corporation does a better job than the State run USPS.


Yea I feel ya.. someone must have been watchin over me cause I am the one typically in your shoes Squared.

Now I'm not 100% certain as I pitched the box already but I think mine came UPS, not USPS.. Maybe that's the difference.

If that's the case I'm not sure why they chose UPS for me and not you frown



Joined: Aug 2006
Posts: 3,147
Likes: 14
Former KGB Member
***
Offline
Former KGB Member
***
Joined: Aug 2006
Posts: 3,147
Likes: 14
OK...I need some serious help. I have the old school G15 and I can not figure out how to get these to work or re-create them..anyone? I am so tired of hunting and clicking and dieing cause I am fumbling for the right keys..lol


[Linked Image from nodiatis.com]
#64199 04/26/10 05:52 PM
Joined: Aug 2006
Posts: 3,147
Likes: 14
Former KGB Member
***
Offline
Former KGB Member
***
Joined: Aug 2006
Posts: 3,147
Likes: 14
Arkh, I need you to break this down to me barney style..do I cut and paste it into my manager..and then what? lol


[Linked Image from nodiatis.com]
Page 3 of 4 1 2 3 4

Link Copied to Clipboard
Powered by UBB.threads™ PHP Forum Software 7.7.5