need help in this script

General Injection issues

Moderators: Murderator+, Murderator

Post Reply
iRuLez
Posts: 104
Joined: 2006-05-04 18:40:42

need help in this script

Post by iRuLez »

hi all
in the following script i have some problem.
when is actived for some minut, after inject say: "unhandled exception in parser."

the script is this:

Code: Select all

sub fishing()
   var i=0
   var tile
   var time = 150

   dim coord[20]
      coord[0] = '13613 3199 23 251'
      coord[1] = '6043 3198 23 251'
      coord[2] = '6040 3197 23 251'
      coord[3] = '6041 3196 23 251'
      coord[4] = '6042 3195 23 251'
      coord[5] = '6044 3194 23 251'
      coord[6] = '6041 3194 22 251'
      coord[7] = '6044 3195 22 251'
      coord[8] = '6044 3196 22 251'
      coord[9] = '6042 3197 22 251'
      coord[10] = '6044 3198 22 251'
      coord[11] = '6042 3199 22 251'
      coord[12] = '13613 3200 22 251'
      coord[13] = '6042 3200 21 251'
      coord[14] = '6040 3199 21 251'
      coord[15] = '6043 3198 21 251'
      coord[16] = '6039 3197 21 251'
      coord[17] = '6041 3196 21 251'
      coord[18] = '6044 3195 21 251'
      coord[19] = '6042 3194 21 251'

      
   while (1)
      while (i<20)
         uo.deletejournal()
         tile = "waittargettile " + coord[i]
         uo.exec("usetype 0x0DBF")
         while (not uo.waiting())
            uo.exec(tile)
         wend
         wait(500)
         while (not uo.injournal("You fish a while, but fail to catch anything.|There are no fish here.|You pull|Try fishing elsewhere"))
            uo.print("aspetto")
            wait(700)
         wend
         wait(time)
         if (uo.countground('0x09CC','0x0835')) then
            uo.findtype(0x09CC,0x0835,"ground")
            if (uo.findcount()) then
               uo.moveitem("finditem",'0','backpack')
            end if
         end if
         wait(time)
         if (uo.injournal("There are no fish here.|You pull|Try fishing elsewhere") && not uo.injournal("You pull out a Pesce Albino!")) then
            i=i+1
            wait(time)
            uo.print("Change location ...!")
         end if
      wend
      i=0
      wait(time)
   wend
end sub


thanks for help.
Mazer
Posts: 125
Joined: 2007-11-13 00:39:14

Post by Mazer »

First of all try sloving this problem by repairing all others scripts :)
-=JoKeR=-
Posts: 173
Joined: 2007-05-26 00:00:56
Location: Украина, Ode$$a:[X-TEAM Group]
Contact:

Post by -=JoKeR=- »

Code: Select all

sub fishing() 
   var i=0
   var tile 

   dim coord[20]
      coord[0] = '13613 3199 23 251'
      coord[1] = '6043 3198 23 251'
      coord[2] = '6040 3197 23 251'
      coord[3] = '6041 3196 23 251'
      coord[4] = '6042 3195 23 251'
      coord[5] = '6044 3194 23 251'
      coord[6] = '6041 3194 22 251'
      coord[7] = '6044 3195 22 251'
      coord[8] = '6044 3196 22 251'
      coord[9] = '6042 3197 22 251'
      coord[10] = '6044 3198 22 251'
      coord[11] = '6042 3199 22 251'
      coord[12] = '13613 3200 22 251'
      coord[13] = '6042 3200 21 251'
      coord[14] = '6040 3199 21 251'
      coord[15] = '6043 3198 21 251'
      coord[16] = '6039 3197 21 251'
      coord[17] = '6041 3196 21 251'
      coord[18] = '6044 3195 21 251'
      coord[19] = '6042 3194 21 251'

       
   while not uo.Dead
      while (i<20)
         uo.deletejournal()
         tile = "waittargettile " + coord[i]
         uo.exec("usetype 0x0DBF")
         while not uo.waiting()
            uo.exec(tile)
         wend
         wait(500)
         while not uo.injournal ('You fish a while') OR not uo.injournal ('There are no fish here') OR not uo.injournal ('You pull') OR not uo.injournal ('Try fishing elsewhere')
            uo.print("aspetto")
            wait(700)
         wend
         wait(150)
         if uo.countground('0x09CC','0x0835') then
            uo.findtype(0x09CC,0x0835,ground)
            if uo.findcount() then
               uo.moveitem("finditem",'0',backpack)
            end if
         end if
         wait(150)
         if uo.injournal('There are no fish here') OR uo.injournal ('You pull') OR uo.injournal ('Try fishing elsewhere') OR not uo.injournal ("You pull out a Pesce Albino!") then
            i=i+1
            wait(150)
            uo.print("Change location ...!")
         end if
      wend
      i=0
      wait(150)
   wend
end sub

Edit a lil bit. Try it, but I`m not sure that it is correct script.
And you not in that section have created a topic =)
Image
iRuLez
Posts: 104
Joined: 2006-05-04 18:40:42

Post by iRuLez »

-=JoKeR=- wrote:

Code: Select all

sub fishing() 
   var i=0
   var tile 

   dim coord[20]
      coord[0] = '13613 3199 23 251'
      coord[1] = '6043 3198 23 251'
      coord[2] = '6040 3197 23 251'
      coord[3] = '6041 3196 23 251'
      coord[4] = '6042 3195 23 251'
      coord[5] = '6044 3194 23 251'
      coord[6] = '6041 3194 22 251'
      coord[7] = '6044 3195 22 251'
      coord[8] = '6044 3196 22 251'
      coord[9] = '6042 3197 22 251'
      coord[10] = '6044 3198 22 251'
      coord[11] = '6042 3199 22 251'
      coord[12] = '13613 3200 22 251'
      coord[13] = '6042 3200 21 251'
      coord[14] = '6040 3199 21 251'
      coord[15] = '6043 3198 21 251'
      coord[16] = '6039 3197 21 251'
      coord[17] = '6041 3196 21 251'
      coord[18] = '6044 3195 21 251'
      coord[19] = '6042 3194 21 251'

       
   while not uo.Dead
      while (i<20)
         uo.deletejournal()
         tile = "waittargettile " + coord[i]
         uo.exec("usetype 0x0DBF")
         while not uo.waiting()
            uo.exec(tile)
         wend
         wait(500)
         while not uo.injournal ('You fish a while') OR not uo.injournal ('There are no fish here') OR not uo.injournal ('You pull') OR not uo.injournal ('Try fishing elsewhere')
            uo.print("aspetto")
            wait(700)
         wend
         wait(150)
         if uo.countground('0x09CC','0x0835') then
            uo.findtype(0x09CC,0x0835,ground)
            if uo.findcount() then
               uo.moveitem("finditem",'0',backpack)
            end if
         end if
         wait(150)
         if uo.injournal('There are no fish here') OR uo.injournal ('You pull') OR uo.injournal ('Try fishing elsewhere') OR not uo.injournal ("You pull out a Pesce Albino!") then
            i=i+1
            wait(150)
            uo.print("Change location ...!")
         end if
      wend
      i=0
      wait(150)
   wend
end sub

Edit a lil bit. Try it, but I`m not sure that it is correct script.
And you not in that section have created a topic =)



i have already try to put this

Code: Select all

while not uo.injournal ('You fish a while') OR not uo.injournal ('There are no fish here') OR not uo.injournal ('You pull') OR not uo.injournal ('Try fishing elsewhere') 


but script dont stop if in uo.injournal read that world, is very abnormal and i dont undestand ...for this motive i use

Code: Select all

"You fish a while, but fail to catch anything.|There are no fish here.|You pull|Try fishing elsewhere"



Then if i dont put the

Code: Select all

' '
, ground and backpack dont are identify as parametres.

Also uo.Dead is wrong. maybe uo.Dead()


Someone can help me please? thanks
iRuLez
Posts: 104
Joined: 2006-05-04 18:40:42

Post by iRuLez »

Mazer wrote:First of all try sloving this problem by repairing all others scripts :)



i dont think if is the speed or the slowness ..
i have i good PC
2 gb of ram
intel dual core E6600
8600 gts nvidia 256mb

maybe can be a bug of yoko injection?

or the error can be here?

Code: Select all

while (i<20) 

maybe

Code: Select all

while (i<19) 
iRuLez
Posts: 104
Joined: 2006-05-04 18:40:42

Post by iRuLez »

this is the injection_log.txt when inject say: "unhandled exception in parser."

Code: Select all

Os version is 5.1, build 2600, NT platform..
**Warning: Your prefarable codepage is 1252
**Warning: UOKeys.cfg loaded, 34 entryes.
**Warning: Replaces found. **Warning: text replaces: 90
**Warning: config attribute ignored: MultyUO
**Warning: YokoInjection 505.18 VeNdOr
**Warning: Encryption set to: 2.0.0x
**Warning: server name has strange characters.
***Error: Unhandled exception  1: 0xC0000005 at 7C921F6C
***Error: injection.dll base: 236C0000
***Error: script.dll base: 23A50000
***Error: EAX=23830100, EBX=23830000, ECX=006E6F69, EDX=00000000
***Error: ESI=006E6F61, EDI=00000000, ESP=0012F7C0, EBP=0012F9E0
***Error: EIP=7C921F6C, EFLAGS=00010202

***Error: Bytes at EIP:
0000: 8b 12 3b 57 04 0f 85 f3 23 02 00 3b d1 0f 85 eb : ..;W....#..;....
***Error: Bytes at ESP:
0000: 44 00 00 00 50 00 00 00 68 9a 99 23 10 9b 9a 23 : D...P...h..#...#
0010: 00 00 00 00 88 b9 83 23 9f b9 83 23 00 00 00 00 : .......#...#....
0020: 00 00 00 00 00 00 00 00 0c f9 12 00 1c 00 00 00 : ................
0030: 00 00 00 00 00 0e 00 00 01 00 00 00 b1 8b d1 77 : ...............w
***Error: Unhandled exception  2: 0xC0000005 at 7C921F6E
***Error: injection.dll base: 236C0000
***Error: script.dll base: 23A50000
***Error: EAX=23830100, EBX=23830000, ECX=006E6F69, EDX=00000000
***Error: ESI=006E6F61, EDI=00000000, ESP=0012F7C0, EBP=0012F9E0
***Error: EIP=7C921F6E, EFLAGS=00010202

***Error: Bytes at EIP:
0000: 3b 57 04 0f 85 f3 23 02 00 3b d1 0f 85 eb 23 02 : ;W....#..;....#.
***Error: Bytes at ESP:
0000: 44 00 00 00 50 00 00 00 68 9a 99 23 10 9b 9a 23 : D...P...h..#...#
0010: 00 00 00 00 88 b9 83 23 9f b9 83 23 00 00 00 00 : .......#...#....
0020: 00 00 00 00 00 00 00 00 0c f9 12 00 1c 00 00 00 : ................
0030: 00 00 00 00 00 0e 00 00 01 00 00 00 b1 8b d1 77 : ...............w
***Error: Unhandled exception  3: 0xC0000005 at 7C9211CD
***Error: Unhandled exception  4: 0xC0000005 at 7C9211D5
***Error: Unhandled exception  5: 0xC0000005 at 7C9211E0
***Error: Unhandled exception  6: 0xC0000005 at 7C921446
***Error: Unhandled exception  7: 0xC0000005 at 7C92144C
***Error: Unhandled exception  8: 0xC0000005 at 7C921458
***Error: Unhandled exception  9: 0xC0000005 at 7C92146A
***Error: Unhandled exception 10: 0xC0000005 at 7C921484
***Error: Unhandled exception 11: 0xC0000005 at 7C921493
***Error: Unhandled exception 12: 0xC0000005 at 7C9214B6
***Error: Unhandled exception 13: 0xC0000005 at 7C9214B9
***Error: Unhandled exception 14: 0xC0000005 at 7C9214BD
***Error: Unhandled exception 15: 0xC0000005 at 7C9214C0
***Error: Unhandled exception 16: 0xC0000005 at 7C9214C3
***Error: Unhandled exception 17: 0xC0000005 at 7C921645
***Error: Unhandled exception 18: 0xC0000005 at 7C92164B
***Error: Unhandled exception 19: 0xC0000005 at 7C921651
***Error: Unhandled exception 20: 0xC0000005 at 7C921525
***Error: Unhandled exception 21: 0xC0000005 at 7C921527
***Error: Unhandled exception 22: 0xC0000005 at 7C920BDE
***Error: Unhandled exception 23: 0xC0000005 at 7C921545
***Error: Unhandled exception 24: 0xC0000005 at 7C92154B
***Error: Unhandled exception 25: 0xC0000005 at 7C921555
***Error: Unhandled exception 26: 0xC0000005 at 7C921579
***Error: Unhandled exception 27: 0xC0000005 at 236DBE53
***Error: Unhandled exception 28: 0xC0000005 at 236DBE9B
***Error: Unhandled exception 29: 0xC0000005 at 236DBE9E
***Error: Unhandled exception 30: 0xC0000005 at 236DBECA
***Error: Unhandled exception 31: 0xC0000005 at 236DBECD
***Error: Unhandled exception 32: 0xC0000005 at 236DBED2
***Error: Unhandled exception 33: 0xC0000005 at 7C9211CD
***Error: Unhandled exception 34: 0xC0000005 at 7C9211D5
***Error: Unhandled exception 35: 0xC0000005 at 7C9211E0
***Error: Unhandled exception 36: 0xC0000005 at 7C921446
***Error: Unhandled exception 37: 0xC0000005 at 7C92144C
***Error: Unhandled exception 38: 0xC0000005 at 7C921458
***Error: Unhandled exception 39: 0xC0000005 at 7C92146A
***Error: Unhandled exception 40: 0xC0000005 at 7C921484
***Error: Unhandled exception 41: 0xC0000005 at 7C921493
***Error: Unhandled exception 42: 0xC0000005 at 7C9214B6
***Error: Unhandled exception 43: 0xC0000005 at 7C9214B9
***Error: Unhandled exception 44: 0xC0000005 at 7C9214BD
***Error: Unhandled exception 45: 0xC0000005 at 7C9214C0
***Error: Unhandled exception 46: 0xC0000005 at 7C9214C3
***Error: Unhandled exception 47: 0xC0000005 at 7C921645
***Error: Unhandled exception 48: 0xC0000005 at 7C92164B
***Error: Unhandled exception 49: 0xC0000005 at 7C921651
***Error: Unhandled exception 50: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 51: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 52: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 53: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 54: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 55: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 56: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 57: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 58: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 59: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 60: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 61: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 62: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 63: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 64: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 65: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 66: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 67: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 68: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 69: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 70: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 71: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 72: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 73: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 74: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 75: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 76: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 77: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 78: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 79: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 80: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 81: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 82: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 83: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 84: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 85: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 86: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 87: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 88: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 89: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 90: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 91: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 92: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 93: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 94: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 95: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 96: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 97: 0xC0000005 at 7C920CEC
***Error: Unhandled exception 98: 0xC0000005 at 7C9217A5
***Error: Unhandled exception 99: 0xC0000005 at 7C920CEC
***Error: Unhandled exception100: 0xC0000005 at 7C9217A5
***Error: Unhandled exception101: 0xC0000005 at 7C920CEC
***Error: injection.dll base: 236C0000
***Error: script.dll base: 23A50000
***Error: EAX=0100000F, EBX=2382FFFB, ECX=01000017, EDX=001FFFFE
***Error: ESI=23830178, EDI=0100001F, ESP=0012F7C0, EBP=0012F9E0
***Error: EIP=7C920CEC, EFLAGS=00010202

***Error: Bytes at EIP:
0000: 8b 09 e9 9f 0a 00 00 33 c0 e9 5b 31 00 00 6a 7f : .......3..[1..j.
***Error: Bytes at ESP:
0000: 11 00 00 00 20 00 00 00 68 9a 99 23 00 00 00 00 : .... ...h..#....
0010: 3b 00 00 00 23 00 00 00 23 00 00 00 3d 49 95 23 : ;...#...#...=I.#
0020: 24 fa 12 00 68 9a 99 23 04 00 00 00 24 fa 12 00 : $...h..#....$...
0030: 08 00 00 00 05 00 00 00 d5 be 6d 23 1b 00 00 00 : ..........m#....
Post Reply