Помогите с синтаксисом.

Ask for help

Moderators: Murderator+, Murderator

altukhov
Posts: 38
Joined: 2008-03-12 14:35:20

Помогите с синтаксисом.

Post by altukhov »

Всем привет,
Подскажите как со значением переменной в данной ситуации поступить:

sub test()
var A
A=1
repeat
test2()
wait(100)
............
test99()
wait(100)
until UO.Dead()
end sub

sub test2()
if A=1 then ###как взять значение "A" из test()
........
A=0 ### а тут соответсвенно присвоить в test()
wait=2000
A=1
end sub
..................
Millerbeer
Posts: 247
Joined: 2008-09-12 05:07:34

Post by Millerbeer »

Code: Select all

sub test() 
var A=test2(1)
end sub

sub test2(x)
if x==1 then # если в функцию test2 передали единицу
 return 0      #  то вернуть ноль
endif
end sub


это передача параметра в функцию и возврат параметра, а можно обьявить переменную A глобально, тогда она будет видна во всех функциях скрипта, типа

Code: Select all

var A=1
sub test()
 uo.print(str(A))
endsub

sub test2()
  uo.print(str(A))
endsub


оба скриптика напечатают единицу, так как переменная обьявлена глобально, то оба скриптика имеют к ней доступ и могут её изменять
altukhov
Posts: 38
Joined: 2008-03-12 14:35:20

Post by altukhov »

огромное спасибо. как доделаю скриптик выложу всем :)
altukhov
Posts: 38
Joined: 2008-03-12 14:35:20

Post by altukhov »

#что то подобное этому....

var a,b,t1,t2
a=1
b=1
t1=2000
t2=30000

sub AutoHeal()
repeat
timer1()
wait(100)
timer2()
wait(100)
Until UO.Dead()
end sub

Sub timer1()
if a==1 then
if UO.Str>UO.Life and UO.Count('0x0E21') then
UO.BandageSelf()
else
if UO.Count('0x0E21') then
wait(100)
else
UO.Print("BANDAGE")
endif
endif
a=0
wait(t1)
a=1
end sub

Sub timer2()
if b==1 then
if ((UO.Str)-50)>UO.Life or ((UO.Dex)-50)>UO.Stamina then
if UO.Count('0x0DE1') then
UO.Say(".camp")
else
UO.Print("CAMPING CAMPING CAMPING")
endif
endif
endif
b=0
wait(t2)
b=1
end sub
Last edited by altukhov on 2009-03-16 16:51:42, edited 1 time in total.
Millerbeer
Posts: 247
Joined: 2008-09-12 05:07:34

Post by Millerbeer »

а какой смысл этих хитрых манипуляций?
altukhov
Posts: 38
Joined: 2008-03-12 14:35:20

Post by altukhov »

Хочется создать 1 цикл который будет висеть постоянно и делать все необходимые манипуляции за тебя.

тоесть вместо того чтобы создавать 2 скрипта:

sub 1()
repeat
...
until uo.dead()
end sub

sub 2()
repeat
...
until uo.dead()
end sub

1 скрипт:
sub test()
repeat
1()
2()
....
99()
until uo.dead()
end sub

Кстати может я это зря делаю ? просто к сожалению не могу проаналлизировать полезно ли это ?
Millerbeer
Posts: 247
Joined: 2008-09-12 05:07:34

Post by Millerbeer »

а что делает timer2?
altukhov
Posts: 38
Joined: 2008-03-12 14:35:20

Post by altukhov »

играю на oldparadise. там можно лечится бинтами, .camp под собой костер разжигает востанавливающих хп и стамину, есть рыбу, пить бутылки и есть necro meat.

timer1-бинты, timer2 - костер, timer3 - ест рыбу, timer4 и 5 тип надо поменять и будет есть мясо и пить ботлы :-) щас доделываю.....

var a,b,t1,t2
a=1
b=1
c=1
d=1
e=1
t1=2000
t2=30000
t3=30000
t4=4000
t5=15000

sub AutoHeal()
repeat
timer1()
timer2()
timer3()
timer4()
timer5()
Until UO.Dead()
end sub

Sub timer1()
if a==1 then
if UO.Str>UO.Life and UO.Count('0x0E21') then
UO.BandageSelf()
a=0
wait(t1)
a=1
else
if UO.Count('0x0E21') then
wait(50)
else
UO.Print("BANDAGE BANDAGE BANDAGE")
a=0
wait(5000)
a=1
endif
endif
wait(50)
end sub

Sub timer2()
if b==1 then
if ((UO.Str)-50)>UO.Life or ((UO.Dex)-50)>UO.Stamina then
if UO.Count('0x0DE1') then
UO.Say(".camp")
b=0
wait(t2)
b=1
else
UO.Print("CAMPING CAMPING CAMPING")
b=0
wait(5000)
b=1
endif
endif
endif
wait(50)
end sub

Sub timer3()
if c==1 then
if ((UO.Str)-100)>UO.Life then
if UO.Count('0x09CC') then
UO.UseType('0x09CC')
c=0
wait(t3)
c=1
else
UO.Print("FISHING FISHING FISHING")
c=0
wait(5000)
c=1
endif
endif
endif
wait(50)
end sub

Sub timer4()
if d==1 then
if ((UO.Str)-150)>UO.Life then
if UO.Count('0x1111') then
UO.UseType('0x1111')
d=0
wait(t4)
d=1
else
UO.Print("NECRO NECRO NECRO")
d=0
wait(5000)
d=1
endif
endif
end sub

Sub timer5()
if e==1 then
if ((UO.Str)-200)>UO.Life then
if UO.Count('0x2222') then
UO.UseType('0x2222')
e=0
wait(t5)
e=1
else
UO.Print("RESTORE RESTORE RESTORE")
e=0
wait(5000)
e=1
endif
endif
end sub
altukhov
Posts: 38
Joined: 2008-03-12 14:35:20

Post by altukhov »

Millerbeer wrote:а что делает timer2?


кстати а имеет ли смысл то что я пишу ? :)
Millerbeer
Posts: 247
Joined: 2008-09-12 05:07:34

Post by Millerbeer »

конкретно в этом случае, я думаю, можно обойтись одним скриптом, все способы лечения пихнуть в один скрипт, сначала самые быстрые и далее по убывающей, типа
sub Autoheal()
repeat
если жизнь < силы то
если есть бинты то
хилиться бинтами
иначе
если есть бутылки то
пить бутылки
иначе
если есть рыба то
сожрать рыбу
иначе
если есть мясо мертвяка то
сожрать мясо мертвяка
иначе
разжечь под собой костёр и спалить себя нах
конец условия
конец условия
конец условия
конец условия
иначе
подождать секунду
конец условия
until uo.dead()
endsub

а твой вариант хорош тем, что например начал хилиться бинтами, а бинты закончились, дохилится чем нить другим, хотя можно и в моём алгортме это предусмотреть, вобщем извращаться по разному можно.
altukhov
Posts: 38
Joined: 2008-03-12 14:35:20

Post by altukhov »

если есть бинты то
хилиться бинтами (задежка 5сек)
иначе
если есть бутылки то ими (задержка 15 секунд)

рассматривал такой вариант, но как же с задержками для каждого из видов лечения ? если ты подскажешь как написать данный скрипт который будет соблюдать все задержки !!! можно же одновременно и бутылку выпить и бинтом полечиться.... вопрос в том что начал лечится бинтом если задержки нет то через несколько мсек ты еще раз им попробуешь полечится и т.д. и бутылки так же будешь пить....


Кстати будет ли работать условие:


repeat
uo.bandageself()
until uo.injournal("you put") or wait(2500)

вот динамическую паузу как реализовывать напрочь забыл :)
Millerbeer
Posts: 247
Joined: 2008-09-12 05:07:34

Post by Millerbeer »

Code: Select all

repeat
  uo.deletejournal()
  uo.bandageself()
        repeat
            wait(300)
        until uo.injournal('You put|You apply')
until uo.life==uo.str or not uo.count('0x0E21')

как-то так
altukhov
Posts: 38
Joined: 2008-03-12 14:35:20

Post by altukhov »

Спасибо за пример оч. хороший.

еще вопрос на сервере свои гампы.

uo.usetype('mortalka')
а как потом клик или несколько кликов в нужное место кликнуть.
помойму через uo.recall как то делал.... или как то есть по человечески что нить типа uo.gump('') ?

как кликнуть на 17 кнопку к примеру ?



вот пример гампа:

_____infogump_______
serial 0x000c00e6
gumpid 0x00000479
X 130
Y 110
11509 packet size
0 reply packet size
Buttons: ________
page 0
1 [ 0] image=0x0FA6 at 118:75
2 [ 0] image=0x0FA6 at 118:97
3 [ 0] image=0x0FA6 at 118:119
4 [ 0] image=0x0FA6 at 118:141
5 [ 5] image=0x0FA6 at 118:164
6 [ 0] image=0x0FA6 at 118:186
7 [ 0] image=0x0FA6 at 118:208
8 [ 0] image=0x0FA6 at 118:302
9 [ 0] image=0x0FA6 at 118:324
10 [ 355] image=0x0FA6 at 118:232
11 [ 1] image=0x0FA6 at 169:334
12 [ 2] image=0x0FA6 at 259:334
13 [ 3] image=0x0FA6 at 346:333
14 [ 4] image=0x0FA6 at 470:290
15 [ 6] image=0x0FAF at 470:290
16 [ 357] image=0x0FAF at 485:290
17 [ 356] image=0x0FAF at 485:290
Checks&Radios: __
page 0
1 (_) (_) [ 1] image=0x04X at 175:105
2 (_) (_) [ 2] image=0x04X at 288:105
3 (_) (_) [ 3] image=0x04X at 410:105
4 (_) (_) [ 4] image=0x04X at 175:175
5 (_) (_) [ 5] image=0x04X at 288:175
6 (_) (_) [ 6] image=0x04X at 410:175
7 (_) (_) [ 7] image=0x04X at 175:248
8 (_) (_) [ 8] image=0x04X at 288:248
9 (_) (_) [ 9] image=0x04X at 410:248
10 (_) (_) [ 10] image=0x04X at 175:105
11 (_) (_) [ 11] image=0x04X at 288:105
12 (_) (_) [ 12] image=0x04X at 410:105
13 (_) (_) [ 13] image=0x04X at 175:175
14 (_) (_) [ 14] image=0x04X at 288:175
15 (_) (_) [ 15] image=0x04X at 410:175
16 (_) (_) [ 16] image=0x04X at 175:105
17 (_) (_) [ 17] image=0x04X at 288:105
18 (_) (_) [ 18] image=0x04X at 410:105
19 (_) (_) [ 19] image=0x04X at 175:175
20 (_) (_) [ 20] image=0x04X at 175:105
21 (_) (_) [ 21] image=0x04X at 288:105
22 (_) (_) [ 22] image=0x04X at 410:105
23 (_) (_) [ 23] image=0x04X at 175:175
24 (_) (_) [ 24] image=0x04X at 288:175
25 (_) (_) [ 25] image=0x04X at 410:175
26 (_) (_) [ 26] image=0x04X at 175:248
27 (_) (_) [ 27] image=0x04X at 288:248
28 (_) (_) [ 28] image=0x04X at 410:248
29 (_) (_) [ 34] image=0x04X at 175:105
30 (_) (_) [ 30] image=0x04X at 288:105
31 (_) (_) [ 31] image=0x04X at 410:105
32 (_) (_) [ 32] image=0x04X at 175:175
33 (_) (_) [ 33] image=0x04X at 288:175
34 (_) (_) [ 37] image=0x04X at 410:175
35 (_) (_) [ 35] image=0x04X at 175:258
36 (_) (_) [ 36] image=0x04X at 288:258
37 (_) (_) [ 89] image=0x04X at 410:258
38 (_) (_) [ 38] image=0x04X at 175:105
39 (_) (_) [ 39] image=0x04X at 288:105
40 (_) (_) [ 40] image=0x04X at 410:105
41 (_) (_) [ 41] image=0x04X at 175:175
42 (_) (_) [ 42] image=0x04X at 288:175
43 (_) (_) [ 43] image=0x04X at 410:175
44 (_) (_) [ 44] image=0x04X at 175:105
45 (_) (_) [ 45] image=0x04X at 288:105
46 (_) (_) [ 46] image=0x04X at 410:105
47 (_) (_) [ 47] image=0x04X at 175:175
48 (_) (_) [ 48] image=0x04X at 288:175
49 (_) (_) [ 49] image=0x04X at 175:105
50 (_) (_) [ 50] image=0x04X at 288:105
51 (_) (_) [ 51] image=0x04X at 410:105
52 (_) (_) [ 52] image=0x04X at 175:175
53 (_) (_) [ 53] image=0x04X at 175:105
54 (_) (_) [ 54] image=0x04X at 288:105
55 (_) (_) [ 55] image=0x04X at 410:105
56 (_) (_) [ 56] image=0x04X at 175:175
57 (_) (_) [ 57] image=0x04X at 288:175
58 (_) (_) [ 58] image=0x04X at 410:175
59 (_) (_) [ 59] image=0x04X at 175:248
60 (_) (_) [ 60] image=0x04X at 288:248
61 (_) (_) [ 61] image=0x04X at 410:248
62 (_) (_) [ 62] image=0x04X at 175:105
63 (_) (_) [ 63] image=0x04X at 288:105
64 (_) (_) [ 64] image=0x04X at 175:105
65 (_) (_) [ 65] image=0x04X at 288:105
66 (_) (_) [ 66] image=0x04X at 410:105
67 (_) (_) [ 67] image=0x04X at 175:195
68 (_) (_) [ 68] image=0x04X at 288:195
69 (_) (_) [ 69] image=0x04X at 410:195
70 (_) (_) [ 70] image=0x04X at 175:285
71 (_) (_) [ 71] image=0x04X at 175:105
72 (_) (_) [ 72] image=0x04X at 288:105
73 (_) (_) [ 73] image=0x04X at 410:105
74 (_) (_) [ 74] image=0x04X at 175:175
75 (_) (_) [ 75] image=0x04X at 288:175
76 (_) (_) [ 76] image=0x04X at 410:175
77 (_) (_) [ 77] image=0x04X at 175:105
78 (_) (_) [ 78] image=0x04X at 288:105
79 (_) (_) [ 79] image=0x04X at 410:105
80 (_) (_) [ 80] image=0x04X at 175:170
81 (_) (_) [ 81] image=0x04X at 288:170
82 (_) (_) [ 82] image=0x04X at 410:170
83 (_) (_) [ 83] image=0x04X at 175:235
84 (_) (_) [ 84] image=0x04X at 288:235
85 (_) (_) [ 85] image=0x04X at 410:235
86 (_) (_) [ 86] image=0x04X at 175:300
87 (_) (_) [ 87] image=0x04X at 288:300
88 (_) (_) [ 88] image=0x04X at 410:300
Entryes: ________
All commands: ____
1] resizepic 10 15 2600 555 359
2] text 170 31 995 0
3] text 37 75 1101 1
4] text 37 98 1101 2
5] text 37 122 1101 3
6] text 37 144 1101 4
7] text 37 166 1101 5
8] text 67 53 1313 6
9] text 37 188 1101 7
10] text 37 210 1101 8
11] text 37 232 1101 9
12] text 69 282 1313 10
13] text 37 302 1101 11
14] text 37 324 1101 12
15] button 118 75 4005 4006 0 1 0
16] button 118 97 4005 4006 0 2 0
17] button 118 119 4005 4006 0 3 0
18] button 118 141 4005 4006 0 4 0
19] button 118 164 4005 4006 1 0 5
20] button 118 186 4005 4006 0 6 0
21] button 118 208 4005 4006 0 9 0
22] button 118 302 4005 4006 0 10 0
23] button 118 324 4005 4006 0 11 0
24] button 118 232 4005 4006 1 0 355
25] text 206 333 1313 13
26] button 169 334 4005 4006 1 0 1
27] text 293 333 1313 14
28] button 259 334 4005 4006 1 0 2
29] text 380 332 1313 15
30] button 346 333 4005 4006 1 0 3
31] page 1
32] resizepic 152 55 5054 375 277
33] gumppic 165 70 2445
34] text 175 70 1152 16
35] radio 175 105 210 211 0 1
36] tilepic 200 105 3998
37] gumppic 288 70 2445
38] text 298 70 1152 17
39] radio 288 105 210 211 0 2
40] tilepic 312 105 3739
41] gumppic 410 70 2445
42] text 420 70 1152 18
43] radio 410 105 210 211 0 3
44] tilepic 435 102 3997
45] gumppic 165 140 2445
46] text 175 140 1152 19
47] radio 175 175 210 211 0 4
48] tilepic 200 175 3907
49] gumppic 288 140 2445
50] text 298 140 1152 20
51] radio 288 175 210 211 0 5
52] tilepic 312 172 7868
53] gumppic 410 140 2445
54] text 420 140 1152 21
55] radio 410 175 210 211 0 6
56] tilepic 435 175 4148
57] gumppic 165 210 2445
58] text 175 210 1152 22
59] radio 175 248 210 211 0 7
60] tilepic 200 248 5091
61] gumppic 288 210 2445
62] text 298 210 1152 23
63] radio 288 248 210 211 0 8
64] tilepic 312 248 3718
65] gumppic 410 210 2445
66] text 420 210 1152 24
67] radio 410 248 210 211 0 9
68] tilepic 400 242 3898
69] page 2
70] resizepic 152 55 5054 375 277
71] gumppic 165 70 2445
72] text 175 70 1152 25
73] radio 175 105 210 211 0 10
74] tilepic 200 105 2600
75] gumppic 288 70 2445
76] text 298 70 1152 26
77] radio 288 105 210 211 0 11
78] tilepic 312 100 2845
79] gumppic 410 70 2445
80] text 420 70 1152 27
81] radio 410 105 210 211 0 12
82] tilepic 435 102 2595
83] gumppic 165 140 2445
84] text 175 140 1152 28
85] radio 175 175 210 211 0 13
86] tilepic 200 175 2855
87] gumppic 288 140 2445
88] text 298 140 1152 29
89] radio 288 175 210 211 0 14
90] tilepic 312 172 2850
91] gumppic 410 140 2445
92] text 420 140 1152 30
93] radio 410 175 210 211 0 15
94] tilepic 437 175 2852
95] button 470 290 4005 4006 1 0 4
96] page 3
97] resizepic 152 55 5054 375 277
98] gumppic 165 70 2445
99] text 175 70 1152 31
100] radio 175 105 210 211 0 16
101] tilepic 200 105 2472
102] gumppic 288 70 2445
103] text 298 70 1152 32
104] radio 288 105 210 211 0 17
105] tilepic 315 102 3651
106] gumppic 410 70 2445
107] text 420 70 1152 33
108] radio 410 105 210 211 0 18
109] tilepic 435 102 3649
110] gumppic 165 140 2445
111] text 175 140 1152 34
112] radio 175 175 210 211 0 19
113] tilepic 200 175 2475
114] page 4
115] resizepic 152 55 5054 375 277
116] gumppic 165 70 2445
117] text 175 70 1152 35
118] radio 175 105 210 211 0 20
119] tilepic 200 105 2552
120] gumppic 288 70 2445
121] text 298 70 1152 36
122] radio 288 105 210 211 0 21
123] tilepic 312 105 2548
124] gumppic 410 70 2445
125] text 420 70 1152 37
126] radio 410 105 210 211 0 22
127] tilepic 435 102 2550
128] gumppic 165 140 2445
129] text 175 140 1152 38
130] radio 175 175 210 211 0 23
131] tilepic 200 175 2519
132] gumppic 288 140 2445
133] text 298 140 1152 39
134] radio 288 175 210 211 0 24
135] tilepic 312 172 2471
136] gumppic 410 140 2445
137] text 420 140 1152 40
138] radio 410 175 210 211 0 25
139] tilepic 435 175 2533
140] gumppic 165 210 2445
141] text 175 210 1152 41
142] radio 175 248 210 211 0 26
143] tilepic 200 248 2547
144] gumppic 288 210 2445
145] text 298 210 1152 42
146] radio 288 248 210 211 0 27
147] tilepic 312 248 2530
148] gumppic 410 210 2445
149] text 420 210 1152 43
150] radio 410 248 210 211 0 28
151] tilepic 440 242 2541
152] page 5
153] resizepic 152 55 5054 375 277
154] gumppic 165 70 2445
155] text 175 70 1152 44
156] radio 175 105 210 211 0 34
157] tilepic 197 100 2887
158] gumppic 288 70 2445
159] text 298 70 1152 45
160] radio 288 105 210 211 0 30
161] tilepic 320 100 2886
162] gumppic 410 70 2445
163] text 420 70 1152 46
164] radio 410 105 210 211 0 31
165] tilepic 435 90 5469
166] gumppic 165 140 2445
167] text 175 140 1152 47
168] radio 175 175 210 211 0 32
169] tilepic 190 160 5476
170] gumppic 288 140 2445
171] text 298 140 1152 48
172] radio 288 175 210 211 0 33
173] tilepic 320 170 5484
174] gumppic 410 140 2445
175] text 420 140 1152 49
176] radio 410 175 210 211 0 37
177] tilepic 440 170 5402
178] gumppic 165 220 2445
179] text 175 220 1152 50
180] radio 175 258 210 211 0 35
181] tilepic 200 258 2885
182] gumppic 288 220 2445
183] text 298 220 1152 51
184] radio 288 258 210 211 0 36
185] tilepic 320 245 5384
186] gumppic 410 220 2445
187] text 420 220 1152 52
188] radio 410 258 210 211 0 89
189] tilepic 435 245 13745
190] button 470 290 4014 4015 1 0 6
191] page 6
192] resizepic 152 55 5054 375 277
193] gumppic 165 70 2445
194] text 175 70 1152 53
195] radio 175 105 210 211 0 38
196] tilepic 200 105 3741
197] gumppic 288 70 2445
198] text 298 70 1152 54
199] radio 288 105 210 211 0 39
200] tilepic 312 105 3763
201] gumppic 410 70 2445
202] text 420 70 1152 55
203] radio 410 105 210 211 0 40
204] tilepic 435 102 3762
205] gumppic 165 140 2445
206] text 175 140 1152 56
207] radio 175 175 210 211 0 41
208] tilepic 200 175 3740
209] gumppic 288 140 2445
210] text 298 140 1152 57
211] radio 288 175 210 211 0 42
212] tilepic 312 172 3761
213] gumppic 410 140 2445
214] text 420 140 1152 58
215] radio 410 175 210 211 0 43
216] tilepic 435 175 3766
217] page 7
218] resizepic 152 55 5054 375 277
219] gumppic 165 70 2445
220] text 175 70 1152 59
221] radio 175 105 210 211 0 44
222] tilepic 200 105 4234
223] gumppic 288 70 2445
224] text 298 70 1152 60
225] radio 288 105 210 211 0 45
226] tilepic 312 105 4231
227] gumppic 410 70 2445
228] text 420 70 1152 61
229] radio 410 105 210 211 0 46
230] tilepic 435 102 4233
231] gumppic 165 140 2445
232] text 175 140 1152 62
233] radio 175 175 210 211 0 47
234] tilepic 200 175 4232
235] gumppic 288 140 2445
236] text 298 140 1152 63
237] radio 288 175 210 211 0 48
238] tilepic 312 172 4230
239] page 8
240] resizepic 152 55 5054 375 277
241] gumppic 165 70 2445
242] text 175 70 1152 64
243] radio 175 105 210 211 0 49
244] tilepic 200 105 4189
245] gumppic 288 70 2445
246] text 298 70 1152 65
247] radio 288 105 210 211 0 50
248] tilepic 312 105 4179
249] gumppic 410 70 2445
250] text 420 70 1152 66
251] radio 410 105 210 211 0 51
252] tilepic 435 102 4175
253] gumppic 165 140 2445
254] text 167 140 1152 67
255] radio 175 175 210 211 0 52
256] tilepic 200 175 4185
257] page 9
258] resizepic 152 55 5054 375 277
259] gumppic 165 70 2445
260] text 175 70 1152 68
261] radio 175 105 210 211 0 53
262] tilepic 200 105 4142
263] gumppic 288 70 2445
264] text 298 70 1152 69
265] radio 288 105 210 211 0 54
266] tilepic 312 105 4103
267] gumppic 410 70 2445
268] text 420 70 1152 70
269] radio 410 105 210 211 0 55
270] tilepic 435 102 3854
271] gumppic 165 140 2445
272] text 175 140 1152 71
273] radio 175 175 210 211 0 56
274] tilepic 200 175 6189
275] gumppic 288 140 2445
276] text 298 140 1152 72
277] radio 288 175 210 211 0 57
278] tilepic 312 172 6205
279] gumppic 410 140 2445
280] text 420 140 1152 73
281] radio 410 175 210 211 0 58
282] tilepic 442 167 6202
283] gumppic 165 210 2445
284] text 175 210 1152 74
285] radio 175 248 210 211 0 59
286] tilepic 200 248 6194
287] gumppic 288 210 2445
288] text 298 210 1152 75
289] radio 288 248 210 211 0 60
290] tilepic 312 248 4015
291] gumppic 410 210 2445
292] text 420 210 1152 76
293] radio 410 248 210 211 0 61
294] tilepic 435 242 4017
295] page 10
296] resizepic 152 55 5054 375 277
297] gumppic 165 70 2445
298] text 175 70 1152 77
299] radio 175 105 210 211 0 62
300] tilepic 200 105 7143
301] gumppic 288 70 2445
302] text 298 70 1152 78
303] radio 288 105 210 211 0 63
304] tilepic 312 105 5037
305] page 11
306] resizepic 152 55 5054 375 277
307] gumppic 165 70 2445
308] text 175 70 1152 79
309] radio 175 105 210 211 0 64
310] tilepic 205 100 1331
311] gumppic 288 70 2445
312] text 298 70 1152 80
313] radio 288 105 210 211 0 65
314] tilepic 317 100 1375
315] gumppic 410 70 2445
316] text 420 70 1152 81
317] radio 410 105 210 211 0 66
318] tilepic 440 100 1399
319] gumppic 165 160 2445
320] text 175 160 1152 82
321] radio 175 195 210 211 0 67
322] tilepic 205 190 1184
323] gumppic 288 160 2445
324] text 298 160 1152 83
325] radio 288 195 210 211 0 68
326] tilepic 317 190 1179
327] gumppic 410 160 2445
328] text 420 160 1152 84
329] radio 410 195 210 211 0 69
330] tilepic 440 190 1307
331] gumppic 165 250 2445
332] text 175 250 1152 85
333] radio 175 285 210 211 0 70
334] tilepic 205 280 1174
335] page 12
336] resizepic 152 55 5054 375 277
337] gumppic 165 70 2445
338] text 175 70 1152 86
339] radio 175 105 210 211 0 71
340] tilepic 200 105 4009
341] gumppic 288 70 2445
342] text 298 70 1152 87
343] radio 288 105 210 211 0 72
344] tilepic 312 105 4009
345] gumppic 410 70 2445
346] text 420 70 1152 88
347] radio 410 105 210 211 0 73
348] tilepic 435 102 4009
349] gumppic 165 140 2445
350] text 175 140 1152 89
351] radio 175 175 210 211 0 74
352] tilepic 200 175 4009
353] gumppic 288 140 2445
354] text 298 140 1152 90
355] radio 288 175 210 211 0 75
356] tilepic 312 172 4009
357] gumppic 410 140 2445
358] text 420 140 1152 91
359] radio 410 175 210 211 0 76
360] tilepic 435 175 4009
361] button 485 290 4014 4015 1 0 357
362] page 13
363] resizepic 152 55 5054 375 277
364] gumppic 165 70 2445
365] text 175 70 1152 92
366] radio 175 105 210 211 0 77
367] tilepic 200 105 4009
368] gumppic 288 70 2445
369] text 298 70 1152 93
370] radio 288 105 210 211 0 78
371] tilepic 312 105 4009
372] gumppic 410 70 2445
373] text 420 70 1152 94
374] radio 410 105 210 211 0 79
375] tilepic 435 102 4009
376] gumppic 165 135 2445
377] text 175 135 1152 95
378] radio 175 170 210 211 0 80
379] tilepic 200 170 4009
380] gumppic 288 135 2445
381] text 298 135 1152 96
382] radio 288 170 210 211 0 81
383] tilepic 312 170 4009
384] gumppic 410 135 2445
385] text 420 135 1152 97
386] radio 410 170 210 211 0 82
387] tilepic 435 170 4009
388] gumppic 165 200 2445
389] text 175 200 1152 98
390] radio 175 235 210 211 0 83
391] tilepic 200 235 4009
392] gumppic 288 200 2445
393] text 298 200 1152 99
394] radio 288 235 210 211 0 84
395] tilepic 312 235 4009
396] gumppic 410 200 2445
397] text 420 200 1152 100
398] radio 410 235 210 211 0 85
399] tilepic 435 235 4009
400] gumppic 165 265 2445
401] text 175 265 1152 101
402] radio 175 300 210 211 0 86
403] tilepic 200 300 4009
404] gumppic 288 265 2445
405] text 298 265 1152 102
406] radio 288 300 210 211 0 87
407] tilepic 312 300 4009
408] gumppic 410 265 2445
409] text 420 265 1152 103
410] radio 410 300 210 211 0 88
411] tilepic 435 300 4009
412] button 485 290 4014 4015 1 0 356
Text: ____________
0] Old Paradise Tinkering Menu
1] Tools
2] Light
3] Containers
4] Food stuff
5] Decoration
6] Basic
7] Musician
8] Misc
9] Dyes
10] Other
11] Blocks
12] Tiles
13] Make
14] Info
15] Make last
16] Scissors
17] Mrtl&Pestle
18] Sewing Kit
19] Hatchet
20] Tinker Tools
21] Saw
22] Smth. hammer
23] Pickaxe
24] Shovel
25] Candle
26] Candles
27] Lathern
28] Candelabra
29] Lamp Post 1
30] Lamp Post 2
31] Brass Box
32] Wood. Chest
33] Fancy Chest
34] Metal Chest
35] Spoon
36] Fork
37] Knife
38] Plate
39] Pitcher
40] Pot
41] Pan
42] Frypan
43] Kettle
44] Vase 1
45] Vase Sm.
46] Bows
47] Swords
48] Shield
49] Armor 2
50] Vase 2
51] Armor 1
52] Decor Vase
53] Tambourine
54] Lute
55] Harp
56] Drum
57] Big Harp
58] Stand
59] Ring
60] Earrings
61] Necklace
62] Necklace 2
63] Braclete
64] Springs
65] Gears
66] Clock Parts
67] Sext. Parts
68] Nails
69] Empty Jar
70] Empty Bottle
71] Flask
72] Flask 2
73] Flask 3
74] Flask 4
75] Anvil
76] Forge
77] Zink Blc.
78] Gypsum Blc.
79] Sandstone
80] Red Stone
81] White Stone
82] Sandstone
83] Tile 1
84] Grey Stone
85] Marble
86] Aspen Dyes
87] Maple Dyes
88] Cedar Dyes
89] Noblef. Dyes
90] Cherry Dyes
91] Ecalyp. Dyes
92] Elven Dyes
93] Scorp. Dyes
94] Dread Dyes
95] Chaotic Dyes
96] Ice Dyes
97] Parad. Dyes
98] Holy Dyes
99] Hamel. Dyes
100] Frozen Dyes
101] Arian Dyes
102] Millen. Dyes
103] Terium Dyes
Destruction
Junior Expert
Posts: 3221
Joined: 2004-06-24 22:08:56

Post by Destruction »

uo.lclick(485,290)
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
altukhov
Posts: 38
Joined: 2008-03-12 14:35:20

Post by altukhov »

видимо что то не то происходит , гамп так и висит... как точно определить координаты кнопки в гампе...
Destruction
Junior Expert
Posts: 3221
Joined: 2004-06-24 22:08:56

Post by Destruction »

А может вам не 17ую кнопку нужно ?

Code: Select all

Buttons: ________ 
page 0
1 [ 0] image=0x0FA6 at 118:75
2 [ 0] image=0x0FA6 at 118:97
3 [ 0] image=0x0FA6 at 118:119
4 [ 0] image=0x0FA6 at 118:141
5 [ 5] image=0x0FA6 at 118:164
6 [ 0] image=0x0FA6 at 118:186
7 [ 0] image=0x0FA6 at 118:208
8 [ 0] image=0x0FA6 at 118:302
9 [ 0] image=0x0FA6 at 118:324
10 [ 355] image=0x0FA6 at 118:232
11 [ 1] image=0x0FA6 at 169:334
12 [ 2] image=0x0FA6 at 259:334
13 [ 3] image=0x0FA6 at 346:333
14 [ 4] image=0x0FA6 at 470:290
15 [ 6] image=0x0FAF at 470:290
16 [ 357] image=0x0FAF at 485:290
17 [ 356] image=0x0FAF at 485:290
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
altukhov
Posts: 38
Joined: 2008-03-12 14:35:20

Post by altukhov »

Screen картинки лежит тут: http://depositfiles.com/files/vzu58li16

Очень хочется нажать на кнопочку make last хотя бы.

Есть такое ощщущение что ,infogump не всю информацию выдает.

хотя обновил до 505.18 fix gump v.2

Извиняюсь что раньше без использования тега code постил.

Code: Select all

_____infogump_______
serial   0x000c00e6
gumpid   0x00000479
X   130
Y   110
11509   packet size
0   reply packet size
Buttons: ________
 page 0
    1 [    0] image=0x0FA6 at 118:75
    2 [    0] image=0x0FA6 at 118:97
    3 [    0] image=0x0FA6 at 118:119
    4 [    0] image=0x0FA6 at 118:141
    5 [    5] image=0x0FA6 at 118:164
    6 [    0] image=0x0FA6 at 118:186
    7 [    0] image=0x0FA6 at 118:208
    8 [    0] image=0x0FA6 at 118:302
    9 [    0] image=0x0FA6 at 118:324
   10 [  355] image=0x0FA6 at 118:232
   11 [    1] image=0x0FA6 at 169:334
   12 [    2] image=0x0FA6 at 259:334
   13 [    3] image=0x0FA6 at 346:333
   14 [    4] image=0x0FA6 at 470:290
   15 [    6] image=0x0FAF at 470:290
   16 [  357] image=0x0FAF at 485:290
   17 [  356] image=0x0FAF at 485:290
Checks&Radios: __
 page 0
    1 (_) (_) [    1] image=0x04X at 175:105
    2 (_) (_) [    2] image=0x04X at 288:105
    3 (_) (_) [    3] image=0x04X at 410:105
    4 (_) (_) [    4] image=0x04X at 175:175
    5 (_) (_) [    5] image=0x04X at 288:175
    6 (_) (_) [    6] image=0x04X at 410:175
    7 (_) (_) [    7] image=0x04X at 175:248
    8 (_) (_) [    8] image=0x04X at 288:248
    9 (_) (_) [    9] image=0x04X at 410:248
   10 (_) (_) [   10] image=0x04X at 175:105
   11 (_) (_) [   11] image=0x04X at 288:105
   12 (_) (_) [   12] image=0x04X at 410:105
   13 (_) (_) [   13] image=0x04X at 175:175
   14 (_) (_) [   14] image=0x04X at 288:175
   15 (_) (_) [   15] image=0x04X at 410:175
   16 (_) (_) [   16] image=0x04X at 175:105
   17 (_) (_) [   17] image=0x04X at 288:105
   18 (_) (_) [   18] image=0x04X at 410:105
   19 (_) (_) [   19] image=0x04X at 175:175
   20 (_) (_) [   20] image=0x04X at 175:105
   21 (_) (_) [   21] image=0x04X at 288:105
   22 (_) (_) [   22] image=0x04X at 410:105
   23 (_) (_) [   23] image=0x04X at 175:175
   24 (_) (_) [   24] image=0x04X at 288:175
   25 (_) (_) [   25] image=0x04X at 410:175
   26 (_) (_) [   26] image=0x04X at 175:248
   27 (_) (_) [   27] image=0x04X at 288:248
   28 (_) (_) [   28] image=0x04X at 410:248
   29 (_) (_) [   34] image=0x04X at 175:105
   30 (_) (_) [   30] image=0x04X at 288:105
   31 (_) (_) [   31] image=0x04X at 410:105
   32 (_) (_) [   32] image=0x04X at 175:175
   33 (_) (_) [   33] image=0x04X at 288:175
   34 (_) (_) [   37] image=0x04X at 410:175
   35 (_) (_) [   35] image=0x04X at 175:258
   36 (_) (_) [   36] image=0x04X at 288:258
   37 (_) (_) [   89] image=0x04X at 410:258
   38 (_) (_) [   38] image=0x04X at 175:105
   39 (_) (_) [   39] image=0x04X at 288:105
   40 (_) (_) [   40] image=0x04X at 410:105
   41 (_) (_) [   41] image=0x04X at 175:175
   42 (_) (_) [   42] image=0x04X at 288:175
   43 (_) (_) [   43] image=0x04X at 410:175
   44 (_) (_) [   44] image=0x04X at 175:105
   45 (_) (_) [   45] image=0x04X at 288:105
   46 (_) (_) [   46] image=0x04X at 410:105
   47 (_) (_) [   47] image=0x04X at 175:175
   48 (_) (_) [   48] image=0x04X at 288:175
   49 (_) (_) [   49] image=0x04X at 175:105
   50 (_) (_) [   50] image=0x04X at 288:105
   51 (_) (_) [   51] image=0x04X at 410:105
   52 (_) (_) [   52] image=0x04X at 175:175
   53 (_) (_) [   53] image=0x04X at 175:105
   54 (_) (_) [   54] image=0x04X at 288:105
   55 (_) (_) [   55] image=0x04X at 410:105
   56 (_) (_) [   56] image=0x04X at 175:175
   57 (_) (_) [   57] image=0x04X at 288:175
   58 (_) (_) [   58] image=0x04X at 410:175
   59 (_) (_) [   59] image=0x04X at 175:248
   60 (_) (_) [   60] image=0x04X at 288:248
   61 (_) (_) [   61] image=0x04X at 410:248
   62 (_) (_) [   62] image=0x04X at 175:105
   63 (_) (_) [   63] image=0x04X at 288:105
   64 (_) (_) [   64] image=0x04X at 175:105
   65 (_) (_) [   65] image=0x04X at 288:105
   66 (_) (_) [   66] image=0x04X at 410:105
   67 (_) (_) [   67] image=0x04X at 175:195
   68 (_) (_) [   68] image=0x04X at 288:195
   69 (_) (_) [   69] image=0x04X at 410:195
   70 (_) (_) [   70] image=0x04X at 175:285
   71 (_) (_) [   71] image=0x04X at 175:105
   72 (_) (_) [   72] image=0x04X at 288:105
   73 (_) (_) [   73] image=0x04X at 410:105
   74 (_) (_) [   74] image=0x04X at 175:175
   75 (_) (_) [   75] image=0x04X at 288:175
   76 (_) (_) [   76] image=0x04X at 410:175
   77 (_) (_) [   77] image=0x04X at 175:105
   78 (_) (_) [   78] image=0x04X at 288:105
   79 (_) (_) [   79] image=0x04X at 410:105
   80 (_) (_) [   80] image=0x04X at 175:170
   81 (_) (_) [   81] image=0x04X at 288:170
   82 (_) (_) [   82] image=0x04X at 410:170
   83 (_) (_) [   83] image=0x04X at 175:235
   84 (_) (_) [   84] image=0x04X at 288:235
   85 (_) (_) [   85] image=0x04X at 410:235
   86 (_) (_) [   86] image=0x04X at 175:300
   87 (_) (_) [   87] image=0x04X at 288:300
   88 (_) (_) [   88] image=0x04X at 410:300
Entryes: ________
All commands: ____
    1] resizepic 10 15 2600 555 359
    2] text 170 31 995 0
    3] text 37 75 1101 1
    4] text 37 98 1101 2
    5] text 37 122 1101 3
    6] text 37 144 1101 4
    7] text 37 166 1101 5
    8] text 67 53 1313 6
    9] text 37 188 1101 7
   10] text 37 210 1101 8
   11] text 37 232 1101 9
   12] text 69 282 1313 10
   13] text 37 302 1101 11
   14] text 37 324 1101 12
   15] button 118 75 4005 4006 0 1 0
   16] button 118 97 4005 4006 0 2 0
   17] button 118 119 4005 4006 0 3 0
   18] button 118 141 4005 4006 0 4 0
   19] button 118 164 4005 4006 1 0 5
   20] button 118 186 4005 4006 0 6 0
   21] button 118 208 4005 4006 0 9 0
   22] button 118 302 4005 4006 0 10 0
   23] button 118 324 4005 4006 0 11 0
   24] button 118 232 4005 4006 1 0 355
   25] text 206 333 1313 13
   26] button 169 334 4005 4006 1 0 1
   27] text 293 333 1313 14
   28] button 259 334 4005 4006 1 0 2
   29] text 380 332 1313 15
   30] button 346 333 4005 4006 1 0 3
   31] page 1
   32] resizepic 152 55 5054 375 277
   33] gumppic 165 70 2445
   34] text 175 70 1152 16
   35] radio 175 105 210 211 0 1
   36] tilepic 200 105 3998
   37] gumppic 288 70 2445
   38] text 298 70 1152 17
   39] radio 288 105 210 211 0 2
   40] tilepic 312 105 3739
   41] gumppic 410 70 2445
   42] text 420 70 1152 18
   43] radio 410 105 210 211 0 3
   44] tilepic 435 102 3997
   45] gumppic 165 140 2445
   46] text 175 140 1152 19
   47] radio 175 175 210 211 0 4
   48] tilepic 200 175 3907
   49] gumppic 288 140 2445
   50] text 298 140 1152 20
   51] radio 288 175 210 211 0 5
   52] tilepic 312 172 7868
   53] gumppic 410 140 2445
   54] text 420 140 1152 21
   55] radio 410 175 210 211 0 6
   56] tilepic 435 175 4148
   57] gumppic 165 210 2445
   58] text 175 210 1152 22
   59] radio 175 248 210 211 0 7
   60] tilepic 200 248 5091
   61] gumppic 288 210 2445
   62] text 298 210 1152 23
   63] radio 288 248 210 211 0 8
   64] tilepic 312 248 3718
   65] gumppic 410 210 2445
   66] text 420 210 1152 24
   67] radio 410 248 210 211 0 9
   68] tilepic 400 242 3898
   69] page 2
   70] resizepic 152 55 5054 375 277
   71] gumppic 165 70 2445
   72] text 175 70 1152 25
   73] radio 175 105 210 211 0 10
   74] tilepic 200 105 2600
   75] gumppic 288 70 2445
   76] text 298 70 1152 26
   77] radio 288 105 210 211 0 11
   78] tilepic 312 100 2845
   79] gumppic 410 70 2445
   80] text 420 70 1152 27
   81] radio 410 105 210 211 0 12
   82] tilepic 435 102 2595
   83] gumppic 165 140 2445
   84] text 175 140 1152 28
   85] radio 175 175 210 211 0 13
   86] tilepic 200 175 2855
   87] gumppic 288 140 2445
   88] text 298 140 1152 29
   89] radio 288 175 210 211 0 14
   90] tilepic 312 172 2850
   91] gumppic 410 140 2445
   92] text 420 140 1152 30
   93] radio 410 175 210 211 0 15
   94] tilepic 437 175 2852
   95] button 470 290 4005 4006 1 0 4
   96] page 3
   97] resizepic 152 55 5054 375 277
   98] gumppic 165 70 2445
   99] text 175 70 1152 31
  100] radio 175 105 210 211 0 16
  101] tilepic 200 105 2472
  102] gumppic 288 70 2445
  103] text 298 70 1152 32
  104] radio 288 105 210 211 0 17
  105] tilepic 315 102 3651
  106] gumppic 410 70 2445
  107] text 420 70 1152 33
  108] radio 410 105 210 211 0 18
  109] tilepic 435 102 3649
  110] gumppic 165 140 2445
  111] text 175 140 1152 34
  112] radio 175 175 210 211 0 19
  113] tilepic 200 175 2475
  114] page 4
  115] resizepic 152 55 5054 375 277
  116] gumppic 165 70 2445
  117] text 175 70 1152 35
  118] radio 175 105 210 211 0 20
  119] tilepic 200 105 2552
  120] gumppic 288 70 2445
  121] text 298 70 1152 36
  122] radio 288 105 210 211 0 21
  123] tilepic 312 105 2548
  124] gumppic 410 70 2445
  125] text 420 70 1152 37
  126] radio 410 105 210 211 0 22
  127] tilepic 435 102 2550
  128] gumppic 165 140 2445
  129] text 175 140 1152 38
  130] radio 175 175 210 211 0 23
  131] tilepic 200 175 2519
  132] gumppic 288 140 2445
  133] text 298 140 1152 39
  134] radio 288 175 210 211 0 24
  135] tilepic 312 172 2471
  136] gumppic 410 140 2445
  137] text 420 140 1152 40
  138] radio 410 175 210 211 0 25
  139] tilepic 435 175 2533
  140] gumppic 165 210 2445
  141] text 175 210 1152 41
  142] radio 175 248 210 211 0 26
  143] tilepic 200 248 2547
  144] gumppic 288 210 2445
  145] text 298 210 1152 42
  146] radio 288 248 210 211 0 27
  147] tilepic 312 248 2530
  148] gumppic 410 210 2445
  149] text 420 210 1152 43
  150] radio 410 248 210 211 0 28
  151] tilepic 440 242 2541
  152] page 5
  153] resizepic 152 55 5054 375 277
  154] gumppic 165 70 2445
  155] text 175 70 1152 44
  156] radio 175 105 210 211 0 34
  157] tilepic 197 100 2887
  158] gumppic 288 70 2445
  159] text 298 70 1152 45
  160] radio 288 105 210 211 0 30
  161] tilepic 320 100 2886
  162] gumppic 410 70 2445
  163] text 420 70 1152 46
  164] radio 410 105 210 211 0 31
  165] tilepic 435 90 5469
  166] gumppic 165 140 2445
  167] text 175 140 1152 47
  168] radio 175 175 210 211 0 32
  169] tilepic 190 160 5476
  170] gumppic 288 140 2445
  171] text 298 140 1152 48
  172] radio 288 175 210 211 0 33
  173] tilepic 320 170 5484
  174] gumppic 410 140 2445
  175] text 420 140 1152 49
  176] radio 410 175 210 211 0 37
  177] tilepic 440 170 5402
  178] gumppic 165 220 2445
  179] text 175 220 1152 50
  180] radio 175 258 210 211 0 35
  181] tilepic 200 258 2885
  182] gumppic 288 220 2445
  183] text 298 220 1152 51
  184] radio 288 258 210 211 0 36
  185] tilepic 320 245 5384
  186] gumppic 410 220 2445
  187] text 420 220 1152 52
  188] radio 410 258 210 211 0 89
  189] tilepic 435 245 13745
  190] button 470 290 4014 4015 1 0 6
  191] page 6
  192] resizepic 152 55 5054 375 277
  193] gumppic 165 70 2445
  194] text 175 70 1152 53
  195] radio 175 105 210 211 0 38
  196] tilepic 200 105 3741
  197] gumppic 288 70 2445
  198] text 298 70 1152 54
  199] radio 288 105 210 211 0 39
  200] tilepic 312 105 3763
  201] gumppic 410 70 2445
  202] text 420 70 1152 55
  203] radio 410 105 210 211 0 40
  204] tilepic 435 102 3762
  205] gumppic 165 140 2445
  206] text 175 140 1152 56
  207] radio 175 175 210 211 0 41
  208] tilepic 200 175 3740
  209] gumppic 288 140 2445
  210] text 298 140 1152 57
  211] radio 288 175 210 211 0 42
  212] tilepic 312 172 3761
  213] gumppic 410 140 2445
  214] text 420 140 1152 58
  215] radio 410 175 210 211 0 43
  216] tilepic 435 175 3766
  217] page 7
  218] resizepic 152 55 5054 375 277
  219] gumppic 165 70 2445
  220] text 175 70 1152 59
  221] radio 175 105 210 211 0 44
  222] tilepic 200 105 4234
  223] gumppic 288 70 2445
  224] text 298 70 1152 60
  225] radio 288 105 210 211 0 45
  226] tilepic 312 105 4231
  227] gumppic 410 70 2445
  228] text 420 70 1152 61
  229] radio 410 105 210 211 0 46
  230] tilepic 435 102 4233
  231] gumppic 165 140 2445
  232] text 175 140 1152 62
  233] radio 175 175 210 211 0 47
  234] tilepic 200 175 4232
  235] gumppic 288 140 2445
  236] text 298 140 1152 63
  237] radio 288 175 210 211 0 48
  238] tilepic 312 172 4230
  239] page 8
  240] resizepic 152 55 5054 375 277
  241] gumppic 165 70 2445
  242] text 175 70 1152 64
  243] radio 175 105 210 211 0 49
  244] tilepic 200 105 4189
  245] gumppic 288 70 2445
  246] text 298 70 1152 65
  247] radio 288 105 210 211 0 50
  248] tilepic 312 105 4179
  249] gumppic 410 70 2445
  250] text 420 70 1152 66
  251] radio 410 105 210 211 0 51
  252] tilepic 435 102 4175
  253] gumppic 165 140 2445
  254] text 167 140 1152 67
  255] radio 175 175 210 211 0 52
  256] tilepic 200 175 4185
  257] page 9
  258] resizepic 152 55 5054 375 277
  259] gumppic 165 70 2445
  260] text 175 70 1152 68
  261] radio 175 105 210 211 0 53
  262] tilepic 200 105 4142
  263] gumppic 288 70 2445
  264] text 298 70 1152 69
  265] radio 288 105 210 211 0 54
  266] tilepic 312 105 4103
  267] gumppic 410 70 2445
  268] text 420 70 1152 70
  269] radio 410 105 210 211 0 55
  270] tilepic 435 102 3854
  271] gumppic 165 140 2445
  272] text 175 140 1152 71
  273] radio 175 175 210 211 0 56
  274] tilepic 200 175 6189
  275] gumppic 288 140 2445
  276] text 298 140 1152 72
  277] radio 288 175 210 211 0 57
  278] tilepic 312 172 6205
  279] gumppic 410 140 2445
  280] text 420 140 1152 73
  281] radio 410 175 210 211 0 58
  282] tilepic 442 167 6202
  283] gumppic 165 210 2445
  284] text 175 210 1152 74
  285] radio 175 248 210 211 0 59
  286] tilepic 200 248 6194
  287] gumppic 288 210 2445
  288] text 298 210 1152 75
  289] radio 288 248 210 211 0 60
  290] tilepic 312 248 4015
  291] gumppic 410 210 2445
  292] text 420 210 1152 76
  293] radio 410 248 210 211 0 61
  294] tilepic 435 242 4017
  295] page 10
  296] resizepic 152 55 5054 375 277
  297] gumppic 165 70 2445
  298] text 175 70 1152 77
  299] radio 175 105 210 211 0 62
  300] tilepic 200 105 7143
  301] gumppic 288 70 2445
  302] text 298 70 1152 78
  303] radio 288 105 210 211 0 63
  304] tilepic 312 105 5037
  305] page 11
  306] resizepic 152 55 5054 375 277
  307] gumppic 165 70 2445
  308] text 175 70 1152 79
  309] radio 175 105 210 211 0 64
  310] tilepic 205 100 1331
  311] gumppic 288 70 2445
  312] text 298 70 1152 80
  313] radio 288 105 210 211 0 65
  314] tilepic 317 100 1375
  315] gumppic 410 70 2445
  316] text 420 70 1152 81
  317] radio 410 105 210 211 0 66
  318] tilepic 440 100 1399
  319] gumppic 165 160 2445
  320] text 175 160 1152 82
  321] radio 175 195 210 211 0 67
  322] tilepic 205 190 1184
  323] gumppic 288 160 2445
  324] text 298 160 1152 83
  325] radio 288 195 210 211 0 68
  326] tilepic 317 190 1179
  327] gumppic 410 160 2445
  328] text 420 160 1152 84
  329] radio 410 195 210 211 0 69
  330] tilepic 440 190 1307
  331] gumppic 165 250 2445
  332] text 175 250 1152 85
  333] radio 175 285 210 211 0 70
  334] tilepic 205 280 1174
  335] page 12
  336] resizepic 152 55 5054 375 277
  337] gumppic 165 70 2445
  338] text 175 70 1152 86
  339] radio 175 105 210 211 0 71
  340] tilepic 200 105 4009
  341] gumppic 288 70 2445
  342] text 298 70 1152 87
  343] radio 288 105 210 211 0 72
  344] tilepic 312 105 4009
  345] gumppic 410 70 2445
  346] text 420 70 1152 88
  347] radio 410 105 210 211 0 73
  348] tilepic 435 102 4009
  349] gumppic 165 140 2445
  350] text 175 140 1152 89
  351] radio 175 175 210 211 0 74
  352] tilepic 200 175 4009
  353] gumppic 288 140 2445
  354] text 298 140 1152 90
  355] radio 288 175 210 211 0 75
  356] tilepic 312 172 4009
  357] gumppic 410 140 2445
  358] text 420 140 1152 91
  359] radio 410 175 210 211 0 76
  360] tilepic 435 175 4009
  361] button 485 290 4014 4015 1 0 357
  362] page 13
  363] resizepic 152 55 5054 375 277
  364] gumppic 165 70 2445
  365] text 175 70 1152 92
  366] radio 175 105 210 211 0 77
  367] tilepic 200 105 4009
  368] gumppic 288 70 2445
  369] text 298 70 1152 93
  370] radio 288 105 210 211 0 78
  371] tilepic 312 105 4009
  372] gumppic 410 70 2445
  373] text 420 70 1152 94
  374] radio 410 105 210 211 0 79
  375] tilepic 435 102 4009
  376] gumppic 165 135 2445
  377] text 175 135 1152 95
  378] radio 175 170 210 211 0 80
  379] tilepic 200 170 4009
  380] gumppic 288 135 2445
  381] text 298 135 1152 96
  382] radio 288 170 210 211 0 81
  383] tilepic 312 170 4009
  384] gumppic 410 135 2445
  385] text 420 135 1152 97
  386] radio 410 170 210 211 0 82
  387] tilepic 435 170 4009
  388] gumppic 165 200 2445
  389] text 175 200 1152 98
  390] radio 175 235 210 211 0 83
  391] tilepic 200 235 4009
  392] gumppic 288 200 2445
  393] text 298 200 1152 99
  394] radio 288 235 210 211 0 84
  395] tilepic 312 235 4009
  396] gumppic 410 200 2445
  397] text 420 200 1152 100
  398] radio 410 235 210 211 0 85
  399] tilepic 435 235 4009
  400] gumppic 165 265 2445
  401] text 175 265 1152 101
  402] radio 175 300 210 211 0 86
  403] tilepic 200 300 4009
  404] gumppic 288 265 2445
  405] text 298 265 1152 102
  406] radio 288 300 210 211 0 87
  407] tilepic 312 300 4009
  408] gumppic 410 265 2445
  409] text 420 265 1152 103
  410] radio 410 300 210 211 0 88
  411] tilepic 435 300 4009
  412] button 485 290 4014 4015 1 0 356
Text: ____________
    0] Old Paradise Tinkering Menu
    1] Tools
    2] Light
    3] Containers
    4] Food stuff
    5] Decoration
    6] Basic
    7] Musician
    8] Misc
    9] Dyes
   10] Other
   11] Blocks
   12] Tiles
   13] Make
   14] Info
   15] Make last
   16] Scissors
   17] Mrtl&Pestle
   18] Sewing Kit
   19] Hatchet
   20] Tinker Tools
   21] Saw
   22] Smth. hammer
   23] Pickaxe
   24] Shovel
   25] Candle
   26] Candles
   27] Lathern
   28] Candelabra
   29] Lamp Post 1
   30] Lamp Post 2
   31] Brass Box
   32] Wood. Chest
   33] Fancy Chest
   34] Metal Chest
   35] Spoon
   36] Fork
   37] Knife
   38] Plate
   39] Pitcher
   40] Pot
   41] Pan
   42] Frypan
   43] Kettle
   44] Vase 1
   45] Vase Sm.
   46] Bows
   47] Swords
   48] Shield
   49] Armor 2
   50] Vase 2
   51] Armor 1
   52] Decor Vase
   53] Tambourine
   54] Lute
   55] Harp
   56] Drum
   57] Big Harp
   58] Stand
   59] Ring
   60] Earrings
   61] Necklace
   62] Necklace 2
   63] Braclete
   64] Springs
   65] Gears
   66] Clock Parts
   67] Sext. Parts
   68] Nails
   69] Empty Jar
   70] Empty Bottle
   71] Flask
   72] Flask 2
   73] Flask 3
   74] Flask 4
   75] Anvil
   76] Forge
   77] Zink Blc.
   78] Gypsum Blc.
   79] Sandstone
   80] Red Stone
   81] White Stone
   82] Sandstone
   83] Tile 1
   84] Grey Stone
   85] Marble
   86] Aspen Dyes
   87] Maple Dyes
   88] Cedar Dyes
   89] Noblef. Dyes
   90] Cherry Dyes
   91] Ecalyp. Dyes
   92] Elven Dyes
   93] Scorp. Dyes
   94] Dread Dyes
   95] Chaotic Dyes
   96] Ice Dyes
   97] Parad. Dyes
   98] Holy Dyes
   99] Hamel. Dyes
  100] Frozen Dyes
  101] Arian Dyes
  102] Millen. Dyes
  103] Terium Dyes
Destruction
Junior Expert
Posts: 3221
Joined: 2004-06-24 22:08:56

Post by Destruction »

Да нет, он все показывает.. Просто я не учел немного позицию гампа -)

uo.lclick( 476, 443 )
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
altukhov
Posts: 38
Joined: 2008-03-12 14:35:20

Post by altukhov »

Да работает, но откуда была взята информация именно с этими цифрами ? :) вот что хочу понять... :)

Кстати очень жаль что уроков про работу с Gump так и не написали...
Destruction
Junior Expert
Posts: 3221
Joined: 2004-06-24 22:08:56

Post by Destruction »

Небольшая выдержка:

Code: Select all

_____infogump_______ 
X   130
Y   110
Buttons: ________
13 [    3] image=0x0FA6 at 346:333


Делайте выводы.
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
Post Reply