New ANTI-AFK SYSTEM :(
Moderators: Murderator+, Murderator
New ANTI-AFK SYSTEM :(
Im playing at a Brazilian shard, they are testing new modes of anti-afk system...
One of this modes are uses EFFECT ANIMATIONS....
Like Flame Strike animation, Fizzles, Heal effect, Bless effect etc on the char, then you need to type which effect was playing on you char...
Is There any possible to check which animation OR SOUND was playied on my char using injection?
One of this modes are uses EFFECT ANIMATIONS....
Like Flame Strike animation, Fizzles, Heal effect, Bless effect etc on the char, then you need to type which effect was playing on you char...
Is There any possible to check which animation OR SOUND was playied on my char using injection?
-
- Junior Expert
- Posts: 3221
- Joined: 2004-06-24 22:08:56
,set animecho 1
,set soundecho 1
,showjournal
its easy.
,set soundecho 1
,showjournal
its easy.
YokoInjection CodeSweeper
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
-
- Junior Expert
- Posts: 3221
- Joined: 2004-06-24 22:08:56
Code: Select all
; wait for anti-afk question.. is it gump, right?
repeat
wait( 100 )
until uo.lastgump('replyed') == 0 && uo.lastgump('serial') = 'xxxx'
; detect the correct word
var word = ""
for i = 0 to 5
if uo.journal(i) == "[sound 123]" then
word = "Sound 123 played."
endif
; etc for all effects
next
if word == "" then
; alarm! not detected.
return
endif
; send reply
uo.lclick(...)
uo.sayu( word )
uo.lclick(...)
YokoInjection CodeSweeper
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
thank you again
but the anti-afk system puts 2 characters next to me
So 3 effects(it got different sounds) are playied, in a random char, on me, or on an chicken, or an a rat....
Then a gump ask which was the first effect, and who it was playied...
same for second and third effect...
I think i can make the script... the problem is to recognize the serial of the anims or sounds (where it was playied)

but the anti-afk system puts 2 characters next to me
So 3 effects(it got different sounds) are playied, in a random char, on me, or on an chicken, or an a rat....
Then a gump ask which was the first effect, and who it was playied...
same for second and third effect...
I think i can make the script... the problem is to recognize the serial of the anims or sounds (where it was playied)
Actually works like that:
http://www.4shared.com/file/182685188/9 ... pture.html
with only one animation, then you need to answer the right animation and whcih char was playied
ps1: the good is that the animations cause sounds, each one different of other)
PS2: Options on Gump are always on same position....
ps3: the chicken and the rat are always on same postion..
so its easy to script this anti-antiafk, the problem is to check which char playied the sound..
http://www.4shared.com/file/182685188/9 ... pture.html
with only one animation, then you need to answer the right animation and whcih char was playied
ps1: the good is that the animations cause sounds, each one different of other)
PS2: Options on Gump are always on same position....
ps3: the chicken and the rat are always on same postion..
so its easy to script this anti-antiafk, the problem is to check which char playied the sound..
-
- Junior Expert
- Posts: 3221
- Joined: 2004-06-24 22:08:56
uo.journalserial ?..
А ФС можно найти по тайпу ?.. Что-то я уже не помню..
А ФС можно найти по тайпу ?.. Что-то я уже не помню..
YokoInjection CodeSweeper
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
@Destrucion
serials for [Snd ] messages are x01010101, but thinking logical, for the client knows the itensity of the sound (as much longer the object is, the sound volume is lower) it must know which object it is..
Or is the server that send the volume of sound effect?
so its the end of macros?
but not talking about injection:
When the server send an packet of sound to the client, dont come any extra packet telling which object/npc the sound playied?
So there is an option to complie a yoko dll that shows at journal the serial of [Snd xxx] messages?
Am i right?
так что в конце макросов?
но не говорите об инъекции:
Когда сервер посылает пакет звука к клиенту, не приходят каких-либо дополнительных пакетов говорить, какой объект / ВСНП звук playied?
Поэтому есть возможность Скомпилируйте Йоко DLL, который показывает на журнал сериал [SND XXX] сообщений?
Я прав?
serials for [Snd ] messages are x01010101, but thinking logical, for the client knows the itensity of the sound (as much longer the object is, the sound volume is lower) it must know which object it is..
Or is the server that send the volume of sound effect?
so its the end of macros?
but not talking about injection:
When the server send an packet of sound to the client, dont come any extra packet telling which object/npc the sound playied?
So there is an option to complie a yoko dll that shows at journal the serial of [Snd xxx] messages?
Am i right?
так что в конце макросов?
но не говорите об инъекции:
Когда сервер посылает пакет звука к клиенту, не приходят каких-либо дополнительных пакетов говорить, какой объект / ВСНП звук playied?
Поэтому есть возможность Скомпилируйте Йоко DLL, который показывает на журнал сериал [SND XXX] сообщений?
Я прав?
-
- Junior Expert
- Posts: 3221
- Joined: 2004-06-24 22:08:56
I agree with Grin.
YokoInjection CodeSweeper
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
Code: Select all
if uo.lastgump('replyed') == 0 then
play sound
endif
Уроки языка Injection
Основные команды языка Injection
Yoko Injection Code Sweeper
Drw (2009) скрипты
2017 Начал играть на Uorpg.net
Основные команды языка Injection
Yoko Injection Code Sweeper
Drw (2009) скрипты
2017 Начал играть на Uorpg.net
-
- Junior Expert
- Posts: 3221
- Joined: 2004-06-24 22:08:56
Grin wrote:Что то ты не в тему...
Он в тему но не совсем и малясь хреново.
Типа полу-автоматическая анти-защита)
YokoInjection CodeSweeper
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom
Function not found?
Possession of mathematics at the level of art - a gift that is only available for election.
Sorry for my clumsy English.
Telegram: @tatikom