Hey guys, is there any way how to recognize GM? I know on every shard it could be different, but im thinking about recognizing the specific type of robe that GMs use only....
another question.... how can i put into yoko script something like if any PLAYER (shouldnt be NPC, but if no other way) SAY something... i dont mean anything like... YOU SEE: *SKELLETON ATTACKNG YOU*.... but just a real chatting....
thanks
How to recognize GM?
Moderators: Murderator+, Murderator
Re: How to recognize GM?
Well, in my scripts i use a construction like this:
Maybe later some thoughts about second question will appear . It shouldn't be difficoult, just needs some time.
Code: Select all
if uo.injournal('GM') then
uo.exec(',terminate all')
end if
Maybe later some thoughts about second question will appear . It shouldn't be difficoult, just needs some time.
Все мы славные ребята, простые русские парни, железные люди с деревянными головами...
Re: How to recognize GM?
GMX wrote:Well, in my scripts i use a construction like this:
От 30 градусного мороза отключился языковой фильтр в голове. Так что буду писать по russian

Такой штуки часто бывает мало.
Сиры, консультанты, владельцы шарда не подписываются приставкой GM.
В сфере существует специальная команда для "не показывания" титула.
ГМы имеют привычку интересоваться состоянием игрока из инвиза - так что и поиск по типу может не принести ощутимого облегчения.
ИМХО в процедуру нужно добавлять следующие проверки:
1) поиск по типу (у стафа БЫВАЕТ не человеческий тип тела)
2) поиск по нику (проверка всех существующих приписок к никам и известные ники стафа)
3) проверка журнала на ЦВЕТ и ID сообщения (тут сложнее но возможно - Бог сказал небесно голубым цветом "ПРИВЕТ!")
PS
4) Вообще не пользоваться автономными ботами на шардах, где следят за ботами. 99,99% что попалят не одним так другим. А пару раз попалят и бан обеспечен.
Re: How to recognize GM?
Mirage wrote:GMX wrote:Well, in my scripts i use a construction like this:
От 30 градусного мороза отключился языковой фильтр в голове. Так что буду писать по russian![]()
Такой штуки часто бывает мало.
Сиры, консультанты, владельцы шарда не подписываются приставкой GM.
В сфере существует специальная команда для "не показывания" титула.
ГМы имеют привычку интересоваться состоянием игрока из инвиза - так что и поиск по типу может не принести ощутимого облегчения.
ИМХО в процедуру нужно добавлять следующие проверки:
1) поиск по типу (у стафа БЫВАЕТ не человеческий тип тела)
2) поиск по нику (проверка всех существующих приписок к никам и известные ники стафа)
3) проверка журнала на ЦВЕТ и ID сообщения (тут сложнее но возможно - Бог сказал небесно голубым цветом "ПРИВЕТ!")
PS
4) Вообще не пользоваться автономными ботами на шардах, где следят за ботами. 99,99% что попалят не одним так другим. А пару раз попалят и бан обеспечен.
english?
Re: How to recognize GM?
It was more addressed to GMX.
Sira, consultants, owners of the shard is not signed by the prefix GM.
In the Sphere there is a special command for "no showing of" title.
Aperture step have a habit of interested state players from inviza - so that type search may not bring tangible relief.
IMHO the procedure to add the following checks:
1) Search by type (in Staf GET not a human body type)
2) Search by nick (check all existing postscripts to the nicks and well-known nicknames Staf)
3) checking the log on the color and message ID (here more difficult but possible - God said to sky blue, "Hi!")
PS
4) generally does not use autonomous bots on shards where watching the boats. 99,99% that does not consume one another well. A couple of times and the burn ban is assured.
I apologize for poor English.
Sira, consultants, owners of the shard is not signed by the prefix GM.
In the Sphere there is a special command for "no showing of" title.
Aperture step have a habit of interested state players from inviza - so that type search may not bring tangible relief.
IMHO the procedure to add the following checks:
1) Search by type (in Staf GET not a human body type)
2) Search by nick (check all existing postscripts to the nicks and well-known nicknames Staf)
3) checking the log on the color and message ID (here more difficult but possible - God said to sky blue, "Hi!")
PS
4) generally does not use autonomous bots on shards where watching the boats. 99,99% that does not consume one another well. A couple of times and the burn ban is assured.
I apologize for poor English.

Re: How to recognize GM?
OK Good, so now it brings me to two ideas:
1, In yoko, can i do something like if I see some player (You see: Player1, You see: Player_Tom, atd), can i automaticaly find out his robe ObjectType? As in my shard only GMs have the robe with a cap (similar to the robe as u are ghost - but ill find ObjectType myself)... so can it find players robe and compare to samething and then do uo.playwav() or something?
2, If i grab some NPC, drag him into the forrest where NO other players will come... then i let heal myself... if GM will come he will say something like "hi" or whatever... so can i determine players chat? (Nickname: blabla)? i tried to do if injournal(":") but then there are things like (You see: rat, You see: *Skeleton is attacking you*)....
1, In yoko, can i do something like if I see some player (You see: Player1, You see: Player_Tom, atd), can i automaticaly find out his robe ObjectType? As in my shard only GMs have the robe with a cap (similar to the robe as u are ghost - but ill find ObjectType myself)... so can it find players robe and compare to samething and then do uo.playwav() or something?
2, If i grab some NPC, drag him into the forrest where NO other players will come... then i let heal myself... if GM will come he will say something like "hi" or whatever... so can i determine players chat? (Nickname: blabla)? i tried to do if injournal(":") but then there are things like (You see: rat, You see: *Skeleton is attacking you*)....