ID:145432
 
client
North()
return 1
East()
return 1
South()
return 1
West()
return 1


I've used this code in my other games but when I use it in this game, it goes in the diagonal directions instead of going horizontal and vertical.

there was a problem with your indention.

To disable diagonal movements you would use
client
Northeast()
return 0
Northwest()
return 0
Southeast()
return 0
Southwest()
return 0


to disable regular horizontal and vertical movements you would use

client
North()
return 0
South()
return 0
East()
return 0
West()
return 0
In response to Nintendo
Ok, thanks. I'll edit if theres a problem :D

Strangely, it worked but with the opposite directions.
client
Northeast()
return 1
Northwest()
return 1
Southeast()
return 1
Southwest()
return 1