You can now move diagonally! To do so, use the numpad. The keybaord has been remapped to make this possible:

CTRL + A = throw
CTRL + S = swap hands
CTRL + D = drop
CTRL + W = use item in hand on itself
Numpad divide (/) = throw
Numpad multiply (*) = swap hands
Numpad subtract (-) = drop
Numpad add (+) = use item in hand on itself

Changelog updated with this information.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2387 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
baloh.matevz@gmail.com
2011-10-18 01:42:15 +00:00
parent 9cd38e0aa3
commit aab8b4c5b7
3 changed files with 70 additions and 3 deletions

View File

@@ -24,23 +24,39 @@
..()
/client/Northeast()
..()
/client/Southeast()
..()
/client/Southwest()
..()
/client/Northwest()
..()
/client/verb/swap_hand()
set hidden = 1
if(istype(mob, /mob/living/carbon))
mob:swap_hand()
return
/client/Southeast()
/client/verb/attack_self()
set hidden = 1
var/obj/item/weapon/W = mob.equipped()
if (W)
W.attack_self(mob)
return
/client/Southwest()
/client/verb/toggle_throw_mode()
set hidden = 1
if(!istype(mob, /mob/living/carbon)) return
if((mob.stat || mob.restrained()) || !(isturf(mob.loc))) return
mob:toggle_throw_mode()
return
/client/Northwest()
/client/verb/drop_item()
set hidden = 1
if(!isrobot(mob))
mob.drop_item_v()
return