View Single Post
  #8  
Old 08-08-2001, 02:16 PM
Guest
Posts: n/a
Quote:
Originally posted by Luigi223
i tryed making a stairs u auto walk up ... it has stuff like


playerx=43;
playery=32;
sleep0.5;
playery=32.5;


and so forth


but when i got it uploaded it only works for the first person in the level and it messes up .... whould timereverywhere work with that ?
For the auto walking up the stairs i will try something like

NPC Code:

if (playertouchsme) {
set moveplayer;
timeout=.05;
}
if (timeout&&moveplayer) {
if (!playery>=30) {
playery-=.5;
setani walk,;
}else {
unset moveplayer;
}
timeout=.05;
}

Reply With Quote