Is it fixable?
Forum
CS2D General Button GhostingButton Ghosting
10 replies 1
Is it fixable?
1
2
3
4
5
6
2
3
4
5
6
if KeyDown(KEY_LEFT) then 	' move left elseif KeyDown(KEY_RIGHT) then 	' move right 	' if KEY_LEFT is already hold, this is not going to be executed endif
I see no point of fixing this tho. You're not supposed to hold both keys (LEFT and RIGHT), so what's the problem.
Admin/mod comment
§2.1 - No needless and/or doubled posts (spam)If you don't like as it is now, use "Relative to the direction" movement in settings. It's not an important part of the gameplay, do not complain.
Back the fuck up, son. DC isn't the only one who can answer your questions. The posts of the other users (except RisingXD) are in no way useless. People are trying to help and you're insulting them. GG.
1
2
3
4
5
2
3
4
5
if KeyDown(keyLeft) and !KeyDown(keyRight) then 	moveleft() elseif KeyDown(keyRight) and !KeyDown(keyLeft) then 	moveright() endif
will it be fixed? eventually, probably.
when will it be fixed? heh heh..
@Flacko
You're my hero. Could this be used as server lua?
1