Yoko

All sides of Injection
It is currently 2025-11-14 05:42:51

All times are UTC+02:00




Post new topic  Reply to topic  [ 19 posts ] 
Author Message
 Post subject: позойн Алебы
PostPosted: 2007-04-20 16:49:37 
Offline

Joined: 2006-03-08 20:53:28
Posts: 115
есть скрипт у кого нибудь На пойзон алебки чтоб он снимал алебу пойзонил её один раз и одевал обратно, буду благодарен


Top
   
 Post subject:
PostPosted: 2007-04-26 10:05:05 
Offline

Joined: 2006-03-08 20:53:28
Posts: 115
не ужели ни у кого нету такого скрипта:(


Top
   
 Post subject:
PostPosted: 2007-04-26 11:36:48 
Offline
User avatar

Joined: 2005-07-17 15:30:52
Posts: 308
Location: www.drw.ru
uo.poison()

http://yoko.netroof.net/help/


Top
   
 Post subject:
PostPosted: 2007-04-29 20:11:53 
Offline

Joined: 2007-04-26 23:35:15
Posts: 220
я думаю ето будет чтото типа того

Code:
sub poisonwep()
uo.unequip('Lhand')
wait(10)
repeat
uo.waittargettype('типа алебы')
uo.usetype('тип бутылки пойзона')
wait(1000) ; вейт под себя сделай
until uo.injournal('сообщение что оружие отравлено') ; не помню че там пишут
uo.usetype('тип алебы')
end sub


Top
   
 Post subject:
PostPosted: 2007-04-29 20:19:46 
Offline

Joined: 2006-03-08 20:53:28
Posts: 115
и что?) подскожи Хотяб малек)


Top
   
 Post subject:
PostPosted: 2007-04-29 20:20:06 
Offline

Joined: 2006-03-08 20:53:28
Posts: 115
пасиб) ща будем тестить)


Top
   
 Post subject:
PostPosted: 2007-04-30 11:12:01 
Offline

Joined: 2006-03-08 20:53:28
Posts: 115
че то не работает:(


Top
   
 Post subject:
PostPosted: 2007-04-30 14:17:28 
Offline
Junior Expert
User avatar

Joined: 2004-06-24 22:08:56
Posts: 3220
Ясный пень не пахит - там DeleteJournal нужен )

Code:
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

_________________
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.
Skype: d119060


Last edited by Destruction on 2007-05-01 21:25:35, edited 1 time in total.

Top
   
 Post subject:
PostPosted: 2007-04-30 19:03:17 
Offline

Joined: 2007-04-26 23:35:15
Posts: 220
ой да, канешн. забыл:)


Top
   
 Post subject:
PostPosted: 2007-05-01 21:13:04 
Offline

Joined: 2006-03-08 20:53:28
Posts: 115
Он не пойзонит почемуто:(


Top
   
 Post subject:
PostPosted: 2007-05-01 21:15:26 
Offline

Joined: 2006-03-08 20:53:28
Posts: 115
а я понял почему не пойзонит, он пьет бутылки, а мне надо чтоб он юзал скил пойзон потом появляется прицел он кидал его на меч, а потом на бутылки и после пойзона одевал обратно, можете акое сделать?


Top
   
 Post subject:
PostPosted: 2007-05-01 21:30:48 
Offline
Junior Expert
User avatar

Joined: 2004-06-24 22:08:56
Posts: 3220
Script [fixed].

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.
Skype: d119060


Top
   
 Post subject:
PostPosted: 2007-05-01 21:39:27 
Offline

Joined: 2006-03-08 20:53:28
Posts: 115
а по русски:)


Top
   
 Post subject:
PostPosted: 2007-05-02 23:04:32 
Offline
User avatar

Joined: 2006-09-15 18:16:29
Posts: 35
Code:
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


Top
   
 Post subject:
PostPosted: 2007-05-02 23:19:22 
Offline
Junior Expert
User avatar

Joined: 2004-06-24 22:08:56
Posts: 3220
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.
Skype: d119060


Top
   
 Post subject:
PostPosted: 2007-05-04 19:57:57 
Offline

Joined: 2006-03-08 20:53:28
Posts: 115
ааа) ясно) блин чет я сразу не Догодался:)


Top
   
 Post subject:
PostPosted: 2007-05-04 20:06:36 
Offline

Joined: 2006-03-08 20:53:28
Posts: 115
Извените а можно бурать сняите пухи? я просто думал только то что её в паке тока можно пойзонить


Top
   
 Post subject:
PostPosted: 2007-05-05 06:02:30 
Offline
User avatar

Joined: 2006-09-15 18:16:29
Posts: 35
xarek wrote:
Извените а можно бурать сняите пухи? я просто думал только то что её в паке тока можно пойзонить

Ее хоть где можно пойзонить.


Top
   
 Post subject:
PostPosted: 2007-05-05 09:00:24 
Offline

Joined: 2006-03-08 20:53:28
Posts: 115
теперь я Знаю:) можете у брать от туда чтоб он не снимал егО:)


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic  [ 19 posts ] 

All times are UTC+02:00


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Limited