oh i see what you mean..
(lol me and coty just made certain objects solid)
so same idea as what i used to do, only with invisible solid objects?
that's part of the coding to make the character move, you ARE using solid objects invisible, correct?
(lol me and coty just made certain objects solid)
so same idea as what i used to do, only with invisible solid objects?
Code:
{
//this is the script to let you move right
if (place_free(self.x+5,self.y))
{self.x = self.x+5};
else { if (place_free(self.x+4,self.y))
{self.x = self.x+4};
else { if (place_free(self.x+3,self.y))
{self.x = self.x+3};
else { if (place_free(self.x+2,self.y))
{self.x = self.x+2};
else { if (place_free(self.x+1,self.y))
{self.x = self.x+1};
}}}}
}
that's part of the coding to make the character move, you ARE using solid objects invisible, correct?