Register for your free account! | Forgot your password?

You last visited: Today at 12:22

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Afk-leveling 56-60

Discussion on Afk-leveling 56-60 within the WoW Exploits, Hacks, Tools & Macros forum part of the World of Warcraft category.

Reply
 
Old 12/09/2005, 03:31   #31
 
ogR1sH's Avatar
 
elite*gold: 0
Join Date: Aug 2005
Posts: 446
Received Thanks: 28
Beim Abgeben loopt das AC Tool immer Line 5 und es geht einfahc nicht weiter. Also ich steh vor Chromie, Quest Diaglog ist offen aber er gibt die Q einfach nicht ab. Hilfe?
ogR1sH is offline  
Old 12/09/2005, 08:52   #32
 
elite*gold: 0
Join Date: Apr 2005
Posts: 75
Received Thanks: 0
Wenn er zu lange bei den Questdialogen rumsteht, liegt es an den Farbpunkteprüfungen. Kann ich jetzt leider nicht nachvollziehen, warum es bei Euch mal funktioniert und mal nicht.
Ihr könntet einfach die
Code:
Call CheckQuestRed ...
...
Call CheckQuestYellow ...
mit
Code:
delay 300
oder auch länger ersetzen, wie JonnyX es im letzten Post auch gemacht hat.

JonnyX, der Port unter Chromieshaus passiert durch die selbe Prozedur wie bei den Uhrenports. Wenn es zu disconnects kommt, kannst Du an dieser Stelle
Code:
//Jump to position indexed with "jumpInd"
Procedure Jump
keydown ö 70
delay 400
das delay erhöhen, dann läuft er länger (mit "Ö" ausgelöst), bevor geportet wird.

Edit: Achja, drück vorm Start langsam nacheinander 2x "Ö", um Dich zu vergewissern, dass er beim ersten Tastendruck losläuft, und beim zweiten stehen bleibt. Denn wenn Du vorher mal mit "Ö" das Loslaufen ausgelöst hast, aber danach durch Mausclicks ihn stoppst, dann vergisst der client, irgendein Statusflag, das durch "Ö" geschaltet wurde, zu resetten. Beim nächsten Tastendruck von "Ö" läuft er dann also nicht los, sondern da wird nur das Laufen noch mal abgeschaltet, und er steht weiter am Ort und Stelle.
hanks is offline  
Old 12/09/2005, 11:14   #33
 
ogR1sH's Avatar
 
elite*gold: 0
Join Date: Aug 2005
Posts: 446
Received Thanks: 28
Hmm also bis das Ding nicht ohne Probleme läuft ist es sicherlich besser mit dem Bot 2 Mobs zu kloppen die 250xp bringen. Werd das mit dem Farbpunktüberprüfungen vielleicht mal testen.
ogR1sH is offline  
Old 12/09/2005, 12:24   #34
 
elite*gold: 0
Join Date: Oct 2005
Posts: 10
Received Thanks: 0
`have a little problem ... when i start the script in AC... it begins and start typing:
and ingame i start to say

[myname]says: &t myname bwhtele 2
[myname]says: &t myname bwhtele 3
[myname]says: &t myname bwhtele 2

can someone please help me with this matter, cause i really dont know where to find the problem and how to change it.
lincs is offline  
Old 12/09/2005, 12:41   #35
 
elite*gold: 0
Join Date: Dec 2005
Posts: 18
Received Thanks: 0
Sry, my Englsih is very bad

Is it possible, that u have klicked on the Chatwindow before?

So it was writing this what the Bot make?

Check it again and check that u have closed all other addons

Ich brauch dringend mal wieder nen Englisch Kurs ^^
JonnyX is offline  
Old 12/09/2005, 12:54   #36
 
elite*gold: 0
Join Date: Oct 2005
Posts: 10
Received Thanks: 0
Thx for fast reply, and ur english isnt bad at all :P

But uhmm i havent opened the chatwindow nor clicked on it.

Dont have any addon on it, except Quickloot.
lincs is offline  
Old 12/09/2005, 12:59   #37
 
elite*gold: 0
Join Date: Oct 2005
Posts: 10
Received Thanks: 0
wait ill post my code here.. maybe u can take a look on it, if its right configered

Code:
Constants
//general Vars
ind=1
true=1
jumpInd=
lootAble=0
lootLoop=8

//casespecific Vars
watch=0
End

//Jump to position indexed with "jumpInd"
Procedure Jump
keydown i 70
delay 400

keydown {return} 100
keys ~7t myname bwhtele $jumpInd
delay 100
keydown {return} 100
delay 200
keydown i 100
keys ad
delay 100
keys ad

keys ad
End

//Wait for Lootability
//BOOLEAN: lootAble
Procedure Wait4Loot
Loop $lootLoop
Compute lootAble = 0
MousePos 400, 360
delay 120
LoadRGB 405, 363
if {RGBred} > 200 and {RGBgreen} >150 and {RGBblue} < 90
 Compute lootAble = 1
 break
end

MousePos 400, 240
delay 120
LoadRGB 405, 243
if {RGBred} > 200 and {RGBgreen} >150 and {RGBblue} < 90
 Compute lootAble = 1
 break
end

MousePos 460, 300
delay 120
LoadRGB 465, 303
if {RGBred} > 200 and {RGBgreen} >150 and {RGBblue} < 90
 Compute lootAble = 1
 exit
end

MousePos 340, 300
delay 120
LoadRGB 345, 303
if {RGBred} > 200 and {RGBgreen} >150 and {RGBblue} < 90
 Compute lootAble = 1
 break
end

MousePos 400, 300
delay 120
LoadRGB 405, 303
if {RGBred} > 200 and {RGBgreen} >150 and {RGBblue} < 90
 Compute lootAble = 1
 break
end
End

delay 220
End

//Coordinates: X, Y
Procedure CheckRed using X, Y
WHILE $true=1
 IsRed $X, $Y
 Exit
 End
 delay 100
End
End

//Coordinates: X, Y
Procedure CheckQuestYellow using X, Y
WHILE $true=1
 LoadRGB $X, $Y
 If {rgbRed} > 200 and {rgbGreen} > 200 and {rgbBlue} < 30
 Exit
 End
 delay 100
End
End

//Coordinates: X, Y
Procedure CheckQuestRed using X, Y
WHILE $true=1
 LoadRGB $X, $Y
 If {rgbRed} > 200 and {rgbGreen} < 30 and {rgbBlue} < 30
 Exit
 End
 delay 100
End
End


//RadarScan
Procedure ScanRadar
Constants
 X=
 Y=
 alarm=1
End
While $alarm=1
 Compute alarm=0
 Loop X=734 to 767
 Loop Y=102 to 139
  LoadRGB $X, $Y
  If {rgbRed} > 200 and {rgbGreen} < 50 and {rgbBlue} < 80
  Compute alarm=1
  break
  End
 End
 If $alarm=1
  break
 End
 End
 delay 400
End

End

//--------------Main---------------
WHILE $true=1
LOOP ind = 2 to 22
//damn ProcessGuard, force me to do that for sure.
SetActiveWindow WORLD OF WARCRAFT

//Looking for watches
Compute jumpInd = $ind
Call Jump

//loot it----
Call Wait4Loot
IF $lootAble = 1
rightclick
delay 6000
leftclick
delay 100
leftclick
leftclick
delay 200

Compute watch=$watch+1
//-----
If $watch=5
 Compute watch=0
 //port under chromie's house
 Compute jumpInd = 0
 Call Jump
 delay 300
 //waiting near chromie, clientside, for her and entities to appear
 keydown {f11}
 MousePos 47, 104
 delay 100
 doubleclick
 delay 100
 keydown {f11}
 //change cam view
 MousePos 400, 100
 DragTo 400, 500
 MousePos 400, 100
 DragTo 400, 500
 MousePos 400, 100
 DragTo 400, 500

 while $true=1
 Call Wait4Loot
 if $lootAble = 1
  break
 end
 end
 
 //porting back and scan radar for pcs
 keydown {f11}
 MousePos 50, 91
 delay 100
 doubleclick
 delay 100
 keydown {f11}
 
 Call ScanRadar
 
 //port to chromie, return quest and get new one
 keydown {f11}
 MousePos 47, 104
 delay 100
 doubleclick
 delay 100
 keydown {f11}
 keys ad
 delay 300
 //return quest
 MousePos 400, 350
 rightclick
 rightclick
 Call CheckQuestYellow 28, 310 
 MousePos 28, 310
 delay 300
 leftclick
 delay 100
 leftclick
 MousePos 49, 445
 Call CheckQuestRed 44, 447
 delay 100
 leftclick
 delay 500
 leftclick
 delay 300
 //get new quest
 MousePos 400, 350
 delay 100
 rightclick
 delay 100
 rightclick
 Call CheckQuestYellow 28, 310
 MousePos 28, 310
 delay 300
 leftclick
 delay 100
 leftclick
 MousePos 61, 446
 Call CheckQuestRed 52, 445
 delay 100
 doubleclick
 
 //back under house
 keydown {f11}
 MousePos 50, 91
 delay 100
 doubleclick
 delay 100
 keys ad
 keydown {f11}
 //cam view back
 MousePos 400, 500
 DragTo 408, 100
 MousePos 400, 500
 DragTo 408, 100
 MousePos 400, 500
 DragTo 408, 100

 //throw away reward
 MousePos 683, 441
 delay 100
 leftclick
 delay 400
 MousePos 625, 91
 delay 800
 leftclick
 delay 600
 MousePos 361, 166
 leftclick
End
//----

END //loot handled



END
END
lincs is offline  
Old 12/09/2005, 20:06   #38
 
elite*gold: 0
Join Date: Oct 2005
Posts: 10
Received Thanks: 0
Come on guys, please reply its about 8 hours ago..of the last post.
No one knows?
lincs is offline  
Old 12/09/2005, 23:53   #39
 
elite*gold: 0
Join Date: Apr 2005
Posts: 75
Received Thanks: 0
maybe you are using an english keyboard. The macro is made for german keyboards.
The intended output should be:
/t myname bwhtele 1
/t myname bwhtele 2
/t myname bwhtele 3

On german keyboards, the sign "/" is on the same key as "7". Therefore, the macrocode is
Code:
keys ~7t CharName bwhtele $jumpInd
In this line "~7 " means "shift-7". If your "/" is somewhere else, just change that.
hanks is offline  
Old 12/10/2005, 16:33   #40
 
elite*gold: 0
Join Date: Oct 2005
Posts: 10
Received Thanks: 0
thanks hanks.. worked for me ... only now its teleporting to Chromie.. changes his view.. clicks on Chromie for delivering the quest.... he doenst deliver.. he teleports.. then he teleports back to Chromie... clicks on him again... and doenst do anything more only standing there.. without clicking on the quest deliver button + continue + complete quest.... he only stands there doing nothing

You know about this problem?

here is een screenshot of it:

lincs is offline  
Old 12/10/2005, 17:40   #41
 
elite*gold: 0
Join Date: Apr 2005
Posts: 75
Received Thanks: 0
hmm, thats strange, first time Ive seen the "talk-to" mouse cursor in that red. At this point, the macro wait for the mouse to turn yelllow, and thats why your bot stucks there.

Search for all those function calls:
Code:
Call CheckQuestRed ...
 ...

Call CheckQuestYellow ...
and replace them with
Code:
delay 300
(300 is just an average estimated time, maybe your pc & inet-connection need bigger values, or can handle smaller values)
hanks is offline  
Old 12/10/2005, 17:43   #42
 
elite*gold: 0
Join Date: Aug 2005
Posts: 409
Received Thanks: 12
Hanks , könntest du vielleicht die Veränderungen die neu gekommen sind , ins script reinpacken? Kriegst auch nen + karma =) und ich spar mir die minuten gg
Sephusath is offline  
Old 12/10/2005, 18:20   #43
 
elite*gold: 0
Join Date: Apr 2005
Posts: 75
Received Thanks: 0
standard macro attached
Attached Files
File Type: ibf post-57-1134235232.ibf (4.3 KB, 16 views)
hanks is offline  
Old 12/10/2005, 18:21   #44
 
elite*gold: 0
Join Date: Apr 2005
Posts: 75
Received Thanks: 0
use this when your bot get stuck in dialogues with chromie.
Attached Files
File Type: ibf post-57-1134235307.ibf (4.1 KB, 25 views)
hanks is offline  
Old 12/10/2005, 18:21   #45
 
elite*gold: 0
Join Date: Oct 2005
Posts: 10
Received Thanks: 0
haha no Hanks... this is changed with photoshop.. to distract other people from recognizing me.

on the screen without changes it is yellow .
lincs is offline  
Reply


Similar Threads Similar Threads
Aion Hand Leveling/Guaranteed Pure Hand Leveling.
01/14/2011 - Aion Trading - 117 Replies
Hi all, Titles says all ,we are here offering the service of aion hand leveling. Its 100% hand leveling. and we can not accept many orders at one time cuz we don't want to let you down(waiting for a long time be4 we start for you). All that you need to do is to contact our online support to check if there are free levelers at that specific moment. Aion Power Leveling 1-20 1.You keep all gears and kinah 2.Free to train your toon's skill while we level for you 3.Estimated Time: 30...
Leveling Bot
08/04/2010 - World of Warcraft - 4 Replies
Hallo, ich suche einen Bot womit ich meinen Spiel Charakter hoch leveln kann und auch mehr Gold bekomme. Ich weiß das es sowas mal gab aber ich finde auch nichts bei Google und Co. Ich hoffe mal hier kann mir einer weiter helfen. MFG daredevil10
Leveling 48-60
01/15/2009 - General Gaming Discussion - 4 Replies
I was in this one clan once and they were telling me over vent that if i grinded from lvl 46 to level 48 then got a 30% scroll for 3 days that i could quest from level 48 to 60 in 3 days by quests alone. I didnt think much of it at the time but now im looking into it more. There are 10 quests from 46-47 and 4 more at lvl 48. By doing them all with 30% it would give alot of experience and it might be posible that every time you level you get new quests to level you up again to be like a...



All times are GMT +1. The time now is 12:23.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.