Yoko

All sides of Injection
It is currently 2025-10-22 11:05:13

All times are UTC+02:00




Post new topic  Reply to topic  [ 15 posts ] 
Author Message
PostPosted: 2006-07-28 03:48:30 
Offline
User avatar

Joined: 2006-07-28 00:21:50
Posts: 76
zdrastvujte , pomogite razabratsa - nado scp , ja dopustem begu , ubilji 4ela , otkrisja trup , i ja ovtomati4eski vsjo lutaju ne4o nenazimaja , i tak kazdova 4eloveka ubivaja , NE4O NENAZIMAJA , i vtoroje , ja staju , na menaj idut boti , ja ix ubivaju , otkrivaetsa trup , i scp vsjo lutaet i neotklju4aetsa , i tak on lutaet bez menja vse trupi , vot takije 2 prozjbi , zaranije SPOSIBO !!!!! HELP PLIZ :?


Top
   
 Post subject:
PostPosted: 2006-07-28 06:56:53 
Offline
Expert!
User avatar

Joined: 2005-09-14 15:31:58
Posts: 2152
Location: Latvia
все просто, только некогда... на работу надо идти...

_________________
Уроки языка Injection
Основные команды языка Injection
Yoko Injection Code Sweeper
Drw (2009) скрипты
2017 Начал играть на Uorpg.net


Top
   
 Post subject:
PostPosted: 2006-07-28 10:00:16 
Offline
User avatar

Joined: 2006-03-08 11:59:41
Posts: 122
1) Скрипт простой!
2) такая тема уже недавно была!
3)Не помогц по 1 простой причине! МЕНЯ БЕСЯТ ЛЮДИ С КРИВЫМИ ПАЛЬЦАМИ Н ЕУМЕЮЩИМИ ПЕРЕКЛЮЧАТЬ ЯЗИК!!!!!!!!

_________________
СМЕРТЬ ФЛУДЕРАМ!


Top
   
 Post subject:
PostPosted: 2006-07-28 11:58:35 
Offline

Joined: 2005-04-19 18:00:29
Posts: 2259
Location: Московская область
Хм,- ты не думал что парень может жить за границей, и писать из клуба где нету русской клавиатуры?

2автору

В обычном скрипте на лут, которых много (штук 5 в соседней теме точно) -добавь 2 строки(зацикли его)

Code:
while not uo.Dead()
...
wend


Либо скрипт-который по типу ищет вокруг трупы, -если найдены тогда лут из того трупа который найден + когда долутает-игнор. Но возможны сбои, поэтому используй обычную луталку.


Top
   
 Post subject:
PostPosted: 2006-07-28 13:44:00 
Offline
User avatar

Joined: 2006-07-28 00:21:50
Posts: 76
a ti nemogbi vilozitj evo celikom , a na6ot latinici , ja vase v Latvii zivu , gde odni latiwi ganci , ja kirilicei pisatj pol goda , a latinicei paru sec


Top
   
 Post subject:
PostPosted: 2006-07-28 17:28:11 
Offline

Joined: 2005-04-19 18:00:29
Posts: 2259
Location: Московская область
Вот написал - не тестил. Настраивай и пробуй.

Code:
sub Loot()
var i , tryp
  DIM corpse[2] 
   
  corpse=[0]=' type '
  corpse=[1]=' type '

  uo.Set('finddistance','7')
  while not uo.Dead()
    for i = 0 to 1
      uo.FindType(corpse[i],'-1','ground')
      if uo.FindCount() then
        tryp = uo.GetSerial('finditem')
        uo.UseObject('tryp')
        uo.FindType('-1','-1','tryp')
        while uo.FindCount()
          uo.moveitem('finditem','all','backpack')
          wait(750)
          uo.FindType('-1','-1','tryp')   
        wend
        uo.Ignore('tryp')
      end if       
      wait(100)
    next
  wend
  uo.IgnoreReset()
end sub


Top
   
 Post subject:
PostPosted: 2006-07-28 18:10:56 
Offline
Expert!
User avatar

Joined: 2004-07-04 00:14:58
Posts: 1284
You Must Die wrote:
Вот написал - не тестил. Настраивай и пробуй.

Code:
  DIM corpse[2]  
   
  corpse=[0]=' type '
  corpse=[1]=' type '

  uo.Set('finddistance','7')
  while not uo.Dead()
    for i = 0 to 1
      uo.FindType(corpse[i],'-1','ground')
      if uo.FindCount() then
        tryp = uo.GetSerial('finditem')
        uo.UseObject('tryp')
        uo.FindType('-1','-1','tryp')
        while uo.FindCount()
          uo.moveitem('finditem','all','backpack')
          wait(750)
          uo.FindType('-1','-1','tryp')   
        wend
        uo.Ignore('tryp')
      end if       
      wait(100)
    next
  wend
  uo.IgnoreReset()
end sub

1. тип трупов помоему 1 0х0002
2. пользовать трупы за 7 тайлов от себя - хоррроший шард.
3. трупу надо дать время открыться.
4. посик по '-1','-1' не находит многие типы, на ДРВ в частности.
5. после uo.Ignore('tryp') - надо ещё раз посикать... а то будешь всё тот же труп лутать, пока он не пропадёт.

Вывод:
не надо говном разбрасываться.


Top
   
 Post subject:
PostPosted: 2006-07-28 20:17:52 
Offline

Joined: 2005-04-19 18:00:29
Posts: 2259
Location: Московская область
Sfagnum wrote:
You Must Die wrote:
Вот написал - не тестил. Настраивай и пробуй.

Code:
  DIM corpse[2]  
   
  corpse=[0]=' type '
  corpse=[1]=' type '

  uo.Set('finddistance','7')
  while not uo.Dead()
    for i = 0 to 1
      uo.FindType(corpse[i],'-1','ground')
      if uo.FindCount() then
        tryp = uo.GetSerial('finditem')
        uo.UseObject('tryp')
        uo.FindType('-1','-1','tryp')
        while uo.FindCount()
          uo.moveitem('finditem','all','backpack')
          wait(750)
          uo.FindType('-1','-1','tryp')   
        wend
        uo.Ignore('tryp')
      end if       
      wait(100)
    next
  wend
  uo.IgnoreReset()
end sub

1. тип трупов помоему 1 0х0002
2. пользовать трупы за 7 тайлов от себя - хоррроший шард.
3. трупу надо дать время открыться.
4. посик по '-1','-1' не находит многие типы, на ДРВ в частности.
5. после uo.Ignore('tryp') - надо ещё раз посикать... а то будешь всё тот же труп лутать, пока он не пропадёт.

Вывод:
не надо говном разбрасываться.


Ты только здить умеешь, или сам напишешь?


Top
   
 Post subject:
PostPosted: 2006-07-28 20:22:20 
Offline
Expert!
User avatar

Joined: 2004-07-04 00:14:58
Posts: 1284
You Must Die wrote:
Ты только здить умеешь, или сам напишешь?
:lol:


Top
   
 Post subject:
PostPosted: 2006-07-28 20:53:51 
Offline
Junior Expert
User avatar

Joined: 2004-06-24 22:08:56
Posts: 3220
Sfagnum wrote:
You Must Die wrote:
Ты только здить умеешь, или сам напишешь?
:lol:

Картина Репина: Ленивец и Балабол.

PS: -1 не все типы находит - а как же тада там искать? Инжект кривой нах, править надо.


Top
   
 Post subject:
PostPosted: 2006-07-28 23:07:34 
Offline
User avatar

Joined: 2006-07-28 00:21:50
Posts: 76
ja v SCP polnuj bik i topor , POZALUJSTO , budu blagodaren , esli vi men vilozite scp Polnostju proverenij , ato tut odin 4elovek staraetsa , a drugoi piwet celije stobiki osivok , ja li4no ne4o neponimaju , kakaja tam raznica va6e , pozalujsto , vilozite celikom praveljnij scp . PLIIIIIIZ


Top
   
 Post subject:
PostPosted: 2006-07-29 22:45:27 
Offline
User avatar

Joined: 2006-07-28 00:21:50
Posts: 76
nu pomogite pliiiiiz


Top
   
 Post subject:
PostPosted: 2006-10-07 09:35:18 
Offline

Joined: 2006-07-06 08:30:59
Posts: 40
Что вы хатите пацан с Олдп, ничо не умет и не хочет уметь, у нас таких 90%ник говорит сам за себя,ему тока дать всё готовое + с тайпами под олдп и за руку привести к компу, и показать как включить ижект,а потом всё показать и расказать ещё раз. :?


Top
   
 Post subject:
PostPosted: 2006-10-07 19:20:35 
Offline

Joined: 2005-04-19 18:00:29
Posts: 2259
Location: Московская область
Практически любые скрипты за WMZ.


Top
   
 Post subject:
PostPosted: 2006-10-08 02:49:30 
Offline
User avatar

Joined: 2005-01-13 07:20:54
Posts: 528
You Must Die wrote:
Практически любые скрипты за WMZ.

You Must Die !

NMY: флуд :evil:

_________________
все для альфы , [url=http://newvlad.nm.ru/prog]здесь[/url]
модернизация ремонт продажа игровых консолей
Sky: admirka1 Москва


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

All times are UTC+02:00


Who is online

Users browsing this forum: No registered users and 1 guest


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