Thread: Vecx and Vecy
View Single Post
  #8  
Old 09-06-2002, 08:14 AM
Knuckles Knuckles is offline
Registered User
Join Date: Sep 2002
Location: New York
Posts: 580
Knuckles is on a distinguished road
Send a message via AIM to Knuckles
No, but MOST SCRIPTERS when there new.. they use it for movement...

NPC Code:

if (playerenters || timeout) {
moveplayer();
timeout=0.05;
}
function moveplayer() {
for (i=0;i<4;i++) {
if (keydown(i)) {
playerdir=i;
playerx=playerx+vecx(i);
playery=playery+vecy(i);
}
}

__________________
Knuckles
"They say 60% of the time, it works everytime!"
Reply With Quote