mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user