View Single Post
  #2  
Old 08-01-2001, 02:37 AM
Shard_IceFire Shard_IceFire is offline
Registered User
Shard_IceFire's Avatar
Join Date: Jun 2001
Location: Eastern Harkoonia
Posts: 861
Shard_IceFire is on a distinguished road
well if it's for an NPC, i THINK (key word=think) it would be like this:
NPC Code:

if (onwall(x,y-1.5)) {
y++;
}
if (onwall(x,y+1.5)) {
y--;
}
if (onwall(x+.5,y)) {
x--;
}
if (onwall(x-.5,y)) {
x++;
}

__________________

-=Shard IceFire=-
Reply With Quote