add verbs to allow players to spin their view

This commit is contained in:
GinjaNinja32
2015-12-05 10:42:00 +00:00
parent eb06bc74af
commit 7ce8f42e11
2 changed files with 16 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
/client/New()
..()
dir = NORTH
/client/verb/spinleft()
set name = "Spin View CCW"
set category = "OOC"
dir = turn(dir, 90)
/client/verb/spinright()
set name = "Spin View CW"
set category = "OOC"
dir = turn(dir, -90)