Portal SAMP
[Ajuda] Obter o centro de GangZoneCreate() - Versão de Impressão

+- Portal SAMP (https://portalsamp.com)
+-- Fórum: SA-MP (https://portalsamp.com/forumdisplay.php?fid=5)
+--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=6)
+--- Tópico: [Ajuda] Obter o centro de GangZoneCreate() (/showthread.php?tid=4114)



Obter o centro de GangZoneCreate() - JR_Junior - 22/10/2023

Olá! Alguém poderia me ajudar a obter as coordenadas exatas do centro de uma Gang Zone de forma automática?

Código PHP:
new Float:minx 1248.011;
new 
Float:miny 2072.804;
new 
Float:maxx 1439.348;
new 
Float:maxy 2204.319;

new 
gangzone GangZoneCreate(minxminymaxxmaxy);

new 
Float:centerx = ?
new 
Float:centery = ? 



RE: Obter o centro de GangZoneCreate() - Dr Editor - 23/10/2023

Código PHP:
centerx = ((minx maxx) / 2);
centery = ((miny maxy) / 2); 



RE: Obter o centro de GangZoneCreate() - JR_Junior - 23/10/2023

(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);