Thread: Stuck.
View Single Post
  #2  
Old 03-18-2006, 10:18 AM
Chicken_l33t Chicken_l33t is offline
Banned
Join Date: Sep 2002
Location: NewZealand
Posts: 467
Chicken_l33t is on a distinguished road
//#CLIENTSIDE
function onPlayerenters(){
player.dir = dir (0 - up, 1 - left, 2 - down, 3 - right);
}

or for offline
//#CLIENTSIDE
if (playerenters){
playerdir = dir;
}

Replace "dir" with the number which is the direction you want e.g for up
playerdir = 0;
Reply With Quote