Auto Target
Moderators: Murderator+, Murderator
Auto Target
Нужен скрипт что когда в радиусе одного окна уо высвечиваетсья красный ник (пк) он сразу на него наводил таргет (magic arrow допустим) чтоб после ненадо было бегать и пытаться попасть самому таргетом по нему!
-
- Posts: 38
- Joined: 2004-05-26 16:39:57
- Location: www.myruo.ru
- Contact:
Re: Auto Target
а если два красных?Shakawkaw wrote:Нужен скрипт что когда в радиусе одного окна уо высвечиваетсья красный ник (пк) он сразу на него наводил таргет (magic arrow допустим) чтоб после ненадо было бегать и пытаться попасть самому таргетом по нему!

-
- Posts: 19
- Joined: 2007-03-27 21:57:51
[quote="uo-injection Project"][/quote]
Мне кажеться для етого есть спец. раздел, не так ли ?
Нормально всеравно не получиться. Если конешно не по клан-тегу юзать.
Мне кажеться для етого есть спец. раздел, не так ли ?
Нормально всеравно не получиться. Если конешно не по клан-тегу юзать.
Design, webdev, coding, c#, php, asp.net, xml, perl, sql, ajax, drawing, illustrating, restoration, photo, photoshop, schedule, pron, guitar, lead-guitar, js, jsp, java, dom, html, *nix, struts, cs, etc
новая идея ))))))) короче попробую написать тибе за бисплатна =) как отойду
----------------------------
йа сейчас пьян 24.06.2007
----------------------------
йа сейчас пьян 24.06.2007
Design, webdev, coding, c#, php, asp.net, xml, perl, sql, ajax, drawing, illustrating, restoration, photo, photoshop, schedule, pron, guitar, lead-guitar, js, jsp, java, dom, html, *nix, struts, cs, etc
-
- Posts: 34
- Joined: 2005-05-26 22:08:18
- Contact:
чето типа этого
Code: Select all
sub pk()
var i, a
dim target[2]
target[1] = 0x0190
target[2] = 0x0191
uo.ignore('self')
uo.set('finddistance','8')
for i=1 to 2
uo.findtype('0x0190',-1,'ground')
a=uo.findcount()
uo.findtype('0x0191',-1,'ground')
a=a+uo.findcount()
uo.findtype(target[i],-1,'ground')
uo.print('a = '+str(a))
if a==0 then
uo.ignorereset()
uo.ignore('self')
uo.findtype(target[i],-1,'ground')
endif
while uo.findcount()>0 #4
if uo.GetNotoriety('finditem') == 6 then
uo.cast('Magic Arrow','finditem')
uo.print('Autoattack na ' + uo.getname('finditem'))
UO.Ignore('finditem')
goto end
endif
UO.Ignore('finditem')
uo.findtype(target[i],-1,'ground')
wend
next
uo.ignorereset()
uo.ignore('self')
end:
end sub