14.03.2018, 09:06
i can't thing of any way to do it, i'd like some help or the code itself, i really need it
IsPointInArea(Float:X, Float:Y, Float:MinX, Float:MinY, Float:MaxX, Float:MaxY)
{
if(X > MinX && X < MaxX && Y > MinY && Y < MaxY)
{
return true;
}
return false;
}