<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; SA-MP: Проверить по координатам моё местоположение]]></title>
	<link rel="self" href="http://forum.script-coding.com/extern.php?action=feed&amp;tid=12258&amp;type=atom" />
	<updated>2017-02-15T18:57:15Z</updated>
	<generator>PunBB</generator>
	<id>http://forum.script-coding.com/viewtopic.php?id=12258</id>
		<entry>
			<title type="html"><![CDATA[Re: SA-MP: Проверить по координатам моё местоположение]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=112595#p112595" />
			<content type="html"><![CDATA[<p>Используй функции из SAMP.ahk<strong>.</strong><br />Считай координаты, и проверяй, находишься ли ты в радиусе нужных координат<strong>.</strong></p><div class="codebox"><pre><code>getPlayerMapPosX() {
    if(!checkHandles())
        return -1
    
    MapPosX := readFloat(hGTA, 0xBA67B8)
    if(ErrorLevel) {
        ErrorLevel := ERROR_READ_MEMORY
        return -1
    }
    
    ErrorLevel := ERROR_OK
    return MapPosX
}

getPlayerMapPosY() {
    if(!checkHandles())
        return -1
    
    MapPosY := readFloat(hGTA, 0xBA67BC)
    if(ErrorLevel) {
        ErrorLevel := ERROR_READ_MEMORY
        return -1
    }
    
    ErrorLevel := ERROR_OK
    return MapPosY
}
getPlayerMapZoom() {
    if(!checkHandles())
        return -1
    
    MapZoom := readFloat(hGTA, 0xBA67AC)
    if(ErrorLevel) {
        ErrorLevel := ERROR_READ_MEMORY
        return -1
    }
    
    ErrorLevel := ERROR_OK
    return MapZoom
}</code></pre></div>]]></content>
			<author>
				<name><![CDATA[sememix]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=33892</uri>
			</author>
			<updated>2017-02-15T18:57:15Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=112595#p112595</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[SA-MP: Проверить по координатам моё местоположение]]></title>
			<link rel="alternate" href="http://forum.script-coding.com/viewtopic.php?pid=110230#p110230" />
			<content type="html"><![CDATA[<p>Приветствую всех ,у меня вопрос . Как сделать проверку по координатам ,к примеру мы заезжаем на базу СВ и в чате выходит информация что вы попали в область армии Сухопутных Войск.</p>]]></content>
			<author>
				<name><![CDATA[Akio Mori]]></name>
				<uri>http://forum.script-coding.com/profile.php?id=34137</uri>
			</author>
			<updated>2016-12-26T06:22:35Z</updated>
			<id>http://forum.script-coding.com/viewtopic.php?pid=110230#p110230</id>
		</entry>
</feed>
