BYOND Version: 412.977
Operating System: Windows XP Sp2
Web Browser: Internet Explorer 7
Game/Hub(s): Unknown/Not Applicable
Video Card (for graphics bugs): ATI Radeon 7000
Descriptive Problem Summary:When i use the below code, which ive used before i was thinking it should stop diagonal movement.
Numbered Steps to Reproduce Problem:use the code below to try and stop it
Code Snippet (if applicable) to Reproduce Problem:
mob
Move()
if(dir == SOUTHWEST)
return
if(dir == NORTHWEST)
return
if(dir == NORTHEAST)
return
if(dir == SOUTHEAST)
return
..()
Expected Results:it would stop diagonal movement, and instead of just putting return, ive tried putting return 0, and both of them error the same way.
Actual Results:I can move all four directions just fine, but once i try and go diagonal, i can move diagonal but only once.....but then after it moves diagonal that one time, all directions stop working, even the ones that were working at first.
Does the problem occur:
Every time? Or how often?Every Time
In other games?Unknown/Not Applicable
On other computers?Yes
In other user accounts?Yes
When does the problem NOT occur?Not Sure
Workarounds:Not sure...