12 lines
139 B
Plaintext
12 lines
139 B
Plaintext
|
if keyboard_check(vk_shift)
|
||
|
{
|
||
|
x += 2
|
||
|
if x > 1000
|
||
|
x = xprevious
|
||
|
exit;
|
||
|
}
|
||
|
x += 5
|
||
|
if x > 1000
|
||
|
x = xprevious
|
||
|
|