позойн Алебы
Moderators: Murderator+, Murderator
позойн Алебы
есть скрипт у кого нибудь На пойзон алебки чтоб он снимал алебу пойзонил её один раз и одевал обратно, буду благодарен
-
- Posts: 308
- Joined: 2005-07-17 15:30:52
- Location: www.drw.ru
я думаю ето будет чтото типа того
Code: Select all
sub poisonwep()
uo.unequip('Lhand')
wait(10)
repeat
uo.waittargettype('типа алебы')
uo.usetype('тип бутылки пойзона')
wait(1000) ; вейт под себя сделай
until uo.injournal('сообщение что оружие отравлено') ; не помню че там пишут
uo.usetype('тип алебы')
end sub
-
- Junior Expert
- Posts: 3221
- Joined: 2004-06-24 22:08:56
Ясный пень не пахит - там DeleteJournal нужен )
Code: Select all
sub WeaponPoison()
var fail = "Не удалось отравить оружие"
var succ = "Оружие успешно отравлено"
var p_type = "0x0000" ; тип бутылки яда
var p_colr = "0x0000" ; цвет бутылки яда
var last_weapon = uo.objAtLayer( 'Lhand' ) ; или Rhand, вспомнить бы где он алебу держит :)
uo.MoveItem( last_weapon )
repeat
deljournal( fail + "|" + succ )
uo.FindType( p_type, p_colr )
If NOT uo.FindCount() Then
uo.Print( "Нет бутылок с ядом" )
return
End If
uo.WaitTargetObject( last_weapon, "finditem" )
uo.UseSkill( "Poison" )
repeat
wait( 50 )
until uo.InJournal( fail + "|" + succ )
until uo.InJournal( succ )
uo.UseObject( last_weapon )
End Sub
Last edited by Destruction on 2007-05-01 21:25:35, edited 1 time in total.
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
Script [fixed].
Try again.
Try again.
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
sub poison()
uo.print("Покажи Пуху")
UO.exec('addobject nyxa')
while uo.targeting()
wait(500)
wend
UO.FindType('0x0F0E','0x0998','backpack')
if uo.findcount() then
uo.deletejournal()
uo.waittargetobject('nyxa','finditem')
uo.useskill('Poisoning')
repeat
wait(50)
until UO.InJournal("You fail to apply") OR UO.InJournal("You apply the poison")
endif
end sub
-
- Junior Expert
- Posts: 3221
- Joined: 2004-06-24 22:08:56
xarek 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