23/10/2023 17:50
(23/10/2023 08:46)Dr Editor Escreveu:Código PHP:centerx = ((minx + maxx) / 2);
centery = ((miny + maxy) / 2);
Funcionou perfeitamente! Obrigado!
Código PHP:
stock GetZoneCenterPos(Float:minx,Float:miny,Float:maxx,Float:maxy,&Float:centerx,&Float:centery)
{
centerx = ((minx + maxx) / 2);
centery = ((miny + maxy) / 2);
}