Graal Forums  

Go Back   Graal Forums > Development Forums > Future Improvements
FAQ Members List Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 08-07-2008, 09:15 PM
Rufus Rufus is offline
Registered User
Join Date: Jun 2004
Location: United Kingdom
Posts: 4,698
Rufus has much to be proud ofRufus has much to be proud ofRufus has much to be proud ofRufus has much to be proud ofRufus has much to be proud ofRufus has much to be proud of
Lightbulb Graal Controls.

From a player point of view (both new and old) the controls on Graal as a whole are extremely disjointed from the actual gameplay, and when you jump from server to server as much as people do, it becomes even worse. We have the global controls in the F3 options menu, which are very out of date and it only has a few basic options as you can see if you look at the first attachment. The majority of servers make use of these functions, such as movement, using A, S and D, but a lot do not.

On top of the basic functions the majority of servers obviously have their server-specific keys, such as Zodiac which has millions, and Classic that has Wave on W, Hug on H and Camera Change on C. Now on the two servers I've mentioned for example, there is no way of changing the keys that you are using, and you will only find them by exploring. On Classic there is a hidden chat command (terrible, terrible) for changing your keys, but not even the staff seem to know it. Classic is not the only server who falls victim to this, as nearly every single server has chat commands to change keys. Some servers have taken the inituative and added GUI interfaces for changing hotkeys, etc, which really annoys me. There are two pretty obvious reasons why they are a bad way of handling it:
  1. Custom key settings conflict with global and graal-set key settings.
  2. There should only be one area for the control of keys, both for consistency and to avoid huge confusion.

With those two reasons in mind, I've been kind of tampering with the idea of a new controls window; I've attached it below. My main idea was encorporating the global, local and Graal controls all into one control area. The blue keys represent Graal controls, the red keys represent global controls, and the green keys represent the local. I was thinking with all three key 'types' being placed into one area, there will be no conflicts like there currently are. The controls on each server would appear in the settings by default (set by the server) and the player would be able to pick and choose what they wanted on their keyboard; could make the controls different per server if they really wanted to.

I just think both visually and functionally, this might be a better way of handling the controls. I'm not a scripter though, so I don't know what might mess up in that department
Attached Thumbnails
Click image for larger version

Name:	old_graal_controls.PNG
Views:	3879
Size:	19.7 KB
ID:	45534   Click image for larger version

Name:	new_graal_controls.PNG
Views:	3397
Size:	22.2 KB
ID:	45535  
__________________
Quote:
Originally Posted by Loriel View Post
Seriously, you have ****-all for content and you're not exactly pulling in new developer talent, angling for prestigious titles should be your last concern.
Reply With Quote
  #2  
Old 08-07-2008, 09:21 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
I really like this idea. Though it would destroy quite some scripts. But I guess this can be avoided by making a new event for keychecks, just for the new configuration. I would love to see this added. Go go go Stefan!
Reply With Quote
  #3  
Old 08-07-2008, 09:25 PM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Inverness approves.
__________________
Reply With Quote
  #4  
Old 08-07-2008, 09:53 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
I'll just say this, another MMO I've played does something very similar... the major problem with it is that you usually can't see the whole keyboard on a resolution of 800x600. 800x600 isn't really a major resolution anymore, but it's a pretty standard one that should still be taken into consideration.
Reply With Quote
  #5  
Old 08-07-2008, 10:12 PM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Pluffy approves.
__________________
Reply With Quote
  #6  
Old 08-07-2008, 10:24 PM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
With this, add a script function:
PHP Code:
bindfunction(idtextmulti);
Adds a function to the list of bind-able keys with the given id.
  
id (string) - The new button will have this unique ID.  If the ID already existsthe old button will be replaced with the new.
  
text (string) - The button's name will be displayed to the user as this.
  multi (bool) - If true, the function can be applied to more then one button.

Example: bindfunction(duck, "Crouch", 0);
This would add a button to the listen of buttons that would be labeled as "Crouch". 
Might want an unbindfunction(id), too.

As well as a function call:
PHP Code:
function onBoundDown(idtextcodekey) {}
Is triggered when a key that is bound with a function created by bindfunction() is pressed.
  
id (string) - The unique ID of the function.
  
text (string) - The text of the button (same text you put for bindfunction()).
  
code (int) - Keycode of the key pressed. (Just like onkeydown)
  
key (string) - The letter of the key pressed. (Just like onkeydown
Would be nice also if you made a similar call for onBoundUp() as well.

With these two added, everyone can use the same key configuration window. The bindfunction() functions will mostly be called when you log onto the server, and then will be unbound when you log off.

New functions would have to show up as unassigned buttons in another windows or part of the gui. Then just drag the unassigned buttons to a key on the keyboard.
__________________
Do it with a DON!
Reply With Quote
  #7  
Old 08-14-2008, 06:59 PM
Door Door is offline
Empress Door the Unhinged
Door's Avatar
Join Date: Dec 2006
Location: Florida
Posts: 849
Door is a splendid one to beholdDoor is a splendid one to beholdDoor is a splendid one to beholdDoor is a splendid one to behold
Consistency is a really important factor to helping people understand things! This is a good idea and I'm.. almost disappointed that it hasn't been done already. What keeps me from feeling disappointed is my distinct lack of surprise.
__________________
Reply With Quote
  #8  
Old 08-14-2008, 07:03 PM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
They're too busy working on their silly little poker games I suppose.
__________________
Reply With Quote
  #9  
Old 08-14-2008, 10:13 PM
Tyhm Tyhm is offline
Psionic Youth
Tyhm's Avatar
Join Date: Mar 2001
Location: Babord, West Graal Deaths:1009 Kills:1
Posts: 5,635
Tyhm has a spectacular aura about
I'm with Crono. Stefan doesn't care about Graal people at the moment. I wish he'd just make everything scripted so we can support the game on our own. As in, delete all the default Coded movement, display, RC, etc., delete Showstats outright, and publish a GScript version of same. He already basically deleted baddies when he went GS2, but never published the Baddy Script - I don't think he even removed the old variables to check how many of the No Clientside Baddies exist.

But that would require coming back and Handling Graal, and he might come back and look at the relative profits and decide the best way to Handle Graal is to shut it down. And even if he wound up selling Graal or publishing the serverengine, that'd just mean we'd have a bunch of codemonkeys all over the world working at cross-purposes and we'd wind up with as many distros as Linux in time...and Nobody would do this...
__________________
"Whatever," said Bean, "I was just glad to get out of the toilet."

"Power does not corrupt. Fear corrupts, perhaps the fear of a loss of power."- John Steinbeck
"I'm only acting retarded, what's your excuse?" queried the Gord.
- My pet, the Levelup Gnome

http://forums.graalonline.com/forums...&postcount=233
Reply With Quote
  #10  
Old 08-14-2008, 10:31 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by Tyhm View Post
RC
Please no.
__________________
Reply With Quote
  #11  
Old 08-14-2008, 10:45 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
To bad all keyboards doesn't look the same.

Mine is like, quite different from the one in the first post.
__________________
Reply With Quote
  #12  
Old 08-14-2008, 11:01 PM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Quote:
Originally Posted by Chompy View Post
To bad all keyboards doesn't look the same.

Mine is like, quite different from the one in the first post.
If you look closely at the keys rufus marked out, they are standard ones that any keyboard has.

Even the ever so popular CS/CSS don't follow the Swedish keyboards.
__________________
Reply With Quote
  #13  
Old 08-14-2008, 11:07 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
Quote:
Originally Posted by Chompy View Post
To bad all keyboards doesn't look the same.

Mine is like, quite different from the one in the first post.
If the keyboard layout is scripted(which I imagine it would have to be, since you'd need coordinates of each button), then making different layouts wouldn't be terribly hard. QWERTY is standard though, what would you expect?
Reply With Quote
  #14  
Old 08-15-2008, 12:03 AM
Loriel Loriel is offline
Somewhat rusty
Loriel's Avatar
Join Date: Mar 2001
Posts: 5,059
Loriel is a name known to allLoriel is a name known to allLoriel is a name known to allLoriel is a name known to all
Quote:
Originally Posted by Chompy View Post
To bad all keyboards doesn't look the same.

Mine is like, quite different from the one in the first post.
You do not really need a graphical keyboard display, just an extendable list of assignable functions.
Reply With Quote
  #15  
Old 08-15-2008, 09:14 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Most games simply use the list of assignable functions which would be easiest in short term.
__________________
Reply With Quote
  #16  
Old 08-15-2008, 09:30 AM
Tyhm Tyhm is offline
Psionic Youth
Tyhm's Avatar
Join Date: Mar 2001
Location: Babord, West Graal Deaths:1009 Kills:1
Posts: 5,635
Tyhm has a spectacular aura about
Quote:
Originally Posted by cbk1994 View Post
Please no.
Srsly, there's still a camp Against scripted RC?
Isn't it in the past by now?

If there's Scripted RC, and I need something changed in RC, I can script it.
If there's Coded RC, and I need something changed in the code, I can wait for Stefan to reappear...or not.
Advantage scripted...
__________________
"Whatever," said Bean, "I was just glad to get out of the toilet."

"Power does not corrupt. Fear corrupts, perhaps the fear of a loss of power."- John Steinbeck
"I'm only acting retarded, what's your excuse?" queried the Gord.
- My pet, the Levelup Gnome

http://forums.graalonline.com/forums...&postcount=233
Reply With Quote
  #17  
Old 08-16-2008, 01:25 AM
LoneAngelIbesu LoneAngelIbesu is offline
master of infinite loops
LoneAngelIbesu's Avatar
Join Date: May 2007
Location: Toldeo, Ohio
Posts: 1,049
LoneAngelIbesu has a spectacular aura aboutLoneAngelIbesu has a spectacular aura about
Send a message via AIM to LoneAngelIbesu
Quote:
Originally Posted by Tyhm View Post
If there's Scripted RC, and I need something changed in RC, I can script it.
Not really. /derail
__________________
"We are all in the gutter, but some of us are looking at the stars."
— Oscar Wilde, Lady Windermere's Fan
Reply With Quote
  #18  
Old 08-16-2008, 01:33 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by Tyhm View Post
Srsly, there's still a camp Against scripted RC?
Isn't it in the past by now?

If there's Scripted RC, and I need something changed in RC, I can script it.
If there's Coded RC, and I need something changed in the code, I can wait for Stefan to reappear...or not.
Advantage scripted...
No. Client-RC still is nowhere near as functional or reliable as the external RC.
__________________
Reply With Quote
  #19  
Old 08-16-2008, 05:30 AM
Tyhm Tyhm is offline
Psionic Youth
Tyhm's Avatar
Join Date: Mar 2001
Location: Babord, West Graal Deaths:1009 Kills:1
Posts: 5,635
Tyhm has a spectacular aura about
See, that sounds like something that should be fixed, not a reason to abandon the Concept of scripted-RC.
__________________
"Whatever," said Bean, "I was just glad to get out of the toilet."

"Power does not corrupt. Fear corrupts, perhaps the fear of a loss of power."- John Steinbeck
"I'm only acting retarded, what's your excuse?" queried the Gord.
- My pet, the Levelup Gnome

http://forums.graalonline.com/forums...&postcount=233
Reply With Quote
  #20  
Old 08-16-2008, 05:34 AM
xXziroXx xXziroXx is offline
Malorian
xXziroXx's Avatar
Join Date: May 2004
Posts: 5,289
xXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant futurexXziroXx has a brilliant future
Quote:
Originally Posted by Tyhm View Post
See, that sounds like something that should be fixed, not a reason to abandon the Concept of scripted-RC.
Scripted RC already exists, and have for a while. Just because it's scripted doesn't mean YOU (as in, anyone without access, ie Skyld, Stefan etc.) can edit the script. Try pressing F6 in-game on a server you have RC on.
__________________
Follow my work on social media post-Graal:Updated august 2025.
Reply With Quote
  #21  
Old 08-16-2008, 08:11 AM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Skyld will make plugins possible.
__________________
Reply With Quote
  #22  
Old 08-16-2008, 02:16 PM
Tyhm Tyhm is offline
Psionic Youth
Tyhm's Avatar
Join Date: Mar 2001
Location: Babord, West Graal Deaths:1009 Kills:1
Posts: 5,635
Tyhm has a spectacular aura about
Well that's pointless. I could see a failsafe Restore Backup function that people can't muck up, but any process which involves "Ask Stefan" is a bad process. Shouldn't he be putting a priority on Not getting hassled about Graal if he's more interested in new things? Honestly, he's behaving like he's afraid we'll stop needing him and hire someone else...
__________________
"Whatever," said Bean, "I was just glad to get out of the toilet."

"Power does not corrupt. Fear corrupts, perhaps the fear of a loss of power."- John Steinbeck
"I'm only acting retarded, what's your excuse?" queried the Gord.
- My pet, the Levelup Gnome

http://forums.graalonline.com/forums...&postcount=233
Reply With Quote
  #23  
Old 08-16-2008, 02:34 PM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Scripted RC is mainly disabled from being editable for security reasons but can be re-enabled on request. We could also make it so you can only overwrite it for local staff, not globals connecting to your server.

About keyboard controls: In the next version the options will be scripted, currently trying to match the look of the old options window but it can of course be changed. I'm not sure if displaying the full keyboard is really simplier than displaying the 11 default actions though.
Reply With Quote
  #24  
Old 08-16-2008, 02:52 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by Stefan View Post
About keyboard controls: In the next version the options will be scripted, currently trying to match the look of the old options window but it can of course be changed. I'm not sure if displaying the full keyboard is really simplier than displaying the 11 default actions though.
11 default actions isn't good either. Add the possibility to add more "actions" via script, maybe even with an icon. Or get rid of the icons completely, since they dont work with playerworlds like Era.
Reply With Quote
  #25  
Old 08-16-2008, 06:23 PM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Quote:
Originally Posted by Crow View Post
11 default actions isn't good either. Add the possibility to add more "actions" via script, maybe even with an icon. Or get rid of the icons completely, since they dont work with playerworlds like Era.
Making the icons customizable is a simple job assuming its scripted. I was thinking the new key setter would be a GuiTextListCtrl with 3 columns, one for name and icon, and two for the primary and secondary key.
__________________
Reply With Quote
  #26  
Old 08-17-2008, 05:30 PM
Tyhm Tyhm is offline
Psionic Youth
Tyhm's Avatar
Join Date: Mar 2001
Location: Babord, West Graal Deaths:1009 Kills:1
Posts: 5,635
Tyhm has a spectacular aura about
Well said, yes.
The next logical step for Graal is a game without ANY hard-wired defaults, only scripted starting points.
A game where you can delete the Baddy script and make an online puzzle game; or delete the movement script and make a 2d flight sim, whatever.
11 keys might be a good Starting point, and 11 icons would be a good way to do it, but ultimately it would have to be open-ended. Some server someday's gonna want 0 keyboard keys, because everything's gonna be a direct neural implant or whatever.
__________________
"Whatever," said Bean, "I was just glad to get out of the toilet."

"Power does not corrupt. Fear corrupts, perhaps the fear of a loss of power."- John Steinbeck
"I'm only acting retarded, what's your excuse?" queried the Gord.
- My pet, the Levelup Gnome

http://forums.graalonline.com/forums...&postcount=233
Reply With Quote
  #27  
Old 08-17-2008, 09:41 PM
Crono1508 Crono1508 is offline
*Shadow (Convoy)
Crono1508's Avatar
Join Date: Jun 2004
Location: United States
Posts: 488
Crono1508 will become famous soon enough
I tend to drawback on ANY server that uses 'W' as a key, such as Classic.
'W' is my up key instead of up arrow. I cannot play Classic because of the stupid whistle.
Same goes for N-Pulse with their new Ping: checker over players heads.

Other than that, everything else is pretty much Graal basic. Don't ask me why
'W' is up, I just decided to do it one day and I've been using it for many years now.
__________________

Reply With Quote
  #28  
Old 08-17-2008, 09:45 PM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Quote:
Originally Posted by Crono1508 View Post
Other than that, everything else is pretty much Graal basic. Don't ask me why
'W' is up, I just decided to do it one day and I've been using it for many years now.
I don't know, WASD is great for FPS but I can't see it useful for games like Graal, Maple Story, or Gunbound (the latter two being the only popular 2D games I know of).
__________________
Reply With Quote
  #29  
Old 08-17-2008, 09:50 PM
Crono1508 Crono1508 is offline
*Shadow (Convoy)
Crono1508's Avatar
Join Date: Jun 2004
Location: United States
Posts: 488
Crono1508 will become famous soon enough
When did I say I use WASD as my movement keys?!
I clearly just said 'W'!

__________________

Reply With Quote
  #30  
Old 08-17-2008, 09:58 PM
Loriel Loriel is offline
Somewhat rusty
Loriel's Avatar
Join Date: Mar 2001
Posts: 5,059
Loriel is a name known to allLoriel is a name known to allLoriel is a name known to allLoriel is a name known to all
Quote:
Originally Posted by Crono View Post
I don't know, WASD is great for FPS but I can't see it useful for games like Graal, Maple Story, or Gunbound (the latter two being the only popular 2D games I know of).
I have been using WASD for graal since a bunch of years ago. Sword on the spacebar, grabbing on shift and weapons on z or something.
Reply With Quote
  #31  
Old 08-17-2008, 10:28 PM
Inverness Inverness is offline
Incubator
Inverness's Avatar
Join Date: Aug 2004
Location: Houston, Texas
Posts: 3,613
Inverness is a jewel in the roughInverness is a jewel in the rough
Quote:
Originally Posted by Loriel View Post
I have been using WASD for graal since a bunch of years ago. Sword on the spacebar, grabbing on shift and weapons on z or something.
Weirdo.
__________________
Reply With Quote
  #32  
Old 08-18-2008, 04:26 PM
Tyhm Tyhm is offline
Psionic Youth
Tyhm's Avatar
Join Date: Mar 2001
Location: Babord, West Graal Deaths:1009 Kills:1
Posts: 5,635
Tyhm has a spectacular aura about
W Left Right Down?
You're trying to kill me.
__________________
"Whatever," said Bean, "I was just glad to get out of the toilet."

"Power does not corrupt. Fear corrupts, perhaps the fear of a loss of power."- John Steinbeck
"I'm only acting retarded, what's your excuse?" queried the Gord.
- My pet, the Levelup Gnome

http://forums.graalonline.com/forums...&postcount=233
Reply With Quote
  #33  
Old 08-18-2008, 09:17 PM
Crono1508 Crono1508 is offline
*Shadow (Convoy)
Crono1508's Avatar
Join Date: Jun 2004
Location: United States
Posts: 488
Crono1508 will become famous soon enough
Quote:
Originally Posted by Tyhm View Post
W Left Right Down?
You're trying to kill me.
No, I'm serious.
'W' - Middle Finger
'A' - Ring Finger
'S' 'D' - Pointer Finger

Then you use your right hand for the arrows like so.
__________________

Reply With Quote
  #34  
Old 08-18-2008, 09:30 PM
Tigairius Tigairius is offline
The Cat
Tigairius's Avatar
Join Date: Jan 2007
Location: Missouri, USA
Posts: 4,240
Tigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant future
Quote:
Originally Posted by Crono1508 View Post
No, I'm serious.
'W' - Middle Finger
'A' - Ring Finger
'S' 'D' - Pointer Finger

Then you use your right hand for the arrows like so.
If/When I use WASD I use my middle finger for both W and S, not my pointer for S.
__________________


“Shoot for the moon. Even if you miss, you'll land among the stars.”
Reply With Quote
  #35  
Old 08-18-2008, 10:09 PM
Crow Crow is offline
ǝɔɐɹq ʎןɹnɔ
Crow's Avatar
Join Date: Dec 2006
Location: Germany
Posts: 5,153
Crow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond reputeCrow has a reputation beyond repute
Quote:
Originally Posted by Tigairius View Post
If/When I use WASD I use my middle finger for both W and S, not my pointer for S.
He's not using WASD to navigate his player though...
Reply With Quote
  #36  
Old 08-18-2008, 10:21 PM
Tigairius Tigairius is offline
The Cat
Tigairius's Avatar
Join Date: Jan 2007
Location: Missouri, USA
Posts: 4,240
Tigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant future
Quote:
Originally Posted by Crow View Post
He's not using WASD to navigate his player though...
Oh, good point.
__________________


“Shoot for the moon. Even if you miss, you'll land among the stars.”
Reply With Quote
  #37  
Old 08-18-2008, 11:03 PM
Frankie Frankie is offline
xChugxLifex
Frankie's Avatar
Join Date: Feb 2008
Location: New York
Posts: 1,610
Frankie is a jewel in the roughFrankie is a jewel in the rough
Send a message via AIM to Frankie Send a message via MSN to Frankie
I have a friend that uses his thumb for S instead of his pointer for both S and W. It's really weird using your thumb like that.
__________________
*Sum41Freeeeek
*Frankie
Reply With Quote
  #38  
Old 08-18-2008, 11:40 PM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Read my post (3rd post in topic) about how having an image displayed like Rufus suggested would be much more helpful then just the 11 default actions.

The point of this isn't to make assigning the default actions easier, it's to make it so that each server doesn't have their own custom (and usually non modifiable) key assignments for non-standard controls (like Zodiac has fifty million buttons for the various menus).

Be nice if you could then also re-assign the F keys as well (maybe to ctrl or alt keys?)
__________________
Do it with a DON!
Reply With Quote
  #39  
Old 08-19-2008, 06:57 PM
Tyhm Tyhm is offline
Psionic Youth
Tyhm's Avatar
Join Date: Mar 2001
Location: Babord, West Graal Deaths:1009 Kills:1
Posts: 5,635
Tyhm has a spectacular aura about
Sure, but what if the player doesn't have a standard keyboard? It wouldn't help them any to have 101 keys displayed where We think they are; why not break it up and have it go "Up: ↑"?
__________________
"Whatever," said Bean, "I was just glad to get out of the toilet."

"Power does not corrupt. Fear corrupts, perhaps the fear of a loss of power."- John Steinbeck
"I'm only acting retarded, what's your excuse?" queried the Gord.
- My pet, the Levelup Gnome

http://forums.graalonline.com/forums...&postcount=233
Reply With Quote
  #40  
Old 08-19-2008, 07:04 PM
Crono Crono is offline
:pluffy:
Join Date: Feb 2002
Location: Sweden
Posts: 20,000
Crono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond reputeCrono has a reputation beyond repute
Quote:
Originally Posted by Frankie View Post
I have a friend that uses his thumb for S instead of his pointer for both S and W. It's really weird using your thumb like that.
I use my thumb for the down arrow on the normal arrow pad. I think I spar better without doing it but its just an old habit.
__________________
Reply With Quote
Reply

Tags
graal controls, keys


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 10:56 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.