Spoiler
if you no longer have the toilet paper i'm assuming you already stuck it in the sink... have you turned the sink on?
Spoiler
[close]
[close]
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menufunction FaceDirection(int ch, int d) {
if (d == F_UP){ //line number 21
FaceLocation(ch, character[ch].x, character[ch].y-10);
}
else if (d == F_LEFT){
FaceLocation(ch, character[ch].x - 10, character[ch].y);
}
else if (d == F_DOWN){
FaceLocation(ch, character[ch].x, character[ch].y+10);
}
else if (d == F_RIGHT){
FaceLocation(ch, character[ch].x + 10, character[ch].y);
}
}
if (GetCursorMode()==0){
MoveCharacter(0, mouse.x, mouse.y);
}
else {
ProcessClick(mouse.x, mouse.y, GetCursorMode());
}
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.053 seconds with 14 queries.